/* =========================================================================
   Hot Seven Time — Classic Vegas marquee aesthetic
   Deep royal purple stage, cherry-red CTAs, rich gold frames, hot-pink neon
   ========================================================================= */

:root {
  /* Backgrounds */
  --bg-deep:      #120632;
  --bg-base:      #1B0A3C;
  --bg-surface:   #2B1254;
  --bg-elevated:  #3D1C72;
  --bg-highlight: #4E2A8F;

  /* Brand */
  --brand-red:         #E63946;
  --brand-red-deep:    #A01F2C;
  --brand-gold:        #F5B82E;
  --brand-gold-light:  #FFD35F;
  --brand-gold-deep:   #C98A10;
  --neon-pink:         #FF1F8F;
  --neon-pink-soft:    #FF61B0;
  --neon-cyan:         #4DD8E6;
  --spotlight-warm:    #FFE28C;

  /* Text */
  --text-primary:   #FFFFFF;
  --text-secondary: #D8CBEE;
  --text-tertiary:  #8A7AAE;
  --text-gold:      #F5B82E;

  /* Radii & fonts */
  --radius-s: 10px;
  --radius-m: 14px;
  --radius-l: 20px;
  --radius-xl: 28px;

  --font-display: 'Alfa Slab One', serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-script:  'Pacifico', cursive;
}

/* ---------- Base ---------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-secondary);
  background:
    radial-gradient(ellipse at top, #2B1254 0%, #120632 60%) no-repeat,
    var(--bg-base);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.55;
}

/* Stage backdrop: subtle sparkle layer that sits on the whole site */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,226,140,0.06) 0, transparent 2px),
    radial-gradient(circle at 80% 45%, rgba(77,216,230,0.05) 0, transparent 2px),
    radial-gradient(circle at 40% 75%, rgba(255,31,143,0.04) 0, transparent 2px),
    radial-gradient(circle at 65% 85%, rgba(255,226,140,0.05) 0, transparent 2px);
  background-size: 220px 220px, 300px 300px, 260px 260px, 340px 340px;
  pointer-events: none;
  z-index: 0;
}

a { color: var(--neon-cyan); text-decoration: none; }
a:hover { color: var(--neon-pink-soft); }

/* ---------- Typography helpers ------------------------------------------- */

.font-display { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.5px; }
.font-script  { font-family: var(--font-script);  font-weight: 400; }

/* Showtime heading — cherry red with gold underline and bulb glow */
.heading-marquee {
  font-family: var(--font-display);
  color: var(--brand-red);
  text-shadow:
    0 0 2px rgba(0,0,0,0.6),
    0 2px 0 var(--brand-red-deep),
    0 0 24px rgba(230,57,70,0.35);
  letter-spacing: 0.04em;
}

/* Gold gradient fill for large display type */
.heading-gold {
  font-family: var(--font-display);
  background: linear-gradient(135deg, #FFD35F 0%, #F5B82E 45%, #C98A10 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 8px rgba(245,184,46,0.18));
  letter-spacing: 0.02em;
}

/* Pacifico neon script subtitles */
.script-cyan {
  font-family: var(--font-script);
  color: var(--neon-cyan);
  text-shadow: 0 0 14px rgba(77,216,230,0.45);
}
.script-pink {
  font-family: var(--font-script);
  color: var(--neon-pink);
  text-shadow: 0 0 14px rgba(255,31,143,0.5);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--brand-gold);
  text-transform: uppercase;
}

/* ---------- Signature marquee bulb frame --------------------------------- */

