/* =============================================
   Y1 Game – Professional Redesign
   Theme: Deep Navy + Gold
   Domain: https://www.y1app.in/
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- Reset & Variables ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Accent Colors - Gold */
  --amber:      #d4a545;
  --amber-lt:   #e8bd5c;
  --amber-dk:   #b8892e;

  /* Success Colors - Green */
  --green:      #22c55e;
  --green-dk:   #16a34a;

  /* Background Colors - Deep Navy */
  --bg:         #050810;   /* Footer */
  --bg-1:       #0a0f1e;   /* Main page */
  --bg-2:       #0f1528;   /* Cards */
  --bg-3:       #1a2038;   /* Hover */

  /* Border Colors */
  --border:     #1e2841;
  --border-lt:  #2d3a5c;

  /* Text Colors */
  --text:       #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim:   #64748b;
  --white:      #f1f5f9;
  --red:        #ef4444;

  /* Sizing */
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  14px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.4);
  --shadow:     0 6px 24px rgba(0,0,0,.5);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.6);
  --transition: .2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background-color: var(--bg-1);
  background-image:
    radial-gradient(ellipse 900px 650px at 100% 100%, rgba(40, 80, 180, .18) 0%, transparent 55%),
    radial-gradient(ellipse 700px 500px at 0% 0%, rgba(20, 40, 100, .35) 0%, transparent 60%),
    linear-gradient(165deg, #0a0f1e 0%, #060a15 42%, #000000 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--amber-lt); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber); }
ul  { list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 90px 0; }
.text-center { text-align: center; }
.mx-auto     { margin-left: auto; margin-right: auto; }

/* ---------- Utility Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--amber);
  opacity: .5;
}

.section-title {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.22;
  letter-spacing: -.3px;
}
.section-title span { color: var(--amber-lt); }

.section-sub {
  color: var(--text-muted);
  font-size: .98rem;
  margin-top: 12px;
  max-width: 580px;
  line-height: 1.75;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .93rem;
  letter-spacing: .15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  text-decoration: none;
  font-family: inherit;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--amber);
  color: var(--bg-1);
  border-color: var(--amber);
  box-shadow: 0 4px 16px rgba(212,165,69,.28);
}
.btn-primary:hover {
  background: var(--amber-lt);
  border-color: var(--amber-lt);
  color: var(--bg-1);
  box-shadow: 0 8px 24px rgba(212,165,69,.4);
}

.btn-green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(34,197,94,.25);
}
.btn-green:hover {
  background: #16a34a;
  color: #fff;
  box-shadow: 0 8px 24px rgba(34,197,94,.38);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-lt);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(212,165,69,.05);
}

.btn-ghost {
  background: var(--bg-3);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--border-lt); color: var(--white); }

.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: .82rem; }

/* ---------- Badge / Tag ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.tag-amber { background: rgba(212,165,69,.12); color: var(--amber-lt); border: 1px solid rgba(212,165,69,.22); }
.tag-green { background: rgba(34,197,94,.12);  color: #4ade80;         border: 1px solid rgba(34,197,94,.22); }
.tag-blue  { background: rgba(80,140,220,.1);  color: #7ab4f0;         border: 1px solid rgba(80,140,220,.2); }

/* ---------- Divider ---------- */
.divider {
  width: 40px;
  height: 2px;
  background: var(--amber);
  margin: 16px auto 0;
  border-radius: 2px;
}
.divider-left { margin-left: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 990;
  background: rgba(10, 15, 30, .92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.3px;
  flex-shrink: 0;
}
.nav-logo img   { width: 36px; height: 36px; border-radius: var(--radius-sm); }
.nav-logo span  { color: var(--amber-lt); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li > a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: .88rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  display: block;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--white);
  background: rgba(255,255,255,.05);
}

.nav-cta { margin-left: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  background: var(--bg-1);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 70% 40%, rgba(212,165,69,.06) 0%, transparent 65%),
    radial-gradient(ellipse 520px 420px at 95% 95%, rgba(40, 80, 180, .12) 0%, transparent 65%),
    radial-gradient(ellipse 500px 400px at 5%  80%, rgba(20, 40, 100, .15) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,165,69,.08);
  border: 1px solid rgba(212,165,69,.2);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber-lt);
  margin-bottom: 20px;
}
.hero-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}

