@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,400&display=swap');

:root {
  --bg-deep: #050810;
  --bg-panel: #0d1528;
  --bg-glass: rgba(13, 21, 40, 0.72);
  --mint: #2dffda;
  --violet: #7b5cff;
  --plasma: #ff3366;
  --solar: #ffb347;
  --text: #eef2ff;
  --text-dim: rgba(238, 242, 255, 0.68);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --header-h: 72px;
  --warn-h: 52px;
  --glow-mint: 0 0 40px rgba(45, 255, 218, 0.35);
  --glow-plasma: 0 0 40px rgba(255, 51, 102, 0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(123, 92, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 25%, rgba(255, 51, 102, 0.16), transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 90%, rgba(45, 255, 218, 0.12), transparent 55%),
    var(--bg-deep);
  animation: aurora-shift 14s ease-in-out infinite alternate;
}

@keyframes aurora-shift {
  0% { filter: hue-rotate(0deg) brightness(1); }
  100% { filter: hue-rotate(18deg) brightness(1.06); }
}

.aurora-layer {
  position: fixed;
  inset: -20%;
  z-index: -2;
  pointer-events: none;
  opacity: 0.45;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blob-drift 18s ease-in-out infinite;
}

.aurora-blob--1 {
  width: 45vw; height: 45vw;
  top: -10%; left: -5%;
  background: rgba(45, 255, 218, 0.18);
  animation-delay: 0s;
}

.aurora-blob--2 {
  width: 38vw; height: 38vw;
  top: 30%; right: -8%;
  background: rgba(255, 51, 102, 0.14);
  animation-delay: -6s;
}

.aurora-blob--3 {
  width: 50vw; height: 35vw;
  bottom: -15%; left: 25%;
  background: rgba(123, 92, 255, 0.16);
  animation-delay: -12s;
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(4vw, -3vh) scale(1.08); }
  66% { transform: translate(-3vw, 4vh) scale(0.94); }
}

.grid-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black, transparent);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

/* ===== STICKY TOP ===== */
.site-top {
  position: sticky;
  top: 0;
  z-index: 10001;
}

/* ===== MEGA WARNING ===== */
.free-warning-bar {
  position: relative;
  z-index: 3;
  background: linear-gradient(90deg, var(--plasma), #ff6b35, var(--solar), var(--plasma));
  background-size: 300% 100%;
  animation: warn-stripe 4s linear infinite, warn-pulse 2.5s ease-in-out infinite;
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-weight: 700;
  font-size: clamp(0.72rem, 2.2vw, 0.92rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 3px solid var(--mint);
  box-shadow: 0 6px 32px rgba(255, 51, 102, 0.45);
}

.free-warning-bar strong {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 10px;
  background: rgba(5, 8, 16, 0.35);
  border-radius: 6px;
  animation: warn-shake 3s ease-in-out infinite;
}

@keyframes warn-stripe {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

@keyframes warn-pulse {
  0%, 100% { box-shadow: 0 6px 32px rgba(255, 51, 102, 0.45); }
  50% { box-shadow: 0 6px 48px rgba(45, 255, 218, 0.35); }
}

@keyframes warn-shake {
  0%, 90%, 100% { transform: translateX(0); }
  92% { transform: translateX(-2px); }
  94% { transform: translateX(2px); }
  96% { transform: translateX(-1px); }
}

.free-notice-hero {
  max-width: 920px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.free-notice-block {
  position: relative;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 2px solid var(--mint);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--glow-mint), inset 0 1px 0 rgba(255,255,255,0.06);
}

.free-notice-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,255,218,0.08), rgba(255,51,102,0.06));
  pointer-events: none;
}

.free-notice-block h2 {
  color: var(--mint);
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  margin-bottom: 12px;
  position: relative;
}

.free-notice-block p {
  color: var(--text-dim);
  font-size: 0.98rem;
  position: relative;
}

.free-notice-block .badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
  position: relative;
}

.free-badge {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(45,255,218,0.4);
  background: rgba(45,255,218,0.1);
  color: var(--mint);
}

.free-badge--hot {
  border-color: rgba(255,51,102,0.5);
  background: rgba(255,51,102,0.12);
  color: #ff8fab;
}

