@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,700;12..96,800&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --ink: #120a1f;
  --plum: #1a0f2e;
  --panel: #241538;
  --glass: rgba(36, 21, 56, 0.78);
  --coral: #ff6b4a;
  --aqua: #4eeadc;
  --violet: #7b5cff;
  --sun: #ffd166;
  --cream: #faf3ea;
  --muted: rgba(250, 243, 234, 0.65);
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --radius: 22px;
  --radius-sm: 14px;
  --header-h: 68px;
  --warn-h: 58px;
}

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

body {
  font-family: var(--font-display);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

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.05;
  letter-spacing: -0.03em;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -4;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 80% at 50% -20%, #2d1a4a, var(--ink));
}

.bg-mesh {
  position: absolute;
  inset: -50%;
  background:
    conic-gradient(from 0deg at 30% 40%, rgba(78,234,220,0.12), transparent 40%, rgba(123,92,255,0.14), transparent 70%, rgba(255,107,74,0.1)),
    conic-gradient(from 180deg at 70% 60%, rgba(255,209,102,0.08), transparent 35%, rgba(78,234,220,0.1), transparent 65%);
  animation: mesh-spin 28s linear infinite;
}

@keyframes mesh-spin {
  to { transform: rotate(360deg); }
}

.bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orb-wander 16s ease-in-out infinite;
}

.bg-orb--1 { width: 42vw; height: 42vw; top: -8%; left: -6%; background: rgba(78,234,220,0.16); }
.bg-orb--2 { width: 36vw; height: 36vw; top: 40%; right: -10%; background: rgba(255,107,74,0.14); animation-delay: -5s; }
.bg-orb--3 { width: 48vw; height: 30vw; bottom: -12%; left: 20%; background: rgba(123,92,255,0.18); animation-delay: -10s; }

@keyframes orb-wander {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(3vw, -4vh) scale(1.06); }
  66% { transform: translate(-2vw, 3vh) scale(0.94); }
}

.bg-hex-grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 0 L56 16 L56 48 L28 64 L0 48 L0 16 Z M28 36 L56 52 L56 84 L28 100 L0 84 L0 52 Z' fill='none' stroke='%234eeadc' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
  animation: hex-drift 20s linear infinite;
}

@keyframes hex-drift {
  from { background-position: 0 0; }
  to { background-position: 56px 100px; }
}

#spark-field {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}

.spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--aqua);
  opacity: 0;
  animation: spark-rise 7s ease-in-out infinite;
}

@keyframes spark-rise {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  15% { opacity: 0.8; }
  85% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-120px) scale(1.2); }
}

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

/* ===== MEGA WARNING ===== */
.free-warning-bar {
  position: relative;
  z-index: 3;
  background: var(--sun);
  color: #2a1200;
  text-align: center;
  padding: 0;
  font-weight: 800;
  font-size: clamp(0.7rem, 2.4vw, 0.95rem);
  letter-spacing: 0.05em;
  border-bottom: 4px solid var(--coral);
  box-shadow: 0 8px 40px rgba(255, 107, 74, 0.55);
  animation: warn-border 3s ease-in-out infinite;
}

.free-warning-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(255, 107, 74, 0.12) 8px,
    rgba(255, 107, 74, 0.12) 16px
  );
  pointer-events: none;
  animation: warn-stripe-move 1.2s linear infinite;
}

@keyframes warn-stripe-move {
  from { background-position: 0 0; }
  to { background-position: 32px 0; }
}

@keyframes warn-border {
  0%, 100% { box-shadow: 0 8px 40px rgba(255, 107, 74, 0.55); }
  50% { box-shadow: 0 8px 56px rgba(78, 234, 220, 0.45); }
}

.warn-inner {
  position: relative;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.warn-inner strong {
  display: block;
  font-size: clamp(0.85rem, 2.8vw, 1.15rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: warn-pulse-text 2s ease-in-out infinite;
}

.warn-inner span {
  font-weight: 700;
  font-size: clamp(0.65rem, 1.8vw, 0.82rem);
  opacity: 0.92;
}

@keyframes warn-pulse-text {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

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

.free-notice-block {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.18), rgba(78, 234, 220, 0.1));
  border: 3px solid var(--coral);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.15), 0 16px 48px rgba(0,0,0,0.35);
  animation: notice-glow 4s ease-in-out infinite;
}