.bulb-frame {
  position: relative;
  border-radius: var(--radius-l);
  padding: 2px;
  background: linear-gradient(135deg, #FFD35F 0%, #F5B82E 40%, #C98A10 100%);
  box-shadow:
    0 0 20px rgba(245,184,46,0.35),
    inset 0 0 0 1px rgba(255,211,95,0.4);
}
.bulb-frame-inner {
  border-radius: calc(var(--radius-l) - 2px);
  background: var(--bg-surface);
}

/* Chase-bulb dots along the top & bottom of a frame */
.bulb-row {
  position: absolute;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.bulb-row-top    { top: -6px; }
.bulb-row-bottom { bottom: -6px; }
.bulb-row span {
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FFE28C 0%, #F5B82E 55%, #C98A10 100%);
  box-shadow: 0 0 8px rgba(255,226,140,0.75);
  animation: bulb-breathe 2.5s ease-in-out infinite;
}
.bulb-row span:nth-child(2n)  { animation-delay: 0.15s; }
.bulb-row span:nth-child(3n)  { animation-delay: 0.30s; }
.bulb-row span:nth-child(4n)  { animation-delay: 0.45s; }
.bulb-row span:nth-child(5n)  { animation-delay: 0.60s; }

@keyframes bulb-breathe {
  0%, 100% { opacity: 0.65; transform: scale(0.95); }
  50%      { opacity: 1.0;  transform: scale(1.05); }
}

/* ---------- Navigation --------------------------------------------------- */

.site-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
  padding: 20px 24px;
}
.site-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
}
.site-nav-brand img {
  width: 44px; height: 44px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.site-nav-brand-text {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}
.site-nav-brand-text span {
  color: var(--brand-red);
}
.site-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.4px;
  transition: color 0.18s ease;
}
.site-nav-links a:hover { color: var(--brand-gold); }
.site-nav-cta {
  padding: 10px 18px;
  font-size: 13px;
}

/* Mobile nav — reveal with Alpine */
.site-nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(245,184,46,0.3);
  background: rgba(61,28,114,0.5);
  color: var(--brand-gold);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.site-nav-mobile {
  display: none;
  position: absolute;
  top: 100%; left: 16px; right: 16px;
  margin-top: 12px;
  padding: 18px 20px;
  background: rgba(30,11,60,0.96);
  border: 1px solid rgba(245,184,46,0.25);
  border-radius: var(--radius-m);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.site-nav-mobile a {
  display: block;
  padding: 10px 0;
  color: var(--text-secondary);
  font-weight: 500;
}
.site-nav-mobile a + a { border-top: 1px solid rgba(138,122,174,0.15); }

@media (max-width: 860px) {
  .site-nav-links { display: none; }
  .site-nav-toggle { display: flex; }
  .site-nav-mobile.is-open { display: block; }
}

/* ---------- Buttons ------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: var(--radius-s);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.2s ease, filter 0.2s ease;
  line-height: 1;
  text-align: center;
}

.btn-primary {
  color: #FFFFFF;
  background: linear-gradient(180deg, #E63946 0%, #A01F2C 100%);
  border-top: 1px solid rgba(245,184,46,0.35);
  box-shadow:
    0 4px 14px rgba(0,0,0,0.5),
    0 0 22px rgba(230,57,70,0.45);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 6px 20px rgba(0,0,0,0.55),
    0 0 32px rgba(230,57,70,0.6);
  color: #FFFFFF;
}
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  color: var(--brand-gold);
  background: transparent;
  border: 1.5px solid var(--brand-gold);
  box-shadow: 0 0 0 rgba(245,184,46,0);
}
.btn-secondary:hover {
  background: rgba(245,184,46,0.12);
  color: var(--brand-gold-light);
  box-shadow: 0 0 18px rgba(245,184,46,0.25);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
}

/* Download-store buttons (Google Play pill) */
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: var(--radius-s);
  background: linear-gradient(180deg, #E63946 0%, #A01F2C 100%);
  border-top: 1px solid rgba(245,184,46,0.35);
  box-shadow:
    0 4px 14px rgba(0,0,0,0.5),
    0 0 22px rgba(230,57,70,0.35);
  color: #FFFFFF;
  text-decoration: none;
  min-width: 200px;
  transition: transform 0.12s ease, box-shadow 0.2s ease;
}
.btn-store:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.55), 0 0 32px rgba(230,57,70,0.55);
  color: #FFFFFF;
}
.btn-store svg { width: 28px; height: 28px; flex-shrink: 0; }
.btn-store-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  text-align: left;
}
.btn-store-label small {
  font-size: 10px;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  font-weight: 500;
}
.btn-store-label strong {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.5px;
}

/* ---------- Layout primitives -------------------------------------------- */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
section { position: relative; z-index: 1; }

.section-eyebrow {
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 12px;
  border-bottom: 2px solid rgba(245,184,46,0.35);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0 0 12px;
}
.section-lead {
  max-width: 640px;
  color: var(--text-secondary);
  font-size: 16px;
}

/* ---------- Hero --------------------------------------------------------- */

.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 10%, #3D1C72 0%, #120632 55%, #0A0320 100%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy .eyebrow {
  color: var(--neon-pink);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.95;
  margin: 14px 0 18px;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.hero-title .red { color: var(--brand-red); text-shadow: 0 2px 0 var(--brand-red-deep), 0 0 32px rgba(230,57,70,0.45); }