/* ===== HEADER ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: var(--header-h);
  background: rgba(5, 8, 16, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123, 92, 255, 0.25);
}

.logo img {
  width: 44px;
  height: 44px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.logo:hover img {
  transform: rotate(-8deg) scale(1.08);
  filter: drop-shadow(var(--glow-mint));
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-nav a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--mint);
  background: rgba(45, 255, 218, 0.08);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-ghost {
  padding: 10px 20px;
  border: 1px solid rgba(123, 92, 255, 0.5);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.btn-ghost:hover {
  border-color: var(--violet);
  box-shadow: 0 0 20px rgba(123, 92, 255, 0.3);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: linear-gradient(135deg, var(--mint), var(--violet));
  color: var(--bg-deep);
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--glow-mint);
}

.btn-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(45, 255, 218, 0.45);
}

.btn-cta .pulse-dot {
  width: 8px; height: 8px;
  background: var(--plasma);
  border-radius: 50%;
  animation: dot-pulse 1.5s ease infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
  transition: transform 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-panel);
  border-bottom: 1px solid rgba(123, 92, 255, 0.2);
  padding: 12px 20px 16px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.mobile-nav a.active,
.mobile-nav a:hover {
  background: rgba(45, 255, 218, 0.08);
  color: var(--mint);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - var(--warn-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 28px 32px;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.5;
  animation: particle-float 8s ease-in-out infinite;
}

@keyframes particle-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-copy { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 20px;
  background: rgba(255, 51, 102, 0.12);
  border: 1px solid rgba(255, 51, 102, 0.35);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff8fab;
  animation: fade-up 0.8s ease both;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 20px;
  animation: fade-up 0.8s ease 0.1s both;
}

.hero h1 .line-accent {
  display: block;
  background: linear-gradient(90deg, var(--mint), var(--violet), var(--plasma));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-text 5s ease infinite;
  background-size: 200% auto;
}

@keyframes gradient-text {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 28px;
  animation: fade-up 0.8s ease 0.2s both;
}

.hero-sub strong { color: var(--solar); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fade-up 0.8s ease 0.3s both;
}

.hero-visual {
  position: relative;
  animation: float-y 6s ease-in-out infinite;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.hero-visual img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  filter: drop-shadow(0 24px 60px rgba(123, 92, 255, 0.35));
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,255,218,0.15), transparent 70%);
  z-index: -1;
  animation: ring-pulse 4s ease infinite;
}

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

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-strip-wrap {
  max-width: 1200px;
  margin: 40px auto 0;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.hero-strip {
  display: flex;
  gap: 14px;
  animation: strip-scroll 35s linear infinite;
  width: max-content;
}

.hero-strip:hover { animation-play-state: paused; }

@keyframes strip-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-strip-item {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid rgba(123, 92, 255, 0.35);
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.hero-strip-item:hover {
  border-color: var(--mint);
  transform: scale(1.08);
  box-shadow: var(--glow-mint);
}

.hero-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== FLOAT NAV ===== */
.float-nav {
  position: sticky;
  top: calc(var(--header-h) + var(--warn-h) + 12px);
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  margin: -20px 0 20px;
}

.float-nav-inner {
  display: flex;
  gap: 4px;
  padding: 6px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(123, 92, 255, 0.3);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.float-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.25s, color 0.25s;
}

.float-nav a.active,
.float-nav a:hover {
  background: linear-gradient(135deg, rgba(45,255,218,0.15), rgba(123,92,255,0.15));
  color: var(--mint);
}

/* ===== SECTIONS ===== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 28px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(90deg, var(--text), var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-art img {
  max-width: 360px;
  margin: 0 auto;
  animation: float-y 7s ease-in-out infinite;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 18px;
}

.about-text p {
  color: var(--text-dim);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  padding: 28px 22px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(123, 92, 255, 0.25);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), var(--violet), var(--plasma));
  transform: scaleX(0);
  transition: transform 0.35s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 255, 218, 0.4);
  box-shadow: var(--glow-mint);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
}

/* ===== PULSE STEPS ===== */
.section-lead {
  text-align: center;
  color: var(--text-dim);
  max-width: 560px;
  margin: -24px auto 40px;
  font-size: 1rem;
}

.pulse-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}

.pulse-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mint), var(--violet), var(--plasma), transparent);
  opacity: 0.35;
  z-index: 0;
}

.pulse-step {
  position: relative;
  padding: 32px 24px 28px;
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(123, 92, 255, 0.28);
  border-radius: var(--radius);
  text-align: center;
  overflow: hidden;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  z-index: 1;
}

.pulse-step:hover {
  transform: translateY(-8px);
  border-color: rgba(45, 255, 218, 0.45);
  box-shadow: var(--glow-mint);
}

.pulse-step-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--violet);
  margin-bottom: 12px;
}

.pulse-step-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
  animation: float-y 5s ease-in-out infinite;
}

.pulse-step:nth-child(2) .pulse-step-icon { animation-delay: -1.5s; }
.pulse-step:nth-child(3) .pulse-step-icon { animation-delay: -3s; }

.pulse-step h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--mint);
}

.pulse-step p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.pulse-step-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 255, 218, 0.18), transparent 70%);
  pointer-events: none;
  animation: ring-pulse 4s ease infinite;
}

/* ===== AURORA BAND ===== */
.aurora-band-section {
  padding-top: 0;
  padding-bottom: 48px;
}

