*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0f;
  color: #f0f0f5;
  overflow-x: hidden;
  line-height: 1.6;
}
::selection { background: #f59e0b; color: #0a0a0f; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a0f; }
::-webkit-scrollbar-thumb { background: #f59e0b; border-radius: 4px; }

#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(10,10,15,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245,158,11,0.08);
  transition: background 0.3s;
}
nav.scrolled { background: rgba(10,10,15,0.95); }
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.logo span { color: #f59e0b; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  color: rgba(240,240,245,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #f59e0b;
  transition: width 0.3s;
}
.nav-links a:hover { color: #f0f0f5; }
.nav-links a:hover::after { width: 100%; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span {
  width: 26px; height: 2px;
  background: #f0f0f5;
  border-radius: 2px;
  transition: 0.3s;
}

section { position: relative; z-index: 1; padding: 6rem 5%; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f59e0b;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(245,158,11,0.2);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  color: rgba(240,240,245,0.55);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 3rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 10vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.2rem;
}
.hero h1 span { color: #f59e0b; }
.hero p {
  font-size: 1.1rem;
  color: rgba(240,240,245,0.55);
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  transition: transform 0.25s, box-shadow 0.25s;
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: #f59e0b;
  color: #0a0a0f;
}
.btn-primary:hover { box-shadow: 0 0 32px rgba(245,158,11,0.3); }
.btn-outline {
  background: transparent;
  color: #f0f0f5;
  border: 1px solid rgba(240,240,245,0.15);
}
.btn-outline:hover { border-color: #f59e0b; box-shadow: 0 0 24px rgba(245,158,11,0.12); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(240,240,245,0.25);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: float 2.5s infinite;
}
.hero-scroll .arrow { font-size: 1.2rem; }
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.games-section {
  background: linear-gradient(180deg, #0a0a0f 0%, #0f0f1a 100%);
  text-align: center;
}
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 1rem;
}
.coming-soon .icon {
  font-size: 4rem;
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}
.coming-soon h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #f59e0b;
}
.coming-soon .bar {
  width: 120px;
  height: 3px;
  background: rgba(245,158,11,0.15);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.coming-soon .bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: #f59e0b;
  border-radius: 4px;
  animation: bar-load 2.4s infinite ease-in-out;
}
@keyframes bar-load {
  0% { left: -100%; }
  100% { left: 100%; }
}

.youtube-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(245,158,11,0.04), transparent);
}
.youtube-section .section-sub { margin-left: auto; margin-right: auto; }
.youtube-card {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 1.2rem 2rem 1.2rem 1.5rem;
  text-decoration: none;
  color: #f0f0f5;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  margin-top: 0.5rem;
}
.youtube-card:hover {
  transform: scale(1.04);
  border-color: #ff0033;
  box-shadow: 0 0 40px rgba(255,0,51,0.12);
}
.youtube-icon {
  width: 48px; height: 48px;
  background: #ff0033;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.youtube-card .info { text-align: left; }
.youtube-card .info .handle {
  font-weight: 700;
  font-size: 1.05rem;
}
.youtube-card .info .sub {
  font-size: 0.8rem;
  color: rgba(240,240,245,0.4);
}

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.5rem 5%;
  border-top: 1px solid rgba(255,255,255,0.04);
  color: rgba(240,240,245,0.25);
  font-size: 0.8rem;
}
footer a { color: #f59e0b; text-decoration: none; }

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,15,0.98); padding: 2rem; gap: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero h1 { font-size: clamp(2.2rem, 12vw, 3.5rem); }
  .youtube-card { flex-direction: column; text-align: center; padding: 1.5rem 2rem; }
  .youtube-card .info { text-align: center; }
}
