/* ============================================================
   ASIAN BIG WINNER — main.css
   ============================================================ */

:root {
  --orange: #FF7700;
  --yellow: #FFCC00;
  --dark: #1A2A3A;
  --concrete: #555566;
  --red: #CC2200;
  --blue: #1A3A8A;
  --green: #1B5E20;
  --cream: #FDF8F0;
  --dust: #888888;
  --deep: #0E1A26;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

/* ── Accessibility: Skip link ─────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 0; z-index: 99999;
  background: var(--orange); color: #fff;
  padding: 10px 20px; font-weight: 700; font-size: 14px;
  border-radius: 0 0 6px 0; text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Accessibility: Screen-reader only ───────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Accessibility: Focus styles ─────────────────────────── */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* === AGE GATE === */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(26,42,58,0.97);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}
#age-gate.hidden { display: none; }
.age-card {
  background: #fff; border-radius: 10px; padding: 32px;
  max-width: 440px; width: 90%; text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.age-stripe {
  height: 6px;
  background: linear-gradient(90deg, #FF7700 33%, #FFCC00 33% 66%, #888 66%);
  border-radius: 10px 10px 0 0;
  margin: -32px -32px 24px;
}
.age-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 28px; color: var(--orange);
  letter-spacing: 1px; margin-bottom: 8px;
}
.age-helmet { font-size: 48px; margin-bottom: 16px; display: block; }
.age-card h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 42px; color: #1A2A3A;
  text-transform: uppercase; line-height: 1.1; margin-bottom: 12px;
}
.age-sub { font-size: 15px; color: #666; margin-bottom: 24px; }
.btn-yes {
  display: block; width: 100%;
  background: var(--orange); color: #fff;
  border: none; border-radius: 6px; height: 54px;
  font-family: 'Inter', sans-serif; font-size: 15px;
  font-weight: 700; letter-spacing: 1px; cursor: pointer;
  text-transform: uppercase; margin-bottom: 12px;
  transition: background 0.2s;
}
.btn-yes:hover { background: #e56600; }
.btn-no {
  display: block; width: 100%;
  background: transparent; color: #888;
  border: 1.5px solid #ccc; border-radius: 6px; height: 42px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  cursor: pointer; transition: all 0.2s; margin-bottom: 16px;
}
.btn-no:hover { border-color: #888; color: #555; }
.age-disclaimer { font-size: 11px; color: #aaa; line-height: 1.5; }

/* === COOKIE BANNER === */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8888;
  background: var(--deep); border-top: 2px solid var(--orange);
  padding: 16px 24px; display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
#cookie-banner.hidden { display: none; }
.cookie-text { flex: 1; min-width: 200px; font-size: 13px; color: #ccc; }
.cookie-text a { color: var(--orange); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-accept-all {
  background: var(--orange); color: #fff; border: none;
  border-radius: 4px; padding: 8px 18px; cursor: pointer;
  font-weight: 600; font-size: 13px; white-space: nowrap;
}
.btn-necessary {
  background: transparent; color: #aaa;
  border: 1px solid #555; border-radius: 4px;
  padding: 8px 14px; cursor: pointer; font-size: 13px; white-space: nowrap;
}
.btn-necessary:hover { border-color: #888; color: #ccc; }

/* === STICKY BANNER === */
#sticky-banner {
  background: var(--orange); color: #fff;
  text-align: center; padding: 10px 16px;
  font-size: 14px; font-weight: 500;
  cursor: pointer; position: sticky; top: 0; z-index: 700;
}
#sticky-banner.hidden { display: none; }

/* === NAV === */
nav {
  background: var(--deep);
  border-bottom: 1px solid #2a3a4a;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; position: sticky; top: 0; z-index: 600;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 22px; color: var(--orange);
  letter-spacing: 1px; text-decoration: none;
}
.nav-logo span { color: var(--cream); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  color: #aaa; text-decoration: none;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.premium-link { color: var(--yellow); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-switcher { display: flex; gap: 6px; }
.lang-btn {
  background: none; border: 1px solid #444; color: #aaa;
  border-radius: 3px; padding: 3px 8px; font-size: 12px;
  cursor: pointer; transition: all 0.2s;
}
.lang-btn.active, .lang-btn:hover { border-color: var(--orange); color: var(--orange); }
.btn-nav-cta {
  background: var(--orange); color: #fff; border: none;
  border-radius: 4px; padding: 8px 16px; cursor: pointer;
  font-weight: 600; font-size: 13px; letter-spacing: 0.5px;
  text-transform: uppercase; white-space: nowrap;
}

/* === HERO === */
#hero {
  min-height: 90vh;
  background: var(--dark);
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(255,119,0,0.08) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  display: grid; grid-template-columns: 55% 45%;
  align-items: center; padding: 60px 48px;
}
.hero-left { padding-right: 40px; }
.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: clamp(36px, 5vw, 60px);
  color: var(--orange); text-transform: uppercase;
  line-height: 1.05; margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px; color: var(--cream); opacity: 0.85;
  margin-bottom: 32px; line-height: 1.7;
}
.hero-right {
  display: flex; align-items: center; justify-content: center;
}
.hero-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,119,0,0.15);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* === SUBSCRIPTION FORM === */
#subscription-form {
  background: var(--deep);
  border: 2px solid var(--orange);
  box-shadow: 0 0 20px rgba(255,119,0,0.2);
  border-radius: 8px; padding: 28px; margin-top: 8px;
}
.form-header {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 22px; color: var(--orange); margin-bottom: 6px;
}
.form-sub { font-size: 14px; color: #aaa; margin-bottom: 20px; }
.form-input {
  width: 100%; background: #0E1A26;
  border: 2px solid var(--orange); border-radius: 6px;
  color: var(--cream); padding: 12px 16px;
  font-size: 15px; margin-bottom: 12px;
  outline: none; transition: border-color 0.2s;
}
.form-input:focus { border-color: #FFAA00; }
.form-input::placeholder { color: #667; }
button.sub-form {
  width: 100%; height: 50px;
  background: linear-gradient(135deg, var(--orange), #FFAA00);
  color: #fff; border: none; border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: 1px; cursor: pointer;
  transition: opacity 0.2s; margin-bottom: 14px;
}
button.sub-form:hover { opacity: 0.9; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; }
.form-consent input[type=checkbox] { margin-top: 3px; flex-shrink: 0; accent-color: var(--orange); }
.form-consent label { font-size: 13px; color: #aaa; }
.form-consent a { color: var(--orange); }
.form-loading { display: none; text-align: center; padding: 12px; color: var(--orange); font-style: italic; }
.form-success { display: none; text-align: center; padding: 16px; }
.form-success-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; color: var(--yellow);
}
.hero-disclaimer { font-size: 12px; color: var(--dust); margin-top: 16px; }

/* === SECTIONS === */
section { padding: 64px 48px; }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: clamp(22px, 3vw, 36px);
  text-transform: uppercase; margin-bottom: 8px; color: var(--cream);
}
.section-sub { color: var(--dust); margin-bottom: 36px; font-size: 15px; }

/* === SLOTS === */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px; margin-top: 8px;
}
.slot-card {
  background: linear-gradient(160deg, #162030 0%, #0E1A26 100%);
  border-radius: 14px; padding: 28px 24px 24px;
  border: 1px solid #2a3a4a;
  border-top: 3px solid var(--orange);
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s; cursor: pointer;
}
.slot-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,119,0,0.08), transparent 70%);
  pointer-events: none;
}
.slot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(255,119,0,0.18);
  border-top-color: var(--yellow);
}
.slot-card.premium { border-top-color: var(--yellow); }
.slot-card.premium:hover { box-shadow: 0 16px 48px rgba(255,204,0,0.15); }

/* Slot icon — round glowing container */
.slot-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,119,0,0.08);
  border: 2px solid rgba(255,119,0,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 24px rgba(255,119,0,0.12);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.slot-card:hover .slot-icon-wrap {
  border-color: rgba(255,119,0,0.5);
  box-shadow: 0 0 32px rgba(255,119,0,0.25);
}
.slot-card.premium .slot-icon-wrap {
  border-color: rgba(255,204,0,0.3);
  background: rgba(255,204,0,0.06);
}
.slot-icon-wrap svg { width: 44px; height: 44px; }

.slot-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 22px; color: var(--cream);
  margin-bottom: 6px; text-transform: uppercase; text-align: center;
}
.slot-theme { font-size: 13px; color: #6a8aaa; margin-bottom: 12px; text-align: center; }
.slot-bonus {
  font-size: 12px; color: var(--yellow);
  background: rgba(255,204,0,0.07);
  border-left: 3px solid var(--yellow);
  border-radius: 0 4px 4px 0;
  padding: 7px 12px; margin-top: 10px;
  font-family: 'Space Mono', monospace; letter-spacing: 0.3px;
}
.slot-btn {
  display: block; width: 100%; margin-top: 18px;
  background: linear-gradient(135deg, #FF7700, #FFAA00);
  color: #fff; border: none; border-radius: 8px; padding: 11px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 17px; letter-spacing: 1px;
  cursor: pointer; text-transform: uppercase;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(255,119,0,0.28);
}
.slot-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* Lock overlay */
.lock-overlay {
  position: absolute; inset: 0;
  background: rgba(10,16,24,0.88);
  backdrop-filter: blur(2px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; border-radius: 14px;
}
.lock-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,119,0,0.1); border: 2px solid rgba(255,119,0,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.lock-icon svg { width: 26px; height: 26px; }
.lock-text { color: #7a9aaa; font-size: 13px; text-align: center; margin-bottom: 14px; padding: 0 16px; }
.lock-btn {
  background: linear-gradient(135deg, #FF7700, #FFAA00);
  color: #fff; border: none; border-radius: 7px; padding: 9px 20px; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px; letter-spacing: 0.5px;
}

/* === SLOT MACHINE === */
.slot-machine {
  display: none; margin-top: 20px;
  background: #07111A; border-radius: 10px; padding: 16px;
  border: 1px solid #1a2a3a;
}
.slot-machine.open { display: block; animation: machineOpen 0.25s ease-out; }
@keyframes machineOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Payline viewport */
.reels-wrap {
  background: #040C12; border-radius: 8px; padding: 12px 10px;
  border: 1px solid #1a2a3a; margin-bottom: 12px;
  position: relative;
}
.reels-wrap::before,
.reels-wrap::after {
  content: '';
  position: absolute; left: 0; right: 0; height: 2px;
  background: rgba(255,119,0,0.35);
  top: calc(50% - 1px);
}
.reels { display: flex; gap: 8px; justify-content: center; }
.reel {
  width: 74px; height: 82px;
  background: linear-gradient(160deg, #0E2030, #07111A);
  border: 1px solid #1e3040; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 3px 10px rgba(0,0,0,0.6), inset 0 -1px 4px rgba(255,119,0,0.05);
}
.reel svg { width: 50px; height: 50px; }
.reel.spinning { animation: spinReel 0.12s linear infinite; }
@keyframes spinReel {
  0%   { transform: translateY(0) scaleY(1); opacity: 1; }
  25%  { transform: translateY(-10px) scaleY(0.8); opacity: 0.5; }
  50%  { transform: translateY(0) scaleY(1); opacity: 1; }
  75%  { transform: translateY(10px) scaleY(0.8); opacity: 0.5; }
  100% { transform: translateY(0) scaleY(1); opacity: 1; }
}

.coins-display {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Space Mono', monospace; color: var(--yellow);
  font-size: 12px; margin-bottom: 12px;
  background: rgba(255,204,0,0.05);
  border-radius: 6px; padding: 8px 12px;
  border: 1px solid rgba(255,204,0,0.12);
}
.coins-display-icon { width: 18px; height: 18px; flex-shrink: 0; }

.spin-btn {
  width: 100%;
  background: linear-gradient(135deg, #FF7700, #FFAA00);
  color: #fff; border: none; border-radius: 8px; padding: 13px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 19px; letter-spacing: 1.5px;
  cursor: pointer; text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(255,119,0,0.35);
  transition: opacity 0.2s, transform 0.15s;
}
.spin-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.spin-btn:active { transform: translateY(0); }

.spin-result {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: 1px;
  min-height: 28px; margin-top: 10px;
  transition: color 0.3s;
}

/* === OTHER GAMES === */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .games-grid { grid-template-columns: 1fr; gap: 16px; }
}
.game-card {
  background: var(--deep);
  border: 1px solid #2a3a4a; border-radius: 12px;
  padding: 24px 20px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.game-card:hover {
  border-color: rgba(255,119,0,0.35);
  box-shadow: 0 8px 32px rgba(255,119,0,0.08);
}
.game-icon-svg {
  width: 64px; height: 64px;
  display: block; margin-bottom: 14px; flex-shrink: 0;
}
.game-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 22px; color: var(--cream);
  text-transform: uppercase; margin-bottom: 6px;
  line-height: 1.1;
}
.game-card-desc {
  color: #7a9aaa; font-size: 13px; line-height: 1.55;
  flex: 1;
}

.game-card-body {
  display: flex; flex-direction: column; flex: 1; min-width: 0;
}

/* On mobile: horizontal row — icon left, text right */
@media (max-width: 900px) {
  .game-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 14px;
  }
  .game-icon-svg {
    width: 48px; height: 48px;
    margin-bottom: 0; flex-shrink: 0;
  }
  .game-card-name { font-size: 18px; }
  .game-card-desc { font-size: 12px; }
  .play-game-btn { margin-top: 10px; }
}

/* Section title strip */
#daily { overflow: hidden; }
#daily .section-title { margin-bottom: 24px; }

/* === FRIDAY NIGHT === */
#friday {
  background: linear-gradient(135deg, #0A1520 0%, #1A2A3A 60%, #0E1A26 100%);
  position: relative; overflow: hidden; padding: 72px 48px;
  text-align: center;
}
#friday::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,119,0,0.03) 0px, rgba(255,119,0,0.03) 2px,
    transparent 2px, transparent 24px
  );
  pointer-events: none;
}
.friday-inner {
  position: relative; max-width: 700px; margin: 0 auto;
}
.friday-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  border-radius: 20px; padding: 7px 18px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 24px rgba(204,34,0,0.4);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(204,34,0,0.4); }
  50% { box-shadow: 0 0 28px rgba(204,34,0,0.7), 0 0 60px rgba(204,34,0,0.2); }
}
#friday .section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--cream); margin-bottom: 16px;
}
.friday-desc {
  font-size: 17px; color: #aaa; margin-bottom: 36px; line-height: 1.7;
}
.friday-stats {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.friday-stat {
  background: rgba(255,119,0,0.08);
  border: 1px solid rgba(255,119,0,0.25);
  border-radius: 10px; padding: 20px 28px; text-align: center; min-width: 140px;
}
.friday-stat-val {
  font-family: 'Space Mono', monospace;
  font-size: 28px; font-weight: 700; color: var(--yellow);
  display: block; margin-bottom: 4px;
}
.friday-stat-label { font-size: 12px; color: var(--dust); text-transform: uppercase; letter-spacing: 1px; }

/* === WHY SUBSCRIBE === */
#why {
  background: linear-gradient(180deg, #1e2d3d 0%, #253545 100%);
  padding: 72px 48px;
  text-align: center;
}
#why .why-inner { text-align: left; }
.why-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 40px;
}
.benefit-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 18px 20px;
  transition: border-color 0.2s, background 0.2s;
}
.benefit-item:hover {
  border-color: rgba(255,119,0,0.3);
  background: rgba(255,119,0,0.05);
}
.benefit-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(27,94,32,0.25); border: 1.5px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  color: #4caf50; font-size: 14px; flex-shrink: 0; margin-top: 1px;
}
.benefit-text { font-size: 14px; color: var(--cream); line-height: 1.5; }
.benefit-text strong { color: var(--orange); display: block; margin-bottom: 2px; font-size: 15px; }

