:root {
  --color-navy: #0A0F1E;
  --color-navy2: #112B47;
  --color-bg: #F2F6FC;
  --color-surface: #FFFFFF;
  --color-primary: #1E90FF;
  --color-primary-hover: #006EDB;
  --color-cyan: #00D4FF;
  --color-text: #0E1B2C;
  --color-muted: #687a90;
  --color-border: #E2E8F2;
  --color-jackpot: #FFD829;
  --color-glow: #147DFF;
  --radius: 16px;
  --shadow: 0 10px 28px rgba(20,60,120,.12);
}
* { 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(1200px, 94%); margin: 0 auto; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; cursor: pointer; font-weight: 800; padding: 13px 26px; border-radius: 999px; font-size: 15px; transition: transform .15s, box-shadow .2s, filter .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-blue { background: linear-gradient(135deg, #1E90FF 0%, #00D4FF 50%, #006EDB 100%); color: #fff; box-shadow: 0 10px 24px rgba(30,144,255,.35); }
.btn-blue:hover { filter: brightness(1.05); }
.btn-light { background: #fff; color: var(--color-text); border: 1px solid var(--color-border); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn-lg { padding: 16px 34px; font-size: 16px; }

.section { padding: 24px 0; }
.shead { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.shead h2 { font-size: clamp(18px, 2.4vw, 24px); font-weight: 900; text-transform: uppercase; }
.shead .all { color: var(--color-primary); font-weight: 700; font-size: 14px; }
.shead .all:hover { text-decoration: underline; }
.shead .nav-arrows { display: flex; gap: 8px; align-items: center; }
.arrow-btn { width: 34px; height: 34px; 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: rgba(255,255,255,.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--color-border); }
.header .container { display: flex; align-items: center; gap: 18px; height: 72px; }
.logo { display: flex; align-items: center; }
.logo img { height: 40px; width: auto; object-fit: contain; }
.main-nav { display: flex; gap: 2px; margin-left: 16px; }
.main-nav a { padding: 9px 14px; border-radius: 999px; font-weight: 700; font-size: 14px; color: var(--color-muted); transition: .15s; }
.main-nav a:hover, .main-nav a.active { color: var(--color-primary); }
.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: var(--color-text); 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: 22px 0 8px; }
.hero-banner { position: relative; border-radius: 22px; overflow: hidden; min-height: 340px; display: flex; align-items: center; padding: 46px clamp(24px,4vw,56px); color: #fff;
  background: radial-gradient(circle at 76% 38%, rgba(30,144,255,.55), rgba(10,15,30,.1) 46%, var(--color-navy) 100%), url("../img/banners/hero-main.webp"); background-size: cover; background-position: right top; }
.hero-copy { position: relative; z-index: 2; max-width: 520px; }
.hero-copy .eyebrow { font-weight: 800; text-transform: uppercase; letter-spacing: 3px; font-size: 14px; color: #cfe3ff; }
.hero-copy h1 { font-size: clamp(40px, 7vw, 78px); font-weight: 900; line-height: .95; color: var(--color-cyan); text-shadow: 0 0 28px rgba(0,212,255,.45); }
.hero-copy p { color: #d6e6fb; font-size: 16px; margin: 12px 0 22px; }

.feat4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feat4-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.feat4-card .ic { width: 48px; height: 48px; border-radius: 50%; background: #EAF3FF; display: grid; place-items: center; margin-bottom: 14px; }
.feat4-card .ic img { width: 26px; height: 26px; object-fit: contain; }
.feat4-card h4 { font-size: 16px; margin-bottom: 4px; }
.feat4-card p { color: var(--color-muted); font-size: 12.5px; margin-bottom: 10px; }
.feat4-card .lnk { color: var(--color-primary); font-weight: 800; font-size: 13px; }
.feat4-card .lnk:hover { text-decoration: underline; }

.slider { position: relative; }
.slider-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(150px, 1fr); gap: 14px; 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: 16px; overflow: hidden; scroll-snap-align: start; background: #fff; border: 1px solid var(--color-border); box-shadow: 0 4px 14px rgba(20,60,120,.08); transition: transform .15s, box-shadow .2s; }
.slot-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(30,144,255,.3); }
.slot-thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 16px 16px 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(10,15,30,0) 0%, rgba(10,15,30,.72) 100%); opacity: 0; transition: opacity .18s; }
.slot-card:hover .slot-overlay { opacity: 1; }
.slot-overlay .btn { width: 78%; padding: 10px; font-size: 13px; }
.slot-meta { padding: 10px 12px 13px; text-align: center; }
.slot-meta b { display: block; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.season { position: relative; border-radius: var(--radius); overflow: hidden; padding: 30px clamp(24px,4vw,44px); color: #fff;
  background: linear-gradient(135deg, #0A0F1E 0%, #071327 50%, #112b4702 100%), url("../img/banners/season-bg.webp"); background-size: cover; background-position: right center; }
.season-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.season h3 { font-size: 24px; font-weight: 900; text-transform: uppercase; }
.season p { color: #cfe0f5; font-size: 13px; margin: 6px 0 14px; }
.season .lvl-row { flex: 1; min-width: 260px; }
.season .lvl-meta { display: flex; justify-content: space-between; color: #cfe0f5; font-size: 12px; margin-bottom: 8px; }
.season .bar { height: 10px; border-radius: 999px; background: rgba(255,255,255,.15); overflow: hidden; }
.season .bar i { display: block; height: 100%; width: 53%; background: linear-gradient(90deg, var(--color-primary), var(--color-cyan)); }
.season .rewards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 18px; }
.reward { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; padding: 12px; }
.reward img { width: 30px; height: 30px; object-fit: contain; }
.reward b { font-size: 14px; }

.feat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 22px clamp(20px,3vw,36px); box-shadow: var(--shadow); }
.feat-cell { display: flex; gap: 14px; align-items: center; }
.feat-cell img { width: 44px; height: 44px; object-fit: contain; }
.feat-cell h4 { font-size: 15px; }
.feat-cell p { color: var(--color-muted); font-size: 12px; }

.tri { display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px; align-items: start; }
.panel { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.panel h3 { font-size: 16px; font-weight: 900; text-transform: uppercase; margin-bottom: 12px; }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.mini-slot { border-radius: 12px; overflow: hidden; border: 1px solid var(--color-border); }
.mini-slot img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.mini-slot span { display: block; font-size: 11px; padding: 6px; text-align: center; }
.lb-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--color-border); }
.lb-row:last-child { border-bottom: 0; }
.lb-row img { width: 38px; height: 38px; border-radius: 9px; object-fit: cover; }
.lb-row b { font-size: 13px; }
.lb-row small { display: block; color: var(--color-muted); font-size: 11px; }
.lb-row .amt { margin-left: auto; color: var(--color-primary); font-weight: 900; font-size: 13px; }
.live-wins { overflow: hidden; }
.lw-body { height: 236px; overflow: hidden; }
.live-wins .lb-row { animation: liveWinIn .32s ease both; }
.live-wins .lb-row.is-leaving { animation: liveWinOut .24s ease both; }
@keyframes liveWinIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes liveWinOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(10px); }
}
.drop { background: linear-gradient(135deg, #0A0F1E, #112B47); color: #fff; text-align: center; }
.drop h3 { color: #fff; }
.drop .wheel {position: relative; z-index: 2; width: 250px; height: 250px; margin: 8px auto 14px; border-radius: 50%; background: url("../img/banners/wheel.webp") center/contain no-repeat, radial-gradient(circle, #112B47, #0A0F1E); border: 3px solid var(--color-cyan); cursor: pointer; transition: transform 2.8s cubic-bezier(.12,.72,.12,1), box-shadow .2s; will-change: transform; }
.drop .wheel:hover { box-shadow: 0 0 24px rgba(43, 225, 255, .45); }
.drop.is-spinning .btn { pointer-events: none; opacity: .72; }
.drop.is-used .btn { pointer-events: none; opacity: .5; filter: grayscale(.5); }
.drop.is-used .wheel { cursor: default; opacity: .85; }
.drop p { color: #cfe0f5; font-size: 13px; margin-bottom: 14px; }
.wheel-arrow {
  width: 100%;
  position: relative;
  overflow: visible;
  margin-bottom: 20px;
}

.wheel-arrow::after {
  content: "";
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);

  width: 44px;
  height: 34px;

  background: #f3f3f3;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.appban { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.appban h2 { font-size: clamp(20px,2.6vw,26px); font-weight: 900; text-transform: uppercase; }
.appban p { color: var(--color-muted); margin: 8px 0 16px; }
.appban .store-btns { display: flex; gap: 12px; }
.store-btn { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--color-navy); }
.store-btn img { width: 26px; height: 26px; object-fit: contain; }
.appban .ab-art { min-height: 220px; border-radius: 14px; background: url("../img/banners/app-phone.webp") center/contain no-repeat; }
.adv-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.adv-card h2 { font-size: clamp(20px,2.6vw,26px); font-weight: 900; margin-bottom: 14px; }
.duo { display: grid; grid-template-columns: 1.35fr 1fr; gap: 18px; align-items: start; }
.adv-list { list-style: none; display: grid; gap: 12px; }
.adv-list li { display: flex; gap: 12px; align-items: flex-start; }
.adv-list li .ic { width: 34px; height: 34px; border-radius: 9px; background: #EAF3FF; display: grid; place-items: center; flex-shrink: 0; }
.adv-list li .ic img { width: 18px; height: 18px; }
.adv-list li b { font-size: 14px; }
.adv-list li p { color: var(--color-muted); font-size: 12.5px; }
.adv-slots .mini-grid { grid-template-columns: repeat(3, 1fr); }

.seo-text { padding: 36px 0; }
.seo-text h2 { font-size: clamp(20px,2.6vw,28px); font-weight: 900; margin-bottom: 12px; }
.seo-text h2 span { color: var(--color-primary); }
.seo-text p { color: var(--color-muted); margin-bottom: 12px; max-width: 980px; font-size: 15px; }

.footer { border-top: 1px solid var(--color-border); background: #fff; padding: 40px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 20px; }
.footer-grid h5 { margin-bottom: 12px; font-size: 14px; }
.footer-grid a, .footer-grid p { color: var(--color-muted); font-size: 13px; display: block; margin-bottom: 7px; }
.footer-grid a:hover { color: var(--color-primary); }
.footer-grid .logo img { height: 36px; margin-bottom: 12px; }
.socials { display: flex; gap: 10px; margin-top: 12px; }
.socials a { width: 34px; height: 34px; border-radius: 50%; background: var(--color-bg); border: 1px solid var(--color-border); display: grid; place-items: center; }
.footer-bottom { border-top: 1px solid var(--color-border); padding-top: 18px; color: var(--color-muted); font-size: 12px; text-align: center; }

@media (max-width: 1024px) {
  .feat4 { grid-template-columns: repeat(2, 1fr); }
  .feat-strip { grid-template-columns: 1fr; }
  .tri { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .adv-layout { grid-template-columns: 1fr; }
  .adv-slots .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .appban { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .season .rewards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .main-nav { position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; background: #fff; border-bottom: 1px solid var(--color-border); padding: 12px; gap: 4px; display: none; margin: 0; }
  .main-nav.open { display: flex; }
  .burger { display: flex; }
  .header-cta .btn-light { display: none; }
  .feat4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
