:root {
  --color-bg: #F4F8FC;
  --color-header: #0B2A4A;
  --color-footer: #08233F;
  --color-surface: #FFFFFF;
  --color-elevated: #EEF5FC;
  --color-dark-surface: #123A63;
  --color-primary: #235FD3;
  --color-primary-hover: #1849A7;
  --color-secondary: #E2B857;
  --color-secondary-hover: #C99835;
  --color-text: #13233B;
  --color-on-dark: #FFFFFF;
  --color-muted: #62738A;
  --color-border: #D8E4F0;
  --color-hot: #D99A27;
  --color-icon: #3C7BDB;
  --radius: 16px;
  --shadow: 0 10px 26px rgba(19,35,59,.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--color-bg); color: var(--color-text); font-family: "Segoe UI", Roboto, system-ui, Arial, sans-serif; line-height: 1.5; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1240px, 94%); margin: 0 auto; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; cursor: pointer; font-weight: 800; padding: 12px 24px; border-radius: 999px; font-size: 14px; transition: transform .15s, box-shadow .2s, filter .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-blue { background: linear-gradient(135deg, #3C7BDB 0%, #235FD3 55%, #1849A7 100%); color: #fff; box-shadow: 0 10px 22px rgba(35,95,211,.32); }
.btn-blue:hover { filter: brightness(1.05); }
.btn-gold { background: linear-gradient(135deg, #F2D37A 0%, #E2B857 55%, #C99835 100%); color: #2a2000; box-shadow: 0 10px 22px rgba(226,184,87,.35); }
.btn-outline { background: #fff; color: var(--color-text); border: 1px solid var(--color-border); }
.btn-outline-dark { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn-lg { padding: 15px 30px; font-size: 15px; }

.section { padding: 22px 0; }
.shead { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.shead h2 { font-size: clamp(17px, 2.2vw, 21px); font-weight: 900; color: var(--color-text); }
.shead .all { color: var(--color-primary); font-weight: 700; font-size: 13px; }
.shead .all:hover { text-decoration: underline; }
.shead .nav-arrows { display: flex; align-items: center; gap: 8px; }
.arrow-btn { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--color-border); background: #fff; color: var(--color-text); cursor: pointer; font-size: 15px; transition: .15s; }
.arrow-btn:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

.header { position: sticky; top: 0; z-index: 60; background: var(--color-header); border-bottom: 1px solid rgba(255,255,255,.08); }
.header .container { display: flex; align-items: center; gap: 18px; height: 70px; }
.logo { display: flex; align-items: center; color: #fff; font-weight: 900; gap: 8px; }
.logo img { height: 34px; width: auto; object-fit: contain; }
.main-nav { display: flex; gap: 2px; margin-left: 14px; }
.main-nav a { padding: 9px 14px; border-radius: 999px; font-weight: 700; font-size: 14px; color: rgba(255,255,255,.7); transition: .15s; }
.main-nav a:hover, .main-nav a.active { color: var(--color-secondary); }
.header-cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 3px; background: #fff; border-radius: 3px; transition: .2s; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero { padding: 0; }
.hero-banner { position: relative; overflow: hidden; min-height: 300px; display: flex; align-items: center; padding: 40px 0; color: #fff;
  background: linear-gradient(135deg, #0B2A4A 0%, #08233fa9 60%), radial-gradient(circle at 78% 45%, rgba(60,123,219,.4), transparent 55%), url("../img/banners/hero-main.webp"); background-size: cover; background-position: right center; }
.hero-banner .container { width: min(1240px, 94%); margin: 0 auto; }
.hero-copy { position: relative; z-index: 2; max-width: 540px; }
.hero-copy h1 { font-size: clamp(24px, 3.6vw, 34px); font-weight: 900; line-height: 1.2; }
.hero-copy p { color: #cfe0f5; font-size: 14.5px; margin: 10px 0 18px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-mini { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-mini .hm { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #cfe0f5; }
.hero-mini .hm .ic { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.2); display: grid; place-items: center; flex-shrink: 0; }
.hero-mini .hm .ic img { width: 16px; height: 16px; }

.stats-strip { background: #fff; border-bottom: 1px solid var(--color-border); }
.stats-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); padding: 16px 0; }
.stats-cell { display: flex; align-items: center; gap: 10px; padding: 0 16px; border-right: 1px solid var(--color-border); }
.stats-cell:last-child { border-right: 0; }
.stats-cell .ic { width: 34px; height: 34px; border-radius: 9px; background: var(--color-elevated); display: grid; place-items: center; flex-shrink: 0; }
.stats-cell .ic img { width: 18px; height: 18px; }
.stats-cell b { display: block; font-size: 15px; }
.stats-cell span { display: block; color: var(--color-muted); font-size: 11px; }

.promo4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.promo4-card { display: flex; align-items: center; gap: 16px; border-radius: var(--radius); border: 1px solid var(--color-border); padding: 20px; background: var(--color-surface); }
.promo4-card.gold-bg { background: linear-gradient(135deg, #FFF9EC, #FFFFFF); }
.promo4-card.blue-bg { background: linear-gradient(135deg, #EEF5FC, #FFFFFF); }
.promo4-card img { width: 64px; height: 64px; object-fit: contain; flex-shrink: 0; }
.promo4-card h4 { font-size: 15px; margin-bottom: 4px; }
.promo4-card p { color: var(--color-muted); font-size: 12.5px; margin-bottom: 8px; }
.promo4-card a { color: var(--color-primary); font-weight: 800; font-size: 12.5px; }
.promo4-card a:hover { text-decoration: underline; }

.season { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--color-border); padding: 22px; color: #fff;
  background: linear-gradient(135deg, rgba(11,42,74,.7), rgba(18,58,99,.6)), url("../img/banners/season-bg.webp"); background-size: cover; background-position: center; }
.season > * { position: relative; z-index: 1; }
.season-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.season h3 { font-size: 18px; font-weight: 900; color: #fff; }
.season p { color: #cfe0f5; font-size: 13px; margin: 4px 0 12px; max-width: 320px; }
.season-progress { display: flex; align-items: center; gap: 12px; font-size: 12px; color: #cfe0f5; min-width: 260px; }
.season-bar { flex: 1; height: 8px; border-radius: 999px; background: rgba(255,255,255,.18); overflow: hidden; }
.season-bar i { display: block; height: 100%; width: 61%; background: linear-gradient(90deg, var(--color-secondary), #F2D37A); }
.season-levels { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.lvl-cell { text-align: center; }
.lvl-cell .dot { width: 36px; height: 36px; border-radius: 50%; margin: 0 auto 8px; display: grid; place-items: center; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); }
.lvl-cell.done .dot { background: #2FBF71; border-color: #2FBF71; }
.lvl-cell.done .dot img { filter: brightness(0) invert(1); }
.lvl-cell.current .dot { background: var(--color-secondary); border-color: var(--color-secondary); }
.lvl-cell .dot img { width: 16px; height: 16px; }
.lvl-cell b { display: block; font-size: 12px; color: #fff; }
.lvl-cell span { display: block; color: #cfe0f5; font-size: 10.5px; }

.slider { position: relative; }
.slider-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(130px, 1fr); gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 2px 8px; scrollbar-width: none; -ms-overflow-style: none; }
.slider-track::-webkit-scrollbar { display: none; height: 0; }
.slot-card { position: relative; border-radius: 14px; overflow: hidden; scroll-snap-align: start; background: #fff; border: 1px solid var(--color-border); box-shadow: 0 4px 12px rgba(19,35,59,.06); transition: transform .15s, box-shadow .2s; }
.slot-card:hover { transform: translateY(-4px); box-shadow: 0 10px 22px rgba(35,95,211,.22); }
.slot-thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 14px 14px 0 0; }
.slot-thumb img { width: 100%; height: 100%; object-fit: cover; }
.slot-overlay { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(11,42,74,0) 0%, rgba(11,42,74,.72) 100%); opacity: 0; transition: opacity .18s; }
.slot-card:hover .slot-overlay { opacity: 1; }
.slot-overlay .btn { width: 78%; padding: 8px; font-size: 12px; }
.slot-meta { padding: 8px 9px 10px; }
.slot-meta b { display: block; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.slot-meta small { color: var(--color-muted); font-size: 10px; }

.dual { display: grid; grid-template-columns: 1.2fr 1fr; gap: 16px; }
.panel { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 20px; }
.panel h3 { font-size: 15px; font-weight: 900; margin-bottom: 12px; }
.wins-body { height: 235px; overflow: hidden; }
.wins-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--color-border); animation: winIn .32s ease both; }
.wins-row.is-leaving { animation: winOut .24s ease both; }
@keyframes winIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes winOut { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(10px); } }
.wins-row:last-child { border-bottom: 0; }
.wins-row .av { width: 30px; height: 30px; border-radius: 50%; background: var(--color-elevated); display: grid; place-items: center; font-size: 12px; font-weight: 800; color: var(--color-primary); flex-shrink: 0; }
.wins-row b { font-size: 12.5px; }
.wins-row small { display: block; color: var(--color-muted); font-size: 11px; }
.wins-row .amt { margin-left: auto; color: var(--color-hot); font-weight: 900; font-size: 12.5px; }
.drop-panel { background: linear-gradient(135deg, var(--color-dark-surface), var(--color-header)); color: #fff; text-align: center; }
.drop-panel h3 { color: #fff; }
.drop-panel .amount { color: var(--color-secondary); font-size: 22px; font-weight: 900; margin: 6px 0; }
.drop-panel p { color: #cfe0f5; font-size: 12px; margin-bottom: 14px; }
.dp-cd { display: flex; gap: 6px; margin-bottom: 14px; }
.dp-cd div { flex: 1; background: rgba(255,255,255,.08); border-radius: 8px; padding: 6px 0; text-align: center; }
.dp-cd div b { display: block; font-size: 15px; }
.dp-cd div small { color: #cfe0f5; font-size: 9px; text-transform: uppercase; }
.bag-icon { width: 74px; height: 74px; margin: 6px auto 12px; }

.race-banner { border-radius: var(--radius); overflow: hidden; padding: 20px 24px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: #fff;
  background: linear-gradient(120deg, var(--color-header), var(--color-dark-surface)), url("../img/banners/race-bg.webp"); background-size: cover; background-position: right center; }
.race-banner .ic { width: 44px; height: 44px; }
.race-banner h3 { font-size: 16px; }
.race-banner .rb-mid { flex: 1; min-width: 200px; }
.race-banner .fund { color: var(--color-secondary); font-weight: 900; font-size: 15px; }
.race-banner .cd-inline { display: flex; gap: 6px; color: #cfe0f5; font-size: 12px; align-items: center; }

.cat-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--color-border); font-size: 12.5px; font-weight: 700; color: var(--color-muted); background: #fff; }
.chip.is-active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.subs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.sub-card { background: #fff; border: 1px solid var(--color-border); border-radius: 12px; padding: 14px; text-align: center; }
.sub-card img { width: 34px; height: 34px; object-fit: contain; margin: 0 auto 8px; }
.sub-card b { display: block; font-size: 12px; margin-bottom: 3px; }
.sub-card span { display: block; color: var(--color-muted); font-size: 10.5px; }

.feat5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.feat5-cell { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--color-border); border-radius: 12px; padding: 12px; }
.feat5-cell .ic { width: 34px; height: 34px; border-radius: 9px; background: var(--color-elevated); display: grid; place-items: center; flex-shrink: 0; }
.feat5-cell .ic img { width: 18px; height: 18px; }
.feat5-cell b { display: block; font-size: 11.5px; }
.feat5-cell span { display: block; color: var(--color-muted); font-size: 10px; }

.appabout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 16px; }
.app-panel { border-radius: var(--radius); padding: 24px; color: #fff; background: linear-gradient(135deg, var(--color-header), var(--color-dark-surface)); position: relative; overflow: hidden; }
.app-panel h3 { font-size: 17px; margin-bottom: 8px; max-width: 70%; }
.app-panel p { color: #cfe0f5; font-size: 12.5px; margin-bottom: 16px; max-width: 70%; }
.app-panel .ab-art { position: absolute; right: -10px; bottom: -10px; width: 140px; height: 180px; background: url("../img/banners/app-phone.webp") center/contain no-repeat; }
.store-mini { display: flex; gap: 10px; }
.store-mini a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.1); }
.store-mini img { width: 20px; height: 20px; }
.about-panel { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 26px; }
.about-panel h3 { font-size: 18px; font-weight: 900; margin-bottom: 10px; }
.about-panel p { color: var(--color-muted); font-size: 13.5px; margin-bottom: 14px; }
.about-panel .stats-mini { display: flex; gap: 22px; }
.about-panel .stats-mini div b { display: block; color: var(--color-primary); font-size: 19px; font-weight: 900; }
.about-panel .stats-mini div span { color: var(--color-muted); font-size: 11.5px; }

.seo-text { padding: 34px 0; }
.seo-text h2 { font-size: clamp(19px,2.6vw,25px); font-weight: 900; margin-bottom: 12px; }
.seo-text h2 span { color: var(--color-primary); }
.seo-text p { color: var(--color-muted); margin-bottom: 11px; max-width: 980px; font-size: 14px; }

.footer { background: var(--color-footer); color: #cfe0f5; padding: 40px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 22px; margin-bottom: 22px; }
.footer-grid h5 { margin-bottom: 12px; font-size: 13px; color: #fff; }
.footer-grid a, .footer-grid p { color: #cfe0f5; opacity: .82; font-size: 12.5px; display: block; margin-bottom: 6px; }
.footer-grid a:hover { color: var(--color-secondary); opacity: 1; }
.footer-grid .logo img { height: 32px; margin-bottom: 10px; }
.socials { display: flex; gap: 8px; margin-top: 10px; }
.socials a { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.pay-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 14px; }
.pay-row .pay { height: 28px; min-width: 50px; padding: 0 10px; border-radius: 6px; background: rgba(255,255,255,.08); font-weight: 800; font-size: 11px; display: flex; align-items: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; font-size: 11.5px; opacity: .75; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

@media (max-width: 1100px) {
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); }
  .stats-cell { border-right: 0; border-bottom: 1px solid var(--color-border); padding: 10px 0; }
  .promo4 { grid-template-columns: 1fr; }
  .season-levels { grid-template-columns: repeat(3, 1fr); }
  .dual { grid-template-columns: 1fr; }
  .cat-row { grid-template-columns: 1fr; }
  .feat5 { grid-template-columns: repeat(2, 1fr); }
  .appabout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 720px) {
  .main-nav { position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; background: var(--color-header); padding: 12px; gap: 4px; display: none; margin: 0; }
  .main-nav.open { display: flex; }
  .burger { display: flex; }
  .header-cta .btn-outline { display: none; }
  .subs { grid-template-columns: 1fr; }
  .feat5 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