/* Legacy (keep for backwards compat) */
.benefits-list { display: none; }
.check { color: var(--green); }

/* === BUILD RANKS === */
#ranks {
  background: var(--deep);
  padding: 72px 48px; text-align: center;
}
#ranks .section-title { margin-bottom: 12px; }
#ranks .section-sub { margin-bottom: 48px; }
.ranks-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  max-width: 1000px; margin: 0 auto;
  position: relative;
}
.ranks-grid::before {
  content: '';
  position: absolute;
  top: 38px; left: calc(100% / 12); right: calc(100% / 12);
  height: 2px;
  background: linear-gradient(90deg, #2a3a4a, var(--orange), #2a3a4a);
  z-index: 0;
}
.rank-card {
  background: transparent;
  padding: 0 8px 24px; text-align: center;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
}
.rank-icon-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--dark);
  border: 2px solid #2a3a4a;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin-bottom: 14px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.rank-card:hover .rank-icon-wrap {
  border-color: var(--orange);
  box-shadow: 0 0 20px rgba(255,119,0,0.3);
  transform: scale(1.08);
}
.rank-card:last-child .rank-icon-wrap {
  border-color: var(--yellow);
  background: #1a1a00;
  box-shadow: 0 0 24px rgba(255,204,0,0.25);
}
.rank-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px; color: var(--cream);
  text-transform: uppercase; margin-bottom: 6px; letter-spacing: 0.5px;
}
.rank-card:last-child .rank-name { color: var(--yellow); }
.rank-bc {
  font-family: 'Space Mono', monospace; font-size: 10px; color: var(--dust);
  line-height: 1.3;
}
/* Rank step indicator dots */
.rank-card::before {
  content: '';
  width: 10px; height: 10px; border-radius: 50%;
  background: #2a3a4a; border: 2px solid #3a4a5a;
  position: absolute; top: 31px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: none;
}

