* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a25;
  --text-primary: #e8e8ed;
  --text-secondary: #8888a0;
  --accent: #ff5520;
  --accent-glow: #ff6a3a;
  --accent-dark: #cc4418;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid rgba(255, 85, 32, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
  text-align: center;
  overflow: hidden;
  padding: 2rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.highlight {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(255, 85, 32, 0.4);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 85, 32, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.7; }
}

/* Button */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
}

.btn:hover {
  background: var(--accent-glow);
  box-shadow: 0 0 20px rgba(255, 85, 32, 0.35);
}

/* Sections */
.section {
  padding: 5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

/* Games Grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 85, 32, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.game-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.game-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.game-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(255, 85, 32, 0.12);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* About / Stats */
.about-content {
  text-align: center;
}

.about-content > p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 2rem auto 0;
  font-size: 1.05rem;
}

.stat-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact */
.contact {
  text-align: center;
}

.contact > p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.subscribe-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.subscribe-form input:focus {
  border-color: var(--accent);
}

.form-message {
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 500;
  min-height: 1.5rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .stat-grid {
    gap: 2rem;
  }

  .section {
    padding: 3rem 1.5rem;
  }
}
