body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #e0e0e0;
  background-color: #121212;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Navigation */
header {
  background-color: #1a1a1a;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff4d4d;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

nav ul li a:hover {
  color: #ff4d4d;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('studio.png');
  background-size: cover;
  background-position: center;
  min-height: 80vh;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 77, 77, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background-color: #ff4d4d;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: #cc0000;
  transform: translateY(-3px);
}

.hero-img {
  max-width: 300px;
  margin-top: 2rem;
  filter: drop-shadow(0 0 15px rgba(255, 77, 77, 0.3));
}

/* Games Section */
.games-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.games-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ff4d4d;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.game-card {
  background-color: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
  width: 300px;
  height: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  border-color: #ff4d4d;
}

.game-card img {
  height: 180px;
  object-fit: contain;
}
.game-placeholder {
  background-color: #333;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  font-weight: bold;
  color: #666;
}

.game-card h3 {
  margin-bottom: 0.5rem;
  color: #fff;
}

.game-card p {
  color: #aaa;
}

.game-links {
  margin-top: auto;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-top: 15px;
}

.game-btn {
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: bold;
  color: white !important;
  transition: opacity 0.2s ease;
}

.game-btn:hover {
  opacity: 0.8;
}

.itch-btn {
  background-color: #fa5c5c;
}

.steam-btn {
  background-color: #171a21;
  border: 1px solid #333;
}

/* About & Contact */
.about-section, .contact-section {
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-section h2, .contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ff4d4d;
}

.contact-link {
  color: #ff4d4d;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.contact-link:hover {
  border-color: #ff4d4d;
}

/* Footer */
footer {
  background-color: #0a0a0a;
  padding: 40px 20px;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

a {
  color: #ff4d4d;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    gap: 1rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
}