.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.16;
  letter-spacing: -.5px;
  margin-bottom: 18px;
}
.hero-title em {
  font-style: normal;
  color: var(--amber-lt);
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-2);
  overflow: hidden;
}
.stat {
  flex: 1;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--amber-lt);
  letter-spacing: -.5px;
  line-height: 1;
}
.stat-lbl {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: .3px;
}

/* --- Phone visuals --- */
.hero-visuals {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.phone-wrap {
  position: relative;
  flex-shrink: 0;
}
.phone-wrap:nth-child(1) { z-index: 3; margin-top: 0; }
.phone-wrap:nth-child(2) { margin-top: 36px; z-index: 2; }
.phone-wrap:nth-child(3) { margin-top: 72px; z-index: 1; }

.phone-mockup {
  width: 162px;
  border-radius: 22px;
  border: 1px solid var(--border-lt);
  box-shadow: var(--shadow-lg);
  display: block;
  transition: transform .3s ease;
}
.phone-wrap:hover .phone-mockup { transform: translateY(-6px) scale(1.02); }

.phone-main { width: 185px; border-radius: 24px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.trust-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-right: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .83rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { color: var(--text); background: rgba(255,255,255,.02); }

.trust-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--amber);
  opacity: .8;
}

/* ============================================================
   SECTION: ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: flex-start;
}
.about-img-wrap img {
  width: 150px;
  border-radius: 20px;
  border: 1px solid var(--border-lt);
  box-shadow: var(--shadow);
}
.about-img-wrap img:nth-child(2) { margin-top: 40px; }

.about-body { display: flex; flex-direction: column; gap: 14px; }

.about-highlight {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 8px;
}

/* ============================================================
   SECTION: FEATURES
   ============================================================ */
.features-section { background: var(--bg-1); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 52px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--bg-2);
  padding: 30px 28px;
  transition: background var(--transition);
  position: relative;
}
.feature-card:hover { background: var(--bg-3); }

.feat-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(212,165,69,.1);
  border: 1px solid rgba(212,165,69,.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--amber-lt);
}
.feat-icon-box svg { width: 20px; height: 20px; }

.feature-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 7px;
  letter-spacing: -.1px;
}
.feature-card p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   SECTION: GAMES
   ============================================================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.game-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  cursor: default;
}
.game-card:hover {
  border-color: var(--border-lt);
  background: var(--bg-3);
  transform: translateY(-3px);
}

.game-icon-box {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-lt);
  transition: background var(--transition), border-color var(--transition);
}
.game-card:hover .game-icon-box {
  background: rgba(212,165,69,.1);
  border-color: rgba(212,165,69,.25);
}
.game-icon-box svg { width: 22px; height: 22px; }

.game-card h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -.1px;
}
.game-card p { font-size: .8rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================================
   SECTION: DOWNLOAD
   ============================================================ */
.download-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.steps-list { margin-top: 32px; }
.step-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 26px;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 36px;
  bottom: -10px;
  width: 1px;
  background: var(--border);
}

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--bg-3);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  color: var(--amber-lt);
  z-index: 1;
}

.step-text h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
  margin-top: 4px;
}
.step-text p  { font-size: .83rem; color: var(--text-muted); line-height: 1.6; }

.download-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
}
.dl-icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
}
.dl-icon-wrap svg { width: 28px; height: 28px; }

.download-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -.2px;
}
.download-card > p {
  color: var(--text-muted);
  font-size: .87rem;
  margin-bottom: 22px;
  line-height: 1.6;
}

.dl-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 22px;
}
.dl-meta-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.dl-meta-item svg { width: 14px; height: 14px; color: var(--amber); flex-shrink: 0; }

/* ============================================================
   SECTION: BONUS
   ============================================================ */