.hero-title .gold { background: linear-gradient(135deg, #FFD35F, #F5B82E, #C98A10); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--neon-cyan);
  text-shadow: 0 0 22px rgba(77,216,230,0.55);
  margin: 4px 0 24px;
  font-weight: 400;
}
.hero-body {
  max-width: 520px;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 32px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.4px;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-meta svg { width: 14px; height: 14px; color: var(--brand-gold); }

/* Hero visual — the marquee illustration on the right */
.hero-visual {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(245,184,46,0.15),
    0 0 60px rgba(245,184,46,0.18);
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 50% 50%, rgba(245,184,46,0.25), transparent 65%);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 860px) {
  .hero { padding: 120px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 380px; order: -1; margin-bottom: 8px; }
}

/* ---------- Marquee ticker (thin gold rail under hero) ------------------- */

.marquee-rail {
  margin-top: 40px;
  padding: 10px 0;
  overflow: hidden;
  border-top: 1px solid rgba(245,184,46,0.25);
  border-bottom: 1px solid rgba(245,184,46,0.25);
  background: linear-gradient(180deg, rgba(61,28,114,0.4), rgba(43,18,84,0.4));
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee-scroll 40s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--brand-gold);
  text-transform: uppercase;
}
.marquee-track small {
  color: var(--neon-pink);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 10px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Features (staggered cards) ----------------------------------- */

.features {
  padding: 100px 0 80px;
}
.features-head {
  text-align: left;
  margin-bottom: 56px;
  max-width: 720px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}
.feature-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-l);
  background: linear-gradient(180deg, rgba(61,28,114,0.6), rgba(43,18,84,0.85));
  border: 1px solid rgba(245,184,46,0.18);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,184,46,0.45);
  box-shadow: 0 20px 48px rgba(0,0,0,0.6), 0 0 28px rgba(245,184,46,0.18);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--brand-gold);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 0;
  line-height: 1.55;
}
.feature-card .eyebrow { color: var(--neon-pink); }