.aurora-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  padding: 44px 48px;
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(45, 255, 218, 0.2);
  border-radius: calc(var(--radius) + 6px);
  position: relative;
  overflow: hidden;
}

.aurora-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,255,218,0.06), transparent 40%, rgba(255,51,102,0.05));
  pointer-events: none;
}

.aurora-band-visual {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(45, 255, 218, 0.35);
  animation: orbit-spin 16s linear infinite;
}

.orbit-ring--1 { inset: 0; }
.orbit-ring--2 {
  inset: 18%;
  border-color: rgba(123, 92, 255, 0.4);
  animation-duration: 12s;
  animation-direction: reverse;
}
.orbit-ring--3 {
  inset: 36%;
  border-color: rgba(255, 51, 102, 0.35);
  animation-duration: 9s;
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orbit-core {
  position: absolute;
  inset: 42%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--violet));
  box-shadow: var(--glow-mint);
  animation: ring-pulse 3s ease infinite;
}

.aurora-band-copy {
  position: relative;
  z-index: 1;
}

.aurora-band-tag {
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--solar);
  background: rgba(255, 179, 71, 0.12);
  border: 1px solid rgba(255, 179, 71, 0.35);
  border-radius: 999px;
}

.aurora-band-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 14px;
}

.aurora-band-copy > p {
  color: var(--text-dim);
  margin-bottom: 20px;
  max-width: 520px;
}

.aurora-band-list {
  list-style: none;
  margin-bottom: 24px;
}

.aurora-band-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-dim);
}

.list-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--plasma));
  box-shadow: 0 0 10px rgba(45, 255, 218, 0.5);
  animation: dot-pulse 2s ease infinite;
}

.aurora-band-list li:nth-child(2) .list-dot { animation-delay: -0.6s; }
.aurora-band-list li:nth-child(3) .list-dot { animation-delay: -1.2s; }

.aurora-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.aurora-pill {
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  border: 1px solid rgba(45, 255, 218, 0.35);
  background: rgba(45, 255, 218, 0.08);
  color: var(--mint);
  transition: transform 0.25s;
}

.aurora-pill:hover { transform: scale(1.05); }

.aurora-pill--hot {
  border-color: rgba(255, 51, 102, 0.45);
  background: rgba(255, 51, 102, 0.1);
  color: #ff8fab;
}

/* ===== GAMES ===== */
.games-section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  text-align: center;
  margin-bottom: 36px;
  color: var(--solar);
}

.game-row { margin-bottom: 40px; }

.game-row-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet);
  margin-bottom: 16px;
  padding-left: 4px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.game-card {
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid rgba(123, 92, 255, 0.2);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}

.game-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--mint);
  box-shadow: var(--glow-mint);
}

.game-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.game-card:hover .game-thumb img { transform: scale(1.1); }

.game-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 8, 16, 0.72);
  opacity: 0;
  transition: opacity 0.35s;
}

.game-card:hover .game-overlay { opacity: 1; }

.btn-play {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--mint), var(--violet));
  color: var(--bg-deep);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transform: scale(0.85);
  transition: transform 0.3s;
  box-shadow: var(--glow-mint);
}

.game-card:hover .btn-play { transform: scale(1); }

.game-info {
  padding: 12px 14px;
  border-top: 1px solid rgba(123, 92, 255, 0.15);
}

.game-info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== CTA ===== */
.cta-section {
  position: relative;
  margin: 0 28px 64px;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(123,92,255,0.35), rgba(255,51,102,0.25)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="1" fill="white" opacity="0.3"/><circle cx="70" cy="60" r="1.5" fill="white" opacity="0.2"/><circle cx="45" cy="80" r="1" fill="white" opacity="0.25"/></svg>');
  animation: cta-shift 10s ease infinite alternate;
}

@keyframes cta-shift {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 56px;
  width: 100%;
}

.cta-orbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 180px;
}

.cta-orb {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(13, 21, 40, 0.6);
  border: 1px solid rgba(45, 255, 218, 0.3);
  animation: orb-bounce 3s ease-in-out infinite;
}

.cta-orb:nth-child(2) { animation-delay: -0.5s; }
.cta-orb:nth-child(3) { animation-delay: -1s; }
.cta-orb:nth-child(4) { animation-delay: -1.5s; }
.cta-orb:nth-child(5) { animation-delay: -2s; }

@keyframes orb-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.cta-text p {
  color: var(--text-dim);
  margin-bottom: 22px;
  max-width: 520px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  text-align: center;
  padding: 56px 28px 32px;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 14px;
}

.page-hero p { color: var(--text-dim); }

.content-block {
  max-width: 780px;
  margin: 0 auto 28px;
  padding: 0 28px;
}

.content-block h2 {
  font-size: 1.25rem;
  color: var(--mint);
  margin-bottom: 10px;
}