@keyframes notice-glow {
  0%, 100% { border-color: var(--coral); }
  50% { border-color: var(--aqua); }
}

.free-notice-block h2 {
  color: var(--sun);
  font-size: clamp(1.05rem, 3.2vw, 1.5rem);
  margin-bottom: 12px;
}

.free-notice-block p {
  color: var(--muted);
  font-size: 0.98rem;
}

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

.free-badge {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid rgba(78, 234, 220, 0.5);
  background: rgba(78, 234, 220, 0.12);
  color: var(--aqua);
}

.free-badge--hot {
  border-color: rgba(255, 107, 74, 0.6);
  background: rgba(255, 107, 74, 0.15);
  color: #ff9a82;
}

/* ===== HEADER ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--header-h);
  background: var(--glass);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(78, 234, 220, 0.2);
}

.logo img {
  width: 46px;
  height: 46px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover img {
  transform: rotate(12deg) scale(1.1);
  filter: drop-shadow(0 0 16px rgba(78, 234, 220, 0.5));
}

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

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

.header-nav a:hover,
.header-nav a.active {
  color: var(--aqua);
  background: rgba(78, 234, 220, 0.1);
}

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

.btn-outline {
  padding: 9px 18px;
  border: 2px solid rgba(123, 92, 255, 0.6);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.84rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.btn-outline:hover {
  border-color: var(--violet);
  box-shadow: 0 0 24px rgba(123, 92, 255, 0.35);
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--sun), var(--coral));
  color: #2a1200;
  font-weight: 800;
  font-size: 0.86rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(255, 209, 102, 0.4);
}

.btn-play:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(255, 107, 74, 0.45);
}

.btn-play .arrow {
  transition: transform 0.25s;
}

.btn-play:hover .arrow { transform: translateX(4px); }

.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(--aqua);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--panel);
  border-bottom: 1px solid rgba(78, 234, 220, 0.15);
  padding: 12px 20px 16px;
}

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

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

.mobile-nav a.active,
.mobile-nav a:hover {
  background: rgba(78, 234, 220, 0.1);
  color: var(--aqua);
}

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

.hero-ring {
  position: absolute;
  top: 50%;
  right: 5%;
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  transform: translateY(-50%);
  border: 2px dashed rgba(78, 234, 220, 0.25);
  border-radius: 50%;
  animation: ring-spin 24s linear infinite;
  pointer-events: none;
}

.hero-ring::before {
  content: '';
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 107, 74, 0.3);
  border-radius: 50%;
  animation: ring-spin 18s linear infinite reverse;
}

@keyframes ring-spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy { position: relative; }

.hero-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 16px;
  background: rgba(123, 92, 255, 0.2);
  border: 1px solid rgba(123, 92, 255, 0.45);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c4b5ff;
  animation: slide-in-left 0.7s ease both;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  margin-bottom: 8px;
  animation: slide-in-left 0.7s ease 0.1s both;
}

.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--aqua);
  display: block;
  font-size: 1.08em;
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { color: var(--aqua); }
  33% { color: var(--sun); }
  66% { color: var(--coral); }
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 24px;
  animation: slide-in-left 0.7s ease 0.2s both;
}

.hero-lead strong { color: var(--sun); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: slide-in-left 0.7s ease 0.3s both;
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes visual-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

.hero-visual img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  filter: drop-shadow(0 28px 64px rgba(123, 92, 255, 0.4));
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 15%;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.2), transparent 70%);
  z-index: -1;
  animation: pulse-glow 3.5s ease infinite;
}

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

.hero-strip-wrap {
  max-width: 1180px;
  margin: 36px auto 0;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.hero-strip {
  display: flex;
  gap: 12px;
  animation: strip-scroll 32s 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: 96px;
  height: 96px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid rgba(123, 92, 255, 0.4);
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.hero-strip-item:hover {
  border-color: var(--aqua);
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 8px 28px rgba(78, 234, 220, 0.35);
}

.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) + 10px);
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  margin: -16px 0 24px;
}

.float-nav-inner {
  display: flex;
  gap: 4px;
  padding: 5px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(78, 234, 220, 0.25);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}

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

.float-nav a.active,
.float-nav a:hover {
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.2), rgba(255, 107, 74, 0.15));
  color: var(--sun);
}

/* ===== SECTIONS ===== */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  text-align: center;
  margin-bottom: 12px;
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
}