@media (max-width: 900px) {
  .ranks-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .ranks-grid::before { display: none; }
  .rank-card { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 20px 12px; border: 1px solid #2a3a4a; }
  .why-inner { grid-template-columns: 1fr; }
  #friday { padding: 48px 24px; }
  #why { padding: 48px 24px; }
  #ranks { padding: 48px 24px; }
  .friday-stats { gap: 16px; }
  .friday-stat { padding: 16px 20px; }
}

/* === MAX MASCOT === */
#max-bubble {
  position: fixed; bottom: 20px; right: 20px; z-index: 500; cursor: pointer;
}
.max-body {
  width: 56px; height: 56px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
  transition: transform 0.2s;
}
#max-bubble:hover .max-body { transform: scale(1.1); }
.max-speech {
  position: absolute; bottom: 60px; right: 0;
  background: var(--cream); color: #1A2A3A;
  border-radius: 10px 10px 0 10px;
  padding: 10px 14px; font-size: 13px; font-style: italic;
  max-width: 220px; box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  font-weight: 500;
}
#max-bubble:hover .max-speech { opacity: 1; }

/* === RUSH OF TOWERS === */
#rush-of-towers {
  background: var(--deep);
  border-top: 3px solid var(--orange); padding: 48px;
}
.rush-divider { text-align: center; margin-bottom: 32px; }
.rush-tag {
  display: inline-block; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--dust);
  border: 1px solid #333; border-radius: 20px; padding: 6px 16px;
}
.rush-inner {
  display: flex; gap: 40px; align-items: center;
  max-width: 900px; margin: 0 auto;
  background: rgba(255,119,0,0.05);
  border: 1px solid #2a3a4a; border-radius: 12px; padding: 28px;
}
.rush-app-img {
  width: 200px; height: 200px; flex-shrink: 0;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,119,0,0.15);
}
.rush-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 28px; color: #fff;
  text-transform: uppercase; margin-bottom: 10px;
}
.rush-content p { font-size: 15px; color: #aaa; margin-bottom: 12px; }
.rush-notice {
  font-size: 12px; color: var(--yellow);
  background: rgba(255,204,0,0.08); border-radius: 4px;
  padding: 6px 10px; margin-bottom: 16px;
}
.rush-rating { font-size: 13px; color: var(--dust); margin-bottom: 16px; }
.google-play-btn {
  display: inline-block; background: #000; border-radius: 8px;
  padding: 10px 20px; text-decoration: none; color: #fff;
  font-size: 14px; font-weight: 600;
  border: 1px solid #333; transition: background 0.2s;
}
.google-play-btn:hover { background: #111; }
.google-play-btn .gp-small { font-size: 10px; display: block; opacity: 0.7; }
.google-play-btn .gp-big { font-size: 16px; display: block; }

/* === FOOTER === */
footer {
  background: #0A1520; padding: 40px 48px;
  border-top: 1px solid #1a2a3a;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; }
.footer-links a { color: var(--dust); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-legal { color: #555; font-size: 12px; line-height: 1.7; }
.footer-rush { margin-top: 16px; font-size: 13px; color: var(--dust); }
.footer-rush a { color: var(--orange); text-decoration: none; }
.addiction-help {
  margin-top: 12px; padding: 10px 16px;
  background: rgba(27,94,32,0.15); border-left: 3px solid var(--green);
  border-radius: 0 4px 4px 0; font-size: 12px; color: #8db898;
}
.addiction-help a { color: #8db898; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  #hero { grid-template-columns: 1fr; padding: 32px 24px; }
  .hero-right { display: none; }
  section { padding: 40px 24px; }
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  footer { padding: 32px 24px; }
  #rush-of-towers { padding: 32px 24px; }
  .rush-inner { flex-direction: column; align-items: center; }
  .rush-app-img { width: 140px; height: 140px; }
}