.bonus-section { background: var(--bg-1); }

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.bonus-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.bonus-card:hover {
  border-color: var(--border-lt);
  transform: translateY(-4px);
}
.bonus-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.bonus-ico {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  background: rgba(212,165,69,.08);
  border: 1px solid rgba(212,165,69,.16);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-lt);
}
.bonus-ico svg { width: 22px; height: 22px; }

.bonus-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--amber-lt);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
.bonus-card h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.bonus-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   SECTION: PROS & CONS
   ============================================================ */
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 52px auto 0;
}

.proscons-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.proscons-card h3 {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.proscons-card.pros h3 { color: #4ade80; }
.proscons-card.cons h3 { color: #f87171; }
.proscons-card h3 svg  { width: 16px; height: 16px; }

.proscons-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 11px;
  font-size: .87rem;
  color: var(--text-muted);
}
.pros-icon, .cons-icon { flex-shrink: 0; margin-top: 3px; }
.pros-icon svg { width: 14px; height: 14px; color: #4ade80; }
.cons-icon svg { width: 14px; height: 14px; color: #f87171; }

/* ============================================================
   SECTION: FAQ
   ============================================================ */
.faq-section { background: var(--bg-1); }

.faq-list {
  max-width: 740px;
  margin: 52px auto 0;
}

.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(212,165,69,.35); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 14px;
  font-family: inherit;
  letter-spacing: -.1px;
}
.faq-q:hover { color: var(--white); }

.faq-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-lt);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  color: var(--text-muted);
}
.faq-arrow svg { width: 12px; height: 12px; }
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: rgba(212,165,69,.1);
  border-color: rgba(212,165,69,.3);
  color: var(--amber-lt);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease, padding .32s ease;
  padding: 0 22px;
  color: var(--text-muted);
  font-size: .87rem;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 22px 18px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 300px at 50% 100%, rgba(212,165,69,.06) 0%, transparent 65%);
}
.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.4px;
  margin-bottom: 12px;
}
.cta-section h2 span { color: var(--amber-lt); }
.cta-section p {
  color: var(--text-muted);
  font-size: .97rem;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   NOTICE BAR
   ============================================================ */
.notice-bar {
  background: rgba(90,90,90,.06);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 15px 20px;
  font-size: .82rem;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.65;
}
.notice-bar svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--amber); opacity: .7; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}

.footer-legal {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 48px;
  font-size: .78rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .83rem;
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--text-muted);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  color: var(--text-muted);
  font-size: .84rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); font-size: .8rem; }
.footer-bottom a:hover { color: var(--text-muted); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 72px 0 60px;
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 100%, rgba(212,165,69,.05) 0%, transparent 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-logo-wrap {
  display: inline-flex;
  padding: 14px;
  background: var(--bg-2);
  border: 1px solid var(--border-lt);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  margin-bottom: 10px;
}
.page-hero-logo-wrap img {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  display: block;
}
.page-hero-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 18px;
  letter-spacing: -.2px;
}
.page-hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.page-hero-actions .btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 700;
  gap: 10px;
}
.page-hero h1 {
  font-size: clamp(1.7rem, 3.8vw, 2.85rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.5px;
  margin: 12px 0 14px;
  line-height: 1.18;
}
.page-hero h1 span { color: var(--amber-lt); }
.page-hero p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: .97rem;
  line-height: 1.7;
}

/* ============================================================
   CONTENT PROSE (inner pages)
   ============================================================ */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin: 44px 0 12px;
  letter-spacing: -.2px;
}
.prose h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--amber-lt);
  margin: 28px 0 10px;
}
.prose p   { color: var(--text-muted); margin-bottom: 14px; font-size: .94rem; line-height: 1.75; }
.prose ul  { padding-left: 0; margin-bottom: 16px; }
.prose ul li {
  list-style: none;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: .9rem;
  padding-left: 18px;
  position: relative;
}
.prose ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}
.prose ol  { padding-left: 20px; margin-bottom: 16px; }
.prose ol li { list-style: decimal; color: var(--text-muted); margin-bottom: 8px; font-size: .9rem; }