.section-lead {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
}

.about-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.about-art img {
  max-width: 340px;
  margin: 0 auto;
  animation: visual-float 8s ease-in-out infinite;
}

.about-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 16px;
}

.about-text h2 span {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--aqua);
}

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

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

.feature-card {
  background: var(--glass);
  border: 1px solid rgba(123, 92, 255, 0.3);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--aqua);
  box-shadow: 0 16px 40px rgba(78, 234, 220, 0.15);
}

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

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

/* ===== FLOW STEPS ===== */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

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

.flow-step {
  position: relative;
  z-index: 1;
  background: var(--glass);
  border: 1px solid rgba(78, 234, 220, 0.22);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.35s, border-color 0.35s;
}

.flow-step:hover {
  transform: translateY(-8px);
  border-color: var(--sun);
}

.flow-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--violet), var(--coral));
  color: var(--cream);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
}

.flow-step h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.flow-step p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ===== TRUTH GRID ===== */
.truth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.truth-card {
  background: linear-gradient(160deg, rgba(36, 21, 56, 0.9), rgba(26, 15, 46, 0.95));
  border: 1px solid rgba(123, 92, 255, 0.35);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.truth-card:hover {
  border-color: var(--aqua);
  box-shadow: 0 12px 40px rgba(78, 234, 220, 0.12);
}

.truth-card-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 107, 74, 0.15);
  color: #ff9a82;
  border: 1px solid rgba(255, 107, 74, 0.35);
}

.truth-card-label--ok {
  background: rgba(78, 234, 220, 0.12);
  color: var(--aqua);
  border-color: rgba(78, 234, 220, 0.35);
}

.truth-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.truth-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ===== GAME GRID ===== */
.games-section-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  text-align: center;
  margin-bottom: 32px;
}

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

.game-row-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--aqua);
  margin-bottom: 14px;
  padding-left: 4px;
}

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

.game-card {
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(78, 234, 220, 0.15);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
}

.game-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

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

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

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

.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 10, 31, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.btn-play-card {
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--sun), var(--coral));
  color: #2a1200;
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transform: scale(0.85);
  transition: transform 0.3s;
}

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

.game-info {
  padding: 10px 12px;
  border-top: 1px solid rgba(78, 234, 220, 0.1);
}

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

/* ===== CTA BANNER ===== */
.cta-section {
  position: relative;
  margin: 0 24px 60px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 15, 46, 0.85), rgba(18, 10, 31, 0.92)),
    radial-gradient(ellipse at 20% 80%, rgba(255, 107, 74, 0.35), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(78, 234, 220, 0.25), transparent 50%);
  animation: cta-shift 8s ease-in-out infinite alternate;
}

@keyframes cta-shift {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(15deg); }
}

.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: center;
  padding: 48px 40px;
}

.cta-orbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-orb {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: rgba(78, 234, 220, 0.1);
  border: 1px solid rgba(78, 234, 220, 0.3);
  border-radius: 50%;
  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.4rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.cta-text p {
  color: var(--muted);
  margin-bottom: 20px;
}

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

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

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

.content-block {
  background: var(--glass);
  border: 1px solid rgba(123, 92, 255, 0.25);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 20px;
}

.content-block h2 {
  font-size: 1.2rem;
  color: var(--aqua);
  margin-bottom: 12px;
}

.content-block p,
.content-block li {
  color: var(--muted);
  margin-bottom: 10px;
}

.content-block ul {
  padding-left: 20px;
}

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

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

/* ===== FOOTER ===== */
.site-footer {
  background: rgba(18, 10, 31, 0.95);
  border-top: 1px solid rgba(78, 234, 220, 0.15);
  padding: 48px 24px 32px;
  margin-top: 40px;
}

.footer-inner { max-width: 1180px; 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;
  opacity: 0.9;
  transition: transform 0.3s;
}

.footer-logo:hover img { transform: scale(1.08); }

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

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

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

.footer-rg {
  text-align: center;
  padding: 28px 0;
  border-top: 1px solid rgba(78, 234, 220, 0.1);
  border-bottom: 1px solid rgba(78, 234, 220, 0.1);
  margin-bottom: 24px;
}

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

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

.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;
}

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