.feature-card-illus {
  margin: 8px -28px 20px;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #2B1254, #1B0A3C);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card-illus img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-tournaments .feature-card-illus img { object-position: center 60%; }
.feature-scoreboards .feature-card-illus img { object-position: center 30%; }
.feature-wheels      .feature-card-illus img { object-position: center 55%; }

/* ---------- Typographic feature banners (rules / players / history) ----- */

.typographic-banner {
  position: relative;
  padding: 0;
  overflow: hidden;
}

/* --- RULES: "12 games" marquee display --- */
.banner-rules {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(245,184,46,0.22), transparent 70%),
    linear-gradient(135deg, #3D1C72 0%, #1B0A3C 70%, #120632 100%);
}
.banner-marquee {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 16px;
}
.banner-number {
  font-family: var(--font-display);
  font-size: clamp(72px, 13vw, 120px);
  line-height: 0.9;
  background: linear-gradient(160deg, #FFE28C 0%, #F5B82E 45%, #C98A10 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(245,184,46,0.55));
  letter-spacing: -0.02em;
}
.banner-label {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.2vw, 24px);
  line-height: 1.1;
  color: var(--text-primary);
  text-align: left;
  letter-spacing: 0.01em;
}
.banner-bulbs {
  position: absolute;
  inset: 10px 10px auto 10px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.banner-bulbs + .banner-bulbs,
.banner-rules::after {
  content: '';
}
/* Bottom bulb row via pseudo — use a duplicate via CSS:*/
.banner-rules::before {
  content: '';
  position: absolute;
  bottom: 10px; left: 10px; right: 10px;
  height: 8px;
  background:
    radial-gradient(circle, #FFE28C 0%, #F5B82E 55%, #C98A10 100%) 0 0 / 8px 8px repeat-x;
  opacity: 0.85;
  mask-image: repeating-linear-gradient(90deg, #000 0 8px, transparent 8px 32px);
          mask-image: repeating-linear-gradient(90deg, #000 0 8px, transparent 8px 32px);
  -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 8px, transparent 8px 32px);
  filter: drop-shadow(0 0 6px rgba(255,226,140,0.6));
}
.banner-bulbs span {
  width: 8px; height: 8px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FFE28C 0%, #F5B82E 60%, #C98A10 100%);
  box-shadow: 0 0 8px rgba(255,226,140,0.65);
  animation: bulb-breathe 2.5s ease-in-out infinite;
}
.banner-bulbs span:nth-child(2n) { animation-delay: 0.2s; }
.banner-bulbs span:nth-child(3n) { animation-delay: 0.4s; }

/* --- PLAYERS: avatar cluster --- */
.banner-players {
  background:
    radial-gradient(circle at 25% 40%, rgba(255,31,143,0.18), transparent 65%),
    radial-gradient(circle at 75% 60%, rgba(77,216,230,0.16), transparent 65%),
    linear-gradient(135deg, #2B1254, #1B0A3C);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 18px;
}
.avatar-cluster {
  display: flex;
  gap: -8px;
  position: relative;
  margin-bottom: 12px;
  height: 74px;
  width: 100%;
  max-width: 320px;
  justify-content: center;
}
.avatar-cluster .av {
  width: 60px; height: 60px;
  border-radius: 50%;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border: 3px solid var(--bg-surface);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  flex-shrink: 0;
  position: relative;
}
.avatar-cluster .av + .av { margin-left: -14px; }
.avatar-cluster .av-1 { background: linear-gradient(135deg, #E63946, #A01F2C); }
.avatar-cluster .av-2 { background: linear-gradient(135deg, #FF1F8F, #A01F6C); }
.avatar-cluster .av-3 { background: linear-gradient(135deg, #4DD8E6, #2B8B96); color: #0E2F1A; }
.avatar-cluster .av-4 { background: linear-gradient(135deg, #4DA3FF, #1F4B8F); }
.avatar-cluster .av-5 { background: linear-gradient(135deg, #FFD35F, #C98A10); color: #120632; }

.banner-caption {
  text-align: center;
  line-height: 1.2;
}
.banner-caption .script-cyan,
.banner-caption .script-pink {
  display: block;
  font-size: clamp(20px, 3vw, 28px);
}
.banner-caption small {
  display: block;
  font-size: 11px;
  letter-spacing: 1.6px;
  font-weight: 700;
  color: var(--brand-gold);
  text-transform: uppercase;
  margin-top: 6px;
}

/* --- HISTORY: tickertape of past nights --- */
.banner-history {
  background:
    linear-gradient(135deg, rgba(77,216,230,0.1), transparent 40%),
    linear-gradient(180deg, #2B1254 0%, #120632 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 18px 22px;
}
.history-ticks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.history-ticks .tick {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 14px;
  border-radius: var(--radius-s);
  background: rgba(18,6,50,0.55);
  border: 1px solid rgba(245,184,46,0.25);
  font-family: var(--font-body);
  animation: tick-fade 4.5s ease-in-out infinite;
}
.history-ticks .tick em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--brand-gold);
}
.history-ticks .tick small {
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}
.tick-pref  { animation-delay: 0s;    }
.tick-rummy { animation-delay: 0.5s;  }
.tick-durak { animation-delay: 1s;    }
@keyframes tick-fade {
  0%, 100% { opacity: 0.55; transform: translateY(0); }
  25%      { opacity: 1;    transform: translateY(-1px); }
}

/* Staggered grid column assignments */
.feature-tournaments { grid-column: span 7; }
.feature-scoreboards { grid-column: span 5; }
.feature-wheels      { grid-column: span 5; }
.feature-rules       { grid-column: span 7; }
.feature-players     { grid-column: span 6; }
.feature-history     { grid-column: span 6; }

@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(6, 1fr); }
  .feature-tournaments, .feature-scoreboards, .feature-wheels,
  .feature-rules, .feature-players, .feature-history { grid-column: span 6; }
}

/* ---------- Games strip (12 games as gold chips) ------------------------- */

.games-strip {
  padding: 70px 0;
  background: linear-gradient(180deg, rgba(18,6,50,0) 0%, rgba(30,11,60,0.7) 50%, rgba(18,6,50,0) 100%);
}
.games-strip .games-head {
  text-align: center;
  margin-bottom: 36px;
}
.games-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.game-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(78,42,143,0.45);
  border: 1px solid rgba(245,184,46,0.35);
  color: var(--brand-gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  cursor: default;
}
.game-chip:hover {
  background: rgba(245,184,46,0.15);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(245,184,46,0.35);
}

/* ---------- Screenshots (Swiper) ----------------------------------------- */

.screenshots {
  padding: 80px 0;
}
.screenshots-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.screenshots-copy { max-width: 460px; }
.screenshots-copy ul {
  list-style: none;
  padding: 0; margin: 18px 0 0;
}
.screenshots-copy li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(138,122,174,0.15);
}
.screenshots-copy li::before {
  content: '';
  position: absolute;
  left: 2px; top: 18px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FFE28C 0%, #F5B82E 60%, #C98A10 100%);
  box-shadow: 0 0 10px rgba(255,226,140,0.65);
}

/* Phone frame + Swiper */
.phone-frame {
  position: relative;
  width: 280px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 42px;
  background: linear-gradient(160deg, #3D1C72, #120632);
  border: 1px solid rgba(245,184,46,0.2);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.6),
    0 0 0 6px #0A0320,
    0 0 40px rgba(245,184,46,0.25);
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 4px;
  background: #000;
  border-radius: 4px;
  z-index: 3;
}
.phone-frame .swiper {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 28px;
  overflow: hidden;
  background: #0A0320;
}
.phone-frame .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A0320;
}
.phone-frame .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.phone-frame .swiper-pagination {
  bottom: 10px !important;
}
.phone-frame .swiper-pagination-bullet {
  background: rgba(255,255,255,0.35);
  opacity: 1;
  width: 6px; height: 6px;
}
.phone-frame .swiper-pagination-bullet-active {
  background: var(--brand-gold);
  width: 22px;
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(245,184,46,0.6);
}

.ss-nav {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}
.ss-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245,184,46,0.4);
  background: rgba(61,28,114,0.5);
  color: var(--brand-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.ss-nav-btn:hover {
  background: rgba(245,184,46,0.15);
  transform: translateY(-1px);
}
.ss-nav-btn svg { width: 18px; height: 18px; }

@media (max-width: 860px) {
  .screenshots-inner { grid-template-columns: 1fr; gap: 40px; }
  .screenshots-copy { max-width: none; }
}

/* ---------- Tip quote ---------------------------------------------------- */

.tip-quote {
  padding: 60px 0;
}
.tip-quote-card {
  position: relative;
  padding: 36px 40px;
  border-radius: var(--radius-l);
  background:
    linear-gradient(180deg, rgba(61,28,114,0.9), rgba(43,18,84,0.9)),
    var(--bg-surface);
  border: 1px solid rgba(245,184,46,0.25);
  box-shadow: 0 14px 40px rgba(0,0,0,0.5);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: center;
}
.tip-quote-card .tip-icon {
  width: 80px; height: 80px;
  border-radius: 18px;
  background: linear-gradient(135deg, #FF1F8F, #A01F6C);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(255,31,143,0.45);
}
.tip-quote-card .tip-icon svg { color: #FFE28C; width: 36px; height: 36px; }
.tip-quote-card .eyebrow { color: var(--neon-pink); }
.tip-quote-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-primary);
  margin: 6px 0 10px;
}
.tip-quote-card p {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 0 0 10px;
}
.tip-quote-card .signoff {
  font-family: var(--font-script);
  color: var(--brand-gold);
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 700px) {
  .tip-quote-card { grid-template-columns: 1fr; padding: 28px; }
}

/* ---------- CTA --------------------------------------------------------- */

.cta {
  position: relative;
  padding: 100px 0 110px;
  overflow: hidden;
  margin-top: 60px;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/cta_bg.webp') center/cover no-repeat;
  opacity: 0.4;
  filter: saturate(1.2);
}
.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18,6,50,0.7) 0%, rgba(18,6,50,0.95) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(255,31,143,0.18), transparent 60%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 58px);
  color: var(--text-primary);
  margin: 6px 0 12px;
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.cta-inner h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #FFD35F, #F5B82E, #C98A10);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.cta-inner p {
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---------- Footer ------------------------------------------------------ */

.site-footer {
  padding: 56px 0 36px;
  position: relative;
  border-top: 1px solid rgba(245,184,46,0.2);
  background: linear-gradient(180deg, rgba(18,6,50,0.75), rgba(10,3,32,1));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img {
  width: 56px; height: 56px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  margin: 14px 0 6px;
  letter-spacing: 0.04em;
}
.footer-brand h4 span { color: var(--brand-red); }
.footer-brand .script-cyan { font-size: 16px; }
.footer-brand p { color: var(--text-tertiary); font-size: 13px; max-width: 300px; line-height: 1.55; margin-top: 12px; }

.footer-col h5 {
  color: var(--brand-gold);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 6px 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li + li { margin-top: 10px; }
.footer-col a { color: var(--text-secondary); font-size: 14px; }
.footer-col a:hover { color: var(--brand-gold); }

.footer-legal {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(138,122,174,0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  color: var(--text-tertiary);
  font-size: 12px;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Page shell for privacy/terms/contact ------------------------ */

.page-head {
  padding: 130px 0 40px;
  text-align: left;
}
.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  color: var(--text-primary);
  margin: 12px 0 10px;
  letter-spacing: 0.02em;
  line-height: 1.05;
}
.page-head p {
  max-width: 640px;
  color: var(--text-secondary);
}

.page-body {
  padding: 20px 0 80px;
}
.prose {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(61,28,114,0.5), rgba(43,18,84,0.6));
  border: 1px solid rgba(245,184,46,0.22);
  border-radius: var(--radius-l);
  padding: 40px 44px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.4);
  color: var(--text-secondary);
  text-align: left;
}
.prose h2 {
  font-family: var(--font-display);
  color: var(--brand-gold);
  font-size: 24px;
  margin: 32px 0 10px;
  letter-spacing: 0.02em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-size: 18px;
  margin: 24px 0 8px;
  letter-spacing: 0.02em;
}
.prose p { line-height: 1.65; margin: 10px 0; }
.prose ul {
  padding-left: 22px;
  margin: 10px 0;
}
.prose li { margin: 6px 0; line-height: 1.6; }
.prose a { color: var(--neon-cyan); }
.prose a:hover { color: var(--neon-pink-soft); }
.prose strong { color: var(--text-primary); }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
}
.contact-info {
  background: linear-gradient(180deg, rgba(61,28,114,0.45), rgba(43,18,84,0.7));
  border: 1px solid rgba(245,184,46,0.22);
  border-radius: var(--radius-l);
  padding: 36px 32px;
}
.contact-info h2 {
  font-family: var(--font-display);
  color: var(--brand-gold);
  font-size: 22px;
  margin: 0 0 14px;
}
.contact-info .faq { margin-top: 26px; }
.contact-info details {
  padding: 12px 0;
  border-top: 1px solid rgba(138,122,174,0.18);
  cursor: pointer;
}
.contact-info summary {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-info summary::-webkit-details-marker { display: none; }
.contact-info summary::after {
  content: '+';
  color: var(--brand-gold);
  font-size: 18px;
  font-weight: 700;
}
.contact-info details[open] summary::after { content: '−'; }
.contact-info details p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.contact-form {
  background: linear-gradient(180deg, rgba(61,28,114,0.5), rgba(43,18,84,0.8));
  border: 1px solid rgba(245,184,46,0.22);
  border-radius: var(--radius-l);
  padding: 36px 32px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(18,6,50,0.7);
  color: var(--text-primary);
  border: 1px solid rgba(138,122,174,0.4);
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field textarea:focus {
  border-color: var(--neon-pink);
  box-shadow: 0 0 0 3px rgba(255,31,143,0.15), 0 0 20px rgba(255,31,143,0.25);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input[type="file"] {
  width: 100%;
  color: var(--text-secondary);
  font-size: 13px;
}
.form-field input[type="file"]::file-selector-button {
  padding: 10px 14px;
  margin-right: 12px;
  border: 1px solid var(--brand-gold);
  background: transparent;
  color: var(--brand-gold);
  border-radius: var(--radius-s);
  font-weight: 700;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-success {
  padding: 14px 16px;
  border: 1px solid rgba(75,217,123,0.4);
  background: rgba(14,47,26,0.7);
  color: #B2F5C4;
  border-radius: var(--radius-s);
  margin-top: 14px;
  font-size: 14px;
  display: none;
}
.form-success.is-visible { display: block; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Privacy acceptance button (required) ------------------------ */

.privacy-accept-btn {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px 24px;
  background: linear-gradient(180deg, rgba(18,6,50,0) 0%, rgba(18,6,50,0.95) 30%, rgba(10,3,32,1) 100%);
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
}
.privacy-accept-btn.hidden { display: none; }
.accept-btn {
  width: 100%;
  max-width: 420px;
  padding: 16px 24px;
  background: linear-gradient(180deg, #E63946 0%, #A01F2C 100%);
  color: #FFFFFF;
  border: none;
  border-top: 1px solid rgba(245,184,46,0.4);
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 6px 24px rgba(0,0,0,0.6),
    0 0 28px rgba(230,57,70,0.5);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.accept-btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 28px rgba(0,0,0,0.7), 0 0 32px rgba(230,57,70,0.65);
}

/* ---------- AOS tweak --------------------------------------------------- */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }
