:root {
  --color-bg: #0F0F10;
  --color-hf: #111111;
  --color-surface: #1A1A1D;
  --color-elevated: #241316;
  --color-primary: #E30731;
  --color-primary-hover: #B90428;
  --color-secondary: #FF404F;
  --color-text: #FFFFFF;
  --color-muted: #B0B0B3;
  --color-border: #2A2A2F;
  --color-hot: #FF5533;
  --color-gold: #D29A2F;
  --radius: 16px;
  --shadow: 0 18px 44px rgba(0,0,0,.55);
}
* { 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: 13px 26px; border-radius: 999px; font-size: 15px; transition: transform .15s, box-shadow .2s, filter .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-red { background: linear-gradient(135deg, #E30731 0%, #FF404F 50%, #9C061D 100%); color: #fff; box-shadow: 0 10px 26px rgba(227,7,49,.4); }
.btn-red:hover { filter: brightness(1.07); }
.btn-dark { background: var(--color-elevated); color: #fff; border: 1px solid var(--color-border); }
.btn-outline { background: transparent; color: #fff; border: 1px solid var(--color-border); }
.btn-lg { padding: 16px 34px; font-size: 16px; }

.section { padding: 26px 0; }
.section-title { text-align: center; font-size: clamp(22px,3vw,34px); font-weight: 900; text-transform: uppercase; margin-bottom: 22px; }
.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-secondary); font-weight: 700; font-size: 14px; }
.shead .all:hover { text-decoration: underline; }

.header { position: sticky; top: 0; z-index: 60; background: rgba(17,17,17,.92); 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: 42px; 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-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: 22px 0 8px; }
.hero-banner { position: relative; border-radius: 22px; overflow: hidden; border: 1px solid var(--color-border); min-height: 360px; display: flex; align-items: center; padding: 48px clamp(24px,4vw,60px);
  background: radial-gradient(circle at 75% 40%, rgba(227,7,49,.5), rgba(15,15,16,.05) 48%, var(--color-bg) 100%), url("../img/banners/hero-main.webp"); background-size: cover; background-position: right center; }
.hero-copy { position: relative; z-index: 2; max-width: 540px; }
.hero-copy h1 { font-size: clamp(30px, 4.6vw, 50px); font-weight: 900; line-height: 1.05; text-transform: uppercase; }
.hero-copy h1 .r { color: var(--color-secondary); display: block; }
.hero-copy p { color: var(--color-muted); font-size: 16px; margin: 12px 0 24px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.promo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.promo-card { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-border); padding: 26px; min-height: 150px; background: linear-gradient(135deg, var(--color-elevated), var(--color-surface)); display: flex; flex-direction: column; }
.promo-card .pa { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 92px; height: 92px; object-fit: contain; }
.promo-card .eyebrow { color: var(--color-muted); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; font-size: 11px; }
.promo-card h3 { font-size: 20px; font-weight: 900; margin: 4px 0 6px; max-width: 70%; }
.promo-card p { color: var(--color-muted); font-size: 13px; margin-bottom: 14px; max-width: 65%; }
.promo-card .lnk { margin-top: auto; color: var(--color-secondary); font-weight: 800; font-size: 14px; }
.promo-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: var(--color-surface); border: 1px solid var(--color-border); transition: transform .15s, border-color .15s, box-shadow .2s; }
.slot-card:hover { transform: translateY(-4px); border-color: var(--color-primary); box-shadow: 0 0 20px rgba(227,7,49,.4); }
.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(15,15,16,0) 0%, rgba(15,15,16,.9) 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; }
.slot-meta b { display: block; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.slot-meta small { color: var(--color-muted); font-size: 11px; }
.arrow-btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--color-border); background: var(--color-surface); color: #fff; cursor: pointer; font-size: 15px; transition: .15s; }
.arrow-btn:hover { background: var(--color-primary); border-color: var(--color-primary); }
.shead .nav-arrows { display: flex; gap: 8px; align-items: center; }

.winnow { position: relative; display: grid; grid-template-columns: 1fr 1.05fr; gap: 18px; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 26px; overflow: hidden;
  background: linear-gradient(135deg, rgba(26,26,29,.93), rgba(36,19,22,.86)), url("../img/banners/winnow-bg.webp"); background-size: cover; background-position: center; }
.winnow > * { position: relative; z-index: 1; }
.winnow h2 { font-size: 20px; font-weight: 900; text-transform: uppercase; }
.winnow .wsub { color: var(--color-muted); font-size: 13px; margin-bottom: 16px; }
.wn-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.wn-card { display: flex; align-items: center; gap: 10px; background: var(--color-elevated); border: 1px solid var(--color-border); border-radius: 12px; padding: 8px 12px 8px 8px; }
.wn-card img { width: 42px; height: 42px; border-radius: 9px; object-fit: cover; }
.wn-card b { font-size: 12px; }
.wn-card span { display: block; color: var(--color-muted); font-size: 11px; }
.wn-card .amt { margin-left: auto; color: var(--color-hot); font-weight: 900; font-size: 13px; }
.lb-table { width: 100%; border-collapse: collapse; }
.lb-table th { text-align: left; color: var(--color-muted); font-size: 11px; text-transform: uppercase; padding: 8px 10px; border-bottom: 1px solid var(--color-border); font-weight: 700; }
.lb-table td { padding: 11px 10px; border-bottom: 1px solid var(--color-border); font-size: 13px; }
.lb-table tr:last-child td { border-bottom: 0; }
.lb-table .win { color: var(--color-hot); font-weight: 800; }
.lb-table .prize { color: var(--color-gold); font-weight: 800; }
.lb-rank { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--color-elevated); border: 1px solid var(--color-border); font-weight: 800; font-size: 12px; }