.footer-compliance strong { color: var(--sun); }

.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(250, 243, 234, 0.4);
}

/* ===== AGE GATE ===== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(18, 10, 31, 0.92);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.age-gate.is-visible {
  opacity: 1;
  visibility: visible;
}

html.age-ok .age-gate { display: none; }

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

.age-gate-box {
  position: relative;
  max-width: 440px;
  width: 100%;
  background: var(--panel);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  overflow: hidden;
  animation: gate-border 4s linear infinite;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
}

@keyframes gate-border {
  0%, 100% { border-color: var(--coral); box-shadow: 0 0 40px rgba(255, 107, 74, 0.3); }
  33% { border-color: var(--aqua); box-shadow: 0 0 40px rgba(78, 234, 220, 0.3); }
  66% { border-color: var(--violet); box-shadow: 0 0 40px rgba(123, 92, 255, 0.3); }
}

.age-gate-rays {
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(78, 234, 220, 0.06), transparent, rgba(255, 107, 74, 0.06), transparent);
  animation: mesh-spin 12s linear infinite;
  pointer-events: none;
}

.age-gate-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--coral), var(--sun));
  color: #2a1200;
  font-size: 1.6rem;
  font-weight: 900;
  border-radius: 50%;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

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

.age-gate-box p {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

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

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

.btn-age-confirm:hover { transform: scale(1.03); }

.btn-age-decline {
  padding: 12px 24px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid rgba(250, 243, 234, 0.2);
  border-radius: 999px;
  cursor: pointer;
}

.age-gate-note {
  position: relative;
  font-size: 0.78rem !important;
  margin-top: 16px !important;
  margin-bottom: 0 !important;
  opacity: 0.7;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  padding: 16px 24px;
  background: var(--panel);
  border-top: 2px solid rgba(78, 234, 220, 0.3);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
}

#cookie-banner p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 560px;
}

#cookie-banner a { color: var(--aqua); }

.btn-cookie-accept {
  padding: 10px 20px;
  background: var(--aqua);
  color: var(--ink);
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}

.btn-cookie-decline {
  padding: 10px 20px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  border: 1px solid rgba(250, 243, 234, 0.25);
  border-radius: 999px;
  cursor: pointer;
}

/* ===== GAME MODAL ===== */
.game-modal {
  position: fixed;
  inset: 0;
  z-index: 15000;
  display: flex;
  flex-direction: column;
  background: rgba(18, 10, 31, 0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.game-modal.open {
  opacity: 1;
  visibility: visible;
}

.game-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--panel);
  border-bottom: 1px solid rgba(78, 234, 220, 0.2);
}

.game-modal-header h3 { font-size: 1rem; }

.btn-close-modal {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 74, 0.15);
  border: 1px solid rgba(255, 107, 74, 0.4);
  border-radius: 50%;
  color: var(--cream);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s;
}

.btn-close-modal:hover { background: rgba(255, 107, 74, 0.3); }

.modal-warning {
  text-align: center;
  padding: 8px 16px;
  background: rgba(255, 209, 102, 0.15);
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 700;
}

.game-modal-frame {
  flex: 1;
  padding: 0;
  min-height: 0;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .features-row { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { grid-template-columns: 1fr; }
  .flow-steps::before { display: none; }
  .truth-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-ring { display: none; }
  .about-block { grid-template-columns: 1fr; text-align: center; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
  .header-nav, .header-actions { display: none; }
  .hamburger { display: flex; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .features-row { grid-template-columns: 1fr; }
  .float-nav { display: none; }
  .free-warning-bar .warn-inner span { display: none; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .age-gate-box { padding: 32px 24px; }
}