.content-block p,
.content-block li {
  color: var(--text-dim);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.content-block ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.content-block a {
  color: var(--mint);
  text-decoration: underline;
}

.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }

/* ===== FOOTER ===== */
.site-footer {
  background: rgba(5, 8, 16, 0.95);
  border-top: 1px solid rgba(123, 92, 255, 0.25);
  padding: 48px 28px 32px;
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--mint); }

.footer-rg {
  text-align: center;
  padding: 28px 0;
  border-top: 1px solid rgba(123, 92, 255, 0.15);
  border-bottom: 1px solid rgba(123, 92, 255, 0.15);
  margin-bottom: 24px;
}

.footer-rg h4 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.rg-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 32px;
}

.rg-logos a {
  opacity: 0.75;
  transition: opacity 0.25s, transform 0.25s;
}

.rg-logos a:hover {
  opacity: 1;
  transform: scale(1.05);
}

.rg-logos img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(20%);
}

.footer-compliance {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(238, 242, 255, 0.4);
}

/* ===== AGE GATE ===== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 8, 16, 0.92);
  backdrop-filter: blur(12px);
}

.age-gate.is-visible { display: flex; }

.age-gate-box {
  position: relative;
  max-width: 440px;
  width: 100%;
  padding: 44px 36px;
  background: var(--bg-panel);
  border: 2px solid transparent;
  border-radius: calc(var(--radius) + 4px);
  text-align: center;
  background-clip: padding-box;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), var(--glow-plasma);
  animation: gate-in 0.5s ease both;
}

.age-gate-box::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--mint), var(--violet), var(--plasma));
  z-index: -1;
  animation: border-spin 4s linear infinite;
}

@keyframes border-spin {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

@keyframes gate-in {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.age-gate-scan {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  animation: scan-line 2.5s ease-in-out infinite;
}

@keyframes scan-line {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.age-gate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  margin-bottom: 20px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--plasma), var(--solar));
  color: #fff;
  box-shadow: var(--glow-plasma);
  animation: badge-pulse 2s ease infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: var(--glow-plasma); }
  50% { box-shadow: 0 0 60px rgba(255, 179, 71, 0.5); }
}

.age-gate-box h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.age-gate-box > p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-age-confirm {
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--mint), var(--violet));
  color: var(--bg-deep);
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-age-confirm:hover {
  transform: scale(1.03);
  box-shadow: var(--glow-mint);
}

.btn-age-decline {
  padding: 12px 24px;
  background: transparent;
  color: var(--text-dim);
  font-size: 0.88rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-age-decline:hover { border-color: var(--plasma); color: var(--plasma); }

.age-gate-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(238, 242, 255, 0.45);
}

body.age-gate-open { overflow: hidden; }

html:not(.age-ok) .age-gate { display: flex; }
html.age-ok .age-gate { display: none !important; }

/* ===== COOKIES ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--bg-panel);
  border-top: 1px solid rgba(45, 255, 218, 0.25);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
}

#cookie-banner p {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text-dim);
  min-width: 200px;
}

#cookie-banner a { color: var(--mint); text-decoration: underline; }

.btn-cookie-accept,
.btn-cookie-decline {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--mint), var(--violet));
  color: var(--bg-deep);
}

.btn-cookie-decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-dim);
}

.btn-cookie-accept:hover,
.btn-cookie-decline:hover { transform: scale(1.04); }

/* ===== GAME MODAL ===== */
.game-modal {
  position: fixed;
  inset: 0;
  z-index: 99990;
  background: rgba(5, 8, 16, 0.94);
  backdrop-filter: blur(8px);
  display: none;
  flex-direction: column;
  padding: 16px;
}

.game-modal.open { display: flex; }

.game-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 8px;
}

.game-modal-header h3 {
  font-size: 1.1rem;
  color: var(--mint);
}

.btn-close-modal {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: var(--bg-panel);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-close-modal:hover {
  border-color: var(--plasma);
  background: rgba(255, 51, 102, 0.15);
}

.modal-warning {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--solar);
  margin-bottom: 10px;
}

.game-modal-frame {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(45, 255, 218, 0.3);
  min-height: 0;
}

.game-modal-frame iframe {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 120px);
  border: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .header-nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .pulse-steps { grid-template-columns: 1fr; }
  .pulse-steps::before { display: none; }
  .aurora-band { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; }
  .aurora-band-copy > p { margin-left: auto; margin-right: auto; }
  .aurora-band-list { text-align: left; max-width: 360px; margin-left: auto; margin-right: auto; }
  .aurora-pills { justify-content: center; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; max-width: 280px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; text-align: center; padding: 36px 28px; }
  .cta-orbs { justify-content: center; margin: 0 auto; }
  .cta-text p { margin-left: auto; margin-right: auto; }
  .header-actions .btn-ghost { display: none; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .site-header { padding: 0 16px; }
}