.jp-band { background: linear-gradient(135deg, var(--color-elevated), var(--color-surface)); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 24px; }
.jp-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.jp-cell { display: flex; align-items: center; gap: 14px; padding: 8px 12px; }
.jp-cell:not(:last-child) { border-right: 1px solid var(--color-border); }
.jp-cell img { width: 40px; height: 40px; object-fit: contain; }
.jp-cell .lvl { color: var(--color-secondary); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.jp-cell .val { font-size: clamp(16px,2vw,22px); font-weight: 900; }

.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.why-cell { text-align: center; padding: 18px 12px; }
.why-cell img { width: 52px; height: 52px; object-fit: contain; margin: 0 auto 12px; }
.why-cell h4 { font-size: 14px; margin-bottom: 6px; }
.why-cell p { color: var(--color-muted); font-size: 12px; }

.appban { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-border); padding: 36px clamp(24px,4vw,48px); display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center;
  background: radial-gradient(circle at 20% 50%, rgba(227,7,49,.3), transparent 50%), linear-gradient(135deg, var(--color-surface), var(--color-bg)), url("../img/banners/app-bg.webp"); background-size: cover; background-position: center; }
.appban .ab-art { min-height: 200px; border-radius: 14px; background: url("../img/banners/app-phone.webp") center/contain no-repeat; }
.appban h2 { font-size: clamp(22px,3vw,30px); font-weight: 900; text-transform: uppercase; }
.appban .ab-list { list-style: none; margin: 14px 0 18px; }
.appban .ab-list li { display: flex; align-items: center; gap: 10px; color: var(--color-muted); margin-bottom: 8px; font-size: 14px; }
.appban .ab-list li::before { content: "✓"; width: 22px; height: 22px; border-radius: 50%; background: var(--color-primary); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 900; flex-shrink: 0; }
.store-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn { display: flex; align-items: center; gap: 10px; padding: 10px 20px; border-radius: 999px; background: var(--color-elevated); border: 1px solid var(--color-border); font-weight: 700; }
.store-btn img { height: 24px; width: auto; }

.seo-text { background: linear-gradient(180deg, var(--color-surface), var(--color-bg)); border-top: 1px solid var(--color-border); padding: 40px 0; }
.seo-text h2 { font-size: clamp(20px,2.8vw,28px); font-weight: 900; margin-bottom: 14px; }
.seo-text h2 span { color: var(--color-secondary); }
.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: var(--color-hf); padding: 44px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 22px; }
.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-secondary); }
.footer-grid .logo img { height: 38px; margin-bottom: 12px; }
.socials { display: flex; gap: 10px; margin-top: 12px; }
.socials a { width: 34px; height: 34px; border-radius: 50%; background: var(--color-surface); 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) {
  .promo-row { grid-template-columns: 1fr; }
  .winnow { grid-template-columns: 1fr; }
  .jp-row { grid-template-columns: repeat(2, 1fr); }
  .jp-cell { border-right: 0 !important; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .appban { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 720px) {
  .main-nav { position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; background: var(--color-surface); 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-dark, .header-cta .btn-outline { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