/* ============================================================
   BLOG INDEX & ARTICLES
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-1);
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card h2 {
  font-size: 1.25rem;
  line-height: 1.35;
  margin: 16px 0 12px;
}
.blog-card h2 a { color: var(--white); }
.blog-card p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.blog-meta,
.article-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: .78rem;
}
.blog-meta {
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.blog-read-more {
  display: inline-flex;
  margin-top: 18px;
  font-size: .86rem;
  font-weight: 700;
}
.blog-post-hero .container { max-width: 900px; }
.blog-post-hero .article-meta {
  justify-content: center;
  margin-top: 22px;
}
.blog-article { padding: 64px 0 90px; }
.breadcrumbs {
  max-width: 820px;
  margin: 0 auto 34px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: .8rem;
}
.breadcrumbs a { color: var(--text-muted); }
.article-lead {
  font-size: 1.05rem !important;
  color: var(--text) !important;
}
.article-summary,
.article-author {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  margin: 28px 0;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
}
.article-summary strong,
.article-author strong { color: var(--white); }
.article-author { margin-top: 48px; }
.article-author p { margin: 8px 0 0; }
.comparison-table-wrap {
  overflow-x: auto;
  margin: 22px 0 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.comparison-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--bg-2);
}
.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: .86rem;
  color: var(--text-muted);
}
.comparison-table th {
  color: var(--white);
  background: rgba(212,165,69,.08);
}
.comparison-table tr:last-child td { border-bottom: none; }
.troubleshooting-steps {
  display: grid;
  gap: 10px;
  margin: 22px 0 30px;
}
.troubleshooting-steps div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
}
.troubleshooting-steps strong { color: var(--amber-lt); }
.troubleshooting-steps span {
  color: var(--text-muted);
  font-size: .87rem;
  line-height: 1.55;
}
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-body { padding: 22px 20px; }
  .blog-article { padding: 48px 0 70px; }
  .troubleshooting-steps div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: .2px;
}
.form-control {
  width: 100%;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--white);
  font-size: .88rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: inherit;
  resize: vertical;
}
.form-control:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212,165,69,.1);
}
.form-control::placeholder { color: var(--text-dim); }

.contact-info-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  margin-bottom: 16px;
}
.contact-info-card h4 {
  color: var(--white);
  font-size: .87rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: .2px;
}
.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.info-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--amber);
  opacity: .8;
}
.info-item p  { font-size: .84rem; color: var(--text-muted); line-height: 1.6; }
.info-item a  { color: var(--amber-lt); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE — TABLET  (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid      { grid-template-columns: 50% 50%; gap: 32px; }
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .games-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .phone-main     { width: 160px; }
  .phone-mockup   { width: 140px; }
}

@media (max-width: 1100px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: rgba(10, 15, 30, .97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 16px 20px;
    gap: 2px;
    z-index: 999;
  }
  .nav-links.open > li > a {
    padding: 12px 14px;
    font-size: .95rem;
    border-radius: var(--radius-sm);
  }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤768px)
   ============================================================ */
@media (max-width: 768px) {

  section     { padding: 56px 0; }
  .container  { padding: 0 16px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger  { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: rgba(10, 15, 30, .97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 16px 20px;
    gap: 2px;
    z-index: 999;
  }
  .nav-links.open > li > a {
    padding: 12px 14px;
    font-size: .95rem;
    border-radius: var(--radius-sm);
  }
  .nav-links.open .nav-cta {
    display: flex;
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }

  .hero { padding: 52px 0 48px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-kicker  { justify-content: center; display: inline-flex; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-desc    { text-align: center; }
  .hero-actions { justify-content: center; }
  .divider-left { margin-left: auto; margin-right: auto; }

  .hero-visuals {
    justify-content: center;
    gap: 0;
  }
  .phone-wrap { width: 72%; max-width: 260px; margin: 0 auto !important; }
  .phone-wrap:nth-child(2),
  .phone-wrap:nth-child(3) { display: none; }
  .phone-mockup,
  .phone-main {
    width: 100%;
    border-radius: 18px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius);
  }
  .stat {
    padding: 16px 14px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stat:nth-child(2)  { border-right: none; }
  .stat:nth-child(3)  { border-bottom: none; }
  .stat:nth-child(4)  { border-right: none; border-bottom: none; }
  .stat-num { font-size: 1.35rem; }
  .stat-lbl { font-size: .72rem; }

  .trust-bar  { padding: 0; }
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .trust-item {
    width: 100%;
    padding: 14px 16px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    font-size: .8rem;
    gap: 8px;
  }
  .trust-item:nth-child(odd)   { border-right: 1px solid var(--border); }
  .trust-item:nth-child(5)     { grid-column: 1 / -1; border-right: none; border-bottom: none; justify-content: center; }

  .about-grid     { grid-template-columns: 1fr; gap: 32px; }
  .about-img-wrap { display: none; }

  .features-grid  {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
    gap: 0;
  }

  .games-grid     { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
  .game-card      { padding: 22px 16px; }
  .game-icon-box  { width: 44px; height: 44px; }

  .download-grid  { grid-template-columns: 1fr; gap: 36px; }
  .step-item:not(:last-child)::after { bottom: -14px; }

  .bonus-cards    { grid-template-columns: 1fr; gap: 14px; }
  .bonus-card     { padding: 26px 22px; }

  .proscons-grid  { grid-template-columns: 1fr; }

  .faq-q          { font-size: .87rem; padding: 16px 18px; }
  .faq-a          { font-size: .85rem; }
  .faq-item.open .faq-a { padding: 0 18px 16px; }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }

  .contact-grid   { grid-template-columns: 1fr; gap: 28px; }

  .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom  { flex-direction: column; text-align: center; gap: 10px; }
  .footer-brand p { max-width: 100%; }

  .hero-actions   { flex-direction: column; align-items: center; gap: 10px; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE  (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero           { padding: 44px 0 40px; }
  .hero-title     { font-size: 1.75rem; }

  .games-grid     { grid-template-columns: 1fr 1fr; }
  .features-grid  { gap: 0; }
  .trust-item     { font-size: .75rem; padding: 12px 12px; }
  .bonus-amount   { font-size: 1.9rem; }
  .dl-meta        { grid-template-columns: 1fr 1fr; }
  .page-hero      { padding: 52px 0 44px; }
  .page-hero h1   { font-size: 1.65rem; }
  .section-title  { font-size: 1.5rem; }
}

/* ============================================================
   NAV STICKY — desktop only
   ============================================================ */
.site-header { position: relative; }
@media (min-width: 769px) { .site-header { position: sticky; top: 0; } }

/* ============================================================
   FIXED FLOATING DOWNLOAD BUTTON
   ============================================================ */
.fab-download {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .2px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(34,197,94,.45), 0 2px 8px rgba(0,0,0,.4);
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  animation: fab-bounce 2.5s ease-in-out infinite;
}
.fab-download:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 14px 40px rgba(34,197,94,.55), 0 4px 12px rgba(0,0,0,.4);
  background: #16a34a;
  color: #fff;
}
.fab-download:active {
  transform: translateX(-50%) translateY(0);
}
.fab-download svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@keyframes fab-bounce {
  0%, 100% { box-shadow: 0 8px 32px rgba(34,197,94,.45), 0 2px 8px rgba(0,0,0,.4); }
  50%       { box-shadow: 0 8px 40px rgba(34,197,94,.7),  0 2px 8px rgba(0,0,0,.4); }
}

main { padding-bottom: 80px; }

body:not(.home-page) .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
body:not(.home-page) .fab-download {
  animation: none;
}
body:not(.home-page) .hero-kicker-dot {
  animation: none;
}

@media (max-width: 480px) {
  .fab-download {
    bottom: 16px;
    padding: 13px 24px;
    font-size: .87rem;
    border-radius: 50px;
    left: 16px;
    right: 16px;
    transform: none;
    width: calc(100% - 32px);
  }
  .fab-download:hover {
    transform: translateY(-2px);
  }
}

.dl-meta span {
  font-size: .78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.bonus-card:not(:has(.bonus-card-accent))::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.step-item:not(:last-child)::after { background: var(--border); }

.section-alt { background: var(--bg-2); }

img { max-width: 100%; height: auto; }

html, body { overflow-x: hidden; max-width: 100vw; }