/* =========================================================
   Teen Patti Master – Homepage
   1. Tokens & base      5. Hero
   2. Components         6. Sections & cards
   3. Header & nav       7. Promo, games, video, about
   4. Live ticker        8. Footer   9. Responsive
   ========================================================= */

/* ---------- 1. Tokens & base ---------- */
:root {
  --bg: #0c0203;
  --bg-2: #170406;
  --burgundy: #3b070c;
  --red: #d3121c;
  --red-bright: #ff2d2d;
  --red-deep: #8a0910;
  --gold: #ffc53d;
  --gold-2: #f29d16;
  --gold-light: #ffe596;
  --text: #f6ece8;
  --muted: #cbb3ad;
  --line-red: rgba(234, 45, 38, .55);
  --line-gold: rgba(255, 190, 70, .55);
  --grad-gold: linear-gradient(180deg, #fff0a6 0%, #ffc53d 48%, #e58a10 100%);
  --grad-red: linear-gradient(180deg, #ff3b30 0%, #d3121c 50%, #97080f 100%);
  --grad-card: linear-gradient(160deg, rgba(74, 10, 16, .88) 0%, rgba(30, 4, 7, .92) 55%, rgba(18, 2, 4, .95) 100%);
  --shadow-red: 0 0 18px rgba(230, 30, 25, .28);
  --radius: 12px;
  --radius-lg: 16px;
  --container: 1200px;
  --header-h: 74px;
  --ticker-h: 40px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font: 'Poppins', 'Segoe UI', system-ui, -apple-system, Roboto, Arial, sans-serif;
  --font-display: 'Lilita One', 'Poppins', 'Arial Black', Impact, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 60% 40% at 0% 30%, rgba(150, 10, 18, .25), transparent 70%),
    radial-gradient(ellipse 60% 40% at 100% 60%, rgba(150, 10, 18, .22), transparent 70%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* decorative edge elements must never create horizontal scroll */
main { display: block; overflow-x: clip; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.icon { width: 20px; height: 20px; flex-shrink: 0; }
.icon--sm { width: 16px; height: 16px; }
.icon--xs { width: 12px; height: 12px; }

.text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 2. Components ---------- */

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}

.btn--primary {
  color: #fff;
  background: var(--grad-red);
  border: 1.5px solid #ffb13d;
  box-shadow: 0 6px 22px rgba(211, 18, 28, .45), inset 0 1px 0 rgba(255, 255, 255, .35), inset 0 -3px 8px rgba(80, 0, 0, .35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 45, 45, .55), 0 0 0 3px rgba(255, 197, 61, .18), inset 0 1px 0 rgba(255, 255, 255, .35); }

.btn--ghost {
  color: var(--text);
  background: rgba(20, 3, 5, .55);
  border: 1.5px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

.btn__box-ic {
  display: grid; place-items: center;
  width: 26px; height: 26px;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  color: var(--gold);
}

.btn--play {
  min-height: 42px;
  padding: 0 8px 0 20px;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #fff;
  border-radius: 999px;
  background: var(--grad-red);
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 18px rgba(255, 40, 30, .45), inset 0 1px 0 rgba(255, 255, 255, .3);
}
.btn--play:hover { transform: translateY(-1px); box-shadow: 0 0 26px rgba(255, 60, 40, .7), inset 0 1px 0 rgba(255, 255, 255, .3); }

.btn__play-ic {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--red-deep);
  box-shadow: 0 0 10px rgba(255, 197, 61, .6);
}
.btn__play-ic svg { width: 14px; height: 14px; margin-left: 2px; }

/* Pill label */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px 5px 6px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, rgba(70, 8, 12, .9), rgba(30, 3, 6, .9));
  border: 1px solid var(--line-gold);
  box-shadow: 0 0 14px rgba(255, 170, 40, .15);
}
.pill__ic {
  display: grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--red-deep);
}
.pill__ic svg { width: 13px; height: 13px; }
.pill--solid { background: var(--grad-red); border-color: rgba(255, 197, 61, .7); }

/* Logo */
.logo {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: .82;
  font-family: var(--font-display);
  font-style: italic;
  transform: rotate(-4deg);
  padding-top: 12px;
  flex-shrink: 0;
}
.logo__crown {
  position: absolute;
  top: -2px; left: 50%;
  width: 26px; height: 20px;
  transform: translateX(-50%);
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(255, 197, 61, .7));
}
.logo__top, .logo__bottom {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 0 #7a0609) drop-shadow(0 0 1px #7a0609);
  /* room for the italic overhang, which background-clip:text would cut off */
  padding-inline: .08em .18em;
}
.logo__top { font-size: 22px; letter-spacing: .01em; }
.logo__bottom { font-size: 26px; margin-top: 1px; }
/* image logo (assets/logo.png): drop the tilt and crown offset meant for the text logo */
.logo:has(> img) { transform: none; padding-top: 0; }

/* Icon ring */
.icon-ring {
  position: relative;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 60px; height: 60px;
  border-radius: 50%;
  color: var(--gold);
  background: radial-gradient(circle at 35% 30%, #ff5b3a 0%, #c3121a 45%, #5c0509 100%);
  box-shadow: 0 0 0 2px #e9a826, 0 0 0 4px rgba(120, 8, 12, .9), 0 0 0 5px rgba(255, 190, 70, .45), 0 0 20px rgba(255, 50, 30, .55), inset 0 -6px 12px rgba(60, 0, 0, .5);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.icon-ring svg { width: 28px; height: 28px; filter: drop-shadow(0 2px 2px rgba(60, 0, 0, .6)); }
.icon-ring--lg { width: 66px; height: 66px; }
.icon-ring--lg svg { width: 32px; height: 32px; }

/* Reveal animation */
.js-reveal [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js-reveal [data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- 3. Header & nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(22, 3, 5, .97), rgba(12, 2, 3, .95));
  border-bottom: 1px solid rgba(255, 190, 70, .14);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(12, 2, 3, .88);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .5);
}

.header__inner { height: 100%; display: flex; align-items: center; gap: 28px; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav__list { display: flex; align-items: center; gap: 4px; }

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #eadbd6;
  transition: color .25s, background .25s, box-shadow .25s;
}
.nav__link:hover { color: var(--gold-light); }
.nav__link.is-active {
  color: #fff;
  background: var(--grad-red);
  box-shadow: 0 0 14px rgba(255, 40, 30, .5), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.nav__dropdown { position: relative; }
.nav__drop-toggle svg { transition: transform .25s; }
.nav__dropdown.is-open .nav__drop-toggle svg { transform: rotate(180deg); }
.nav__submenu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--grad-card);
  border: 1px solid var(--line-red);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .6), var(--shadow-red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .25s, transform .25s var(--ease), visibility .25s;
}
.nav__dropdown.is-open .nav__submenu { opacity: 1; visibility: visible; transform: none; }
.nav__submenu a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  transition: background .2s, color .2s;
}
.nav__submenu a:hover { background: rgba(211, 18, 28, .35); color: var(--gold-light); }
.nav__submenu svg { color: var(--gold); }

.nav__cta-mobile { display: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  place-items: center;
  border-radius: 10px;
  color: var(--gold);
  border: 1px solid var(--line-gold);
  background: rgba(60, 6, 10, .6);
}
.nav-toggle .icon { width: 24px; height: 24px; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

/* ---------- 4. Live ticker ---------- */
.ticker {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: stretch;
  height: var(--ticker-h);
  background: linear-gradient(90deg, #7d0610, #c20f19 20%, #d3121c 50%, #c20f19 80%, #7d0610);
  border-block: 1px solid rgba(255, 190, 70, .35);
  box-shadow: 0 4px 20px rgba(200, 15, 20, .35);
  overflow: hidden;
}
.ticker__live {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px 0 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #fff;
  background: linear-gradient(90deg, #5a040a, #8e0912);
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
.ticker__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .8);
  animation: pulse 1.6s infinite;
}
.ticker__viewport {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.ticker__track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: ticker 38s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 44px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
.ticker__track .icon { width: 16px; height: 16px; color: var(--gold); }
.ticker__track b { color: var(--gold-light); font-weight: 700; }

@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .75); }
  70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 56px 70px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 2, 4, .92) 0%, rgba(40, 4, 8, .72) 38%, rgba(40, 4, 8, .15) 70%, rgba(14, 2, 4, .35) 100%),
    linear-gradient(180deg, rgba(12, 2, 3, .15) 0%, rgba(12, 2, 3, 0) 60%, var(--bg) 100%),
    url("../assets/background.webp") center 40% / cover no-repeat;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 32px;
}

.hero__content { max-width: 560px; }
.hero__title {
  margin: 20px 0 16px;
  font-size: clamp(32px, 4.1vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .5);
}
.hero__title .text-gold { filter: drop-shadow(0 2px 10px rgba(255, 170, 40, .25)); }
.hero__text { max-width: 500px; font-size: 15px; color: #eadbd6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }

.hero__art {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__glow {
  position: absolute;
  inset: 8% 10% 18%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 150, 40, .38) 0%, rgba(220, 30, 20, .22) 45%, transparent 70%);
  filter: blur(20px);
}
.hero__img {
  width: 100%;
  max-width: 640px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .55));
  animation: heroFloat 6s ease-in-out infinite;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
  margin-top: -14px;
  padding: 10px 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(30, 4, 7, .92), rgba(12, 2, 3, .95));
  border: 1px solid var(--line-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5), 0 0 18px rgba(255, 60, 30, .2);
  position: relative;
  z-index: 2;
}
.trust-bar li { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #fff; }
.trust-bar__ic {
  display: grid; place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--red-deep);
}
.trust-bar__ic svg { width: 14px; height: 14px; }

/* floating decor */
.float { position: absolute; z-index: 1; filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .5)); animation: floatY 5s ease-in-out infinite; }
.float--chip { width: 54px; height: 54px; }
.float--coin { width: 38px; height: 38px; }
.f1 { top: 4%; left: -2%; transform: rotate(-20deg); animation-delay: -1s; }
.f2 { top: 46%; left: -6%; animation-delay: -2.5s; }
.f3 { top: 0; right: 2%; width: 42px; height: 42px; animation-delay: -.5s; }
.f4 { bottom: 26%; right: -3%; animation-delay: -3.2s; }

@keyframes floatY { 0%, 100% { translate: 0 0; } 50% { translate: 0 -14px; } }
@keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------- 6. Sections & cards ---------- */
.section { position: relative; isolation: isolate; padding-block: 56px; }

.section--intro {
  padding-top: 40px;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(22, 3, 6, .74) 14%, rgba(22, 3, 6, .8) 60%, #120304 100%),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(160, 14, 22, .28), transparent 70%),
    url("../assets/second%20background.webp") center 20% / cover no-repeat #1a0407;
}
.section--rules {
  padding-top: 24px;
  background:
    radial-gradient(ellipse 60% 60% at 50% 30%, rgba(140, 10, 18, .3), transparent 70%),
    linear-gradient(180deg, #140304 0%, #1c0508 100%);
}

.section-head { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.section-head--tight { margin-bottom: 24px; }
.section-title {
  margin: 14px 0 12px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.section-title--sm { font-size: clamp(22px, 2.3vw, 28px); }
.section-desc { font-size: 14.5px; color: var(--muted); }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }

.info-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 20px;
  border-radius: var(--radius);
  background: var(--grad-card);
  border: 1px solid var(--line-red);
  box-shadow: inset 0 1px 0 rgba(255, 190, 70, .08), inset 0 0 30px rgba(255, 40, 30, .06), 0 10px 30px rgba(0, 0, 0, .35);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 197, 61, .7), transparent);
  opacity: .5;
  transition: opacity .4s;
}
.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-gold);
  box-shadow: inset 0 1px 0 rgba(255, 190, 70, .15), inset 0 0 40px rgba(255, 60, 30, .1), 0 16px 40px rgba(0, 0, 0, .45), 0 0 24px rgba(255, 50, 30, .3);
}
.info-card:hover::before { opacity: 1; }
.info-card:hover .icon-ring { transform: scale(1.06) rotate(-6deg); }

.info-card--lg { padding: 26px 22px; min-height: 132px; align-items: center; }

.info-card__title { margin-bottom: 6px; font-size: 16px; font-weight: 700; line-height: 1.3; color: var(--gold); }
.info-card__text { font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* decorative chips at section edges */
.deco-chip {
  position: absolute;
  z-index: -1;
  width: 110px; height: 110px;
  opacity: .9;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .6)) blur(.3px);
  pointer-events: none;
}
.deco-chip--r { top: 38%; right: -44px; transform: rotate(24deg); }
.deco-chip--l { top: 20%; left: -48px; transform: rotate(-18deg); }
.deco-chip--low { top: auto; bottom: 18%; }

/* FAQ */
.faq { display: grid; gap: 10px; margin-top: 24px; }
.faq__item {
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(58, 7, 12, .9), rgba(26, 3, 6, .92));
  border: 1px solid var(--line-red);
  transition: border-color .3s, box-shadow .3s;
}
.faq__item:hover, .faq__item.is-open { border-color: var(--line-gold); box-shadow: 0 0 18px rgba(255, 50, 30, .22); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 18px 11px 12px;
  text-align: left;
  font-size: 14.5px;
  font-weight: 500;
  color: #fff;
}
.faq__plus {
  display: grid; place-items: center;
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  color: #fff;
  background: var(--grad-red);
  box-shadow: 0 0 0 1.5px rgba(255, 197, 61, .7), 0 0 10px rgba(255, 40, 30, .5);
  transition: transform .35s var(--ease);
}
.faq__plus svg { width: 14px; height: 14px; }
.faq__label { flex: 1; }
.faq__arrow { width: 18px; height: 18px; flex-shrink: 0; color: #eadbd6; transition: transform .35s var(--ease), color .3s; }
.faq__item.is-open .faq__plus { transform: rotate(45deg); }
.faq__item.is-open .faq__arrow { transform: rotate(90deg); color: var(--gold); }
.faq__item.is-open .faq__label { color: var(--gold-light); }

.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a p { padding: 0 20px 16px 52px; font-size: 14px; color: var(--muted); }

/* Red silk wave band (from background asset) */
.wave-band {
  position: relative;
  height: 150px;
  margin-block: -40px -30px;
  z-index: 1;
  pointer-events: none;
  background: url("../assets/background.webp") center 76% / 1600px auto no-repeat;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 38%, #000 62%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 38%, #000 62%, transparent 100%);
  opacity: .95;
}

/* ---------- 7. Promo banners ---------- */
.promo {
  position: relative;
  padding-block: 24px 40px;
  background: linear-gradient(180deg, #1c0508, #150305);
}
.promo__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }

.promo-panel {
  position: relative;
  isolation: isolate;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--line-gold);
  box-shadow: 0 0 0 1px rgba(120, 8, 12, .8) inset, 0 0 28px rgba(255, 40, 30, .25), 0 18px 40px rgba(0, 0, 0, .5);
}
.promo-panel::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: calc(var(--radius-lg) - 5px);
  border: 1px solid rgba(255, 190, 70, .18);
  pointer-events: none;
}

.promo-panel--info {
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 50% 70% at 22% 60%, rgba(255, 90, 40, .35), transparent 70%),
    linear-gradient(135deg, #5a070d 0%, #2c0407 55%, #1a0305 100%);
}
.promo-panel--info .promo-panel__model {
  align-self: flex-end;
  width: 44%;
  max-width: 240px;
  margin: 12px 0 0 6px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .5));
}
.promo-panel__body { flex: 1; padding: 28px 28px 28px 10px; }
.promo-panel__body p { margin: 16px 0 22px; font-size: 14px; color: #eadbd6; }

.promo-panel--bonus {
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 45% 70% at 75% 55%, rgba(255, 120, 40, .4), transparent 70%),
    url("../assets/second%20background.webp") 60% center / cover no-repeat;
}
.promo-panel--bonus::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(40, 4, 8, .92) 0%, rgba(60, 6, 10, .7) 45%, rgba(60, 6, 10, .25) 100%);
}
.promo-panel__offer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 46%;
  padding: 22px 0 22px 22px;
}
.promo-panel__model--right {
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 72%;
  max-width: 420px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .5));
}
.promo-panel__logo { position: absolute; top: 16px; right: 18px; z-index: 3; }

.speech {
  position: relative;
  padding: 16px 18px 14px;
  border-radius: 50%/42%;
  text-align: center;
  background: radial-gradient(circle at 50% 30%, #fff6c8, #ffd25a 55%, #f0a020);
  box-shadow: 0 0 0 3px #b3101a, 0 0 0 5px #ffd36b, 0 8px 20px rgba(0, 0, 0, .45);
}
.speech::after {
  content: "";
  position: absolute;
  bottom: -14px; right: 26%;
  border: 10px solid transparent;
  border-top: 16px solid #f0a020;
  transform: skewX(-20deg);
}
.speech__crown { position: absolute; top: -18px; left: 50%; width: 30px; height: 24px; transform: translateX(-50%); color: var(--gold); filter: drop-shadow(0 2px 2px rgba(80, 0, 0, .6)); }
.speech p {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.15;
  text-transform: uppercase;
  color: #9a0a12;
}
.speech p span { font-size: 18px; color: #c3121a; }

.bonus-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 22px 12px;
  border-radius: 12px;
  text-align: center;
  background: linear-gradient(180deg, #6a070d, #2a0306);
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(255, 170, 40, .35), inset 0 0 18px rgba(255, 60, 30, .25);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.bonus-box:hover { transform: scale(1.04); box-shadow: 0 0 30px rgba(255, 170, 40, .55), inset 0 0 18px rgba(255, 60, 30, .3); }
.bonus-box__top, .bonus-box__bottom { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #fff; }
.bonus-box__amount {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.05;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 0 #6b0508);
}

/* Popular games */
.section--games {
  padding-top: 40px;
  background:
    linear-gradient(180deg, #150305 0%, rgba(24, 4, 7, .7) 16%, rgba(24, 4, 7, .76) 78%, #120304 100%),
    radial-gradient(ellipse 60% 50% at 50% 20%, rgba(150, 12, 20, .3), transparent 70%),
    url("../assets/second%20background.webp") center bottom / cover no-repeat #1b0508;
}
.game-card { align-items: center; }
.game-card__body { min-width: 0; }
.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  padding: 5px 12px 5px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  background: var(--grad-red);
  border: 1px solid rgba(255, 197, 61, .6);
  box-shadow: 0 0 10px rgba(255, 40, 30, .3);
  transition: gap .3s var(--ease), box-shadow .3s, transform .3s var(--ease);
}
.link-btn svg { width: 13px; height: 13px; }
.link-btn:hover { gap: 8px; box-shadow: 0 0 18px rgba(255, 60, 30, .55); }

/* Watch & learn */
.section--videos { padding-block: 44px 36px; background: linear-gradient(180deg, #120304, #170406); }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 1000px; margin-inline: auto; }

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--grad-card);
  border: 1px solid var(--line-red);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .45);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.video-card:hover { transform: translateY(-4px); border-color: var(--line-gold); box-shadow: 0 16px 40px rgba(0, 0, 0, .5), 0 0 22px rgba(255, 50, 30, .3); }

.video-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.2;
  max-width: 100%;
  overflow: hidden;
  background: #000;
}
.video-card__thumb {
  position: absolute;
  inset: 0;
  transition: transform .6s var(--ease);
}
.video-card__thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .55)); }
.video-card__thumb--a {
  background:
    url("../assets/second-image.webp") right -10px bottom / auto 100% no-repeat,
    url("../assets/background.webp") center 35% / cover no-repeat;
}
.video-card__thumb--b {
  background:
    url("../assets/image.webp") right 6% bottom -30px / auto 115% no-repeat,
    url("../assets/background.webp") 20% 60% / cover no-repeat;
}
.video-card__media:hover .video-card__thumb { transform: scale(1.05); }

.video-card__yt {
  position: absolute;
  top: 50%; left: 42%;
  display: grid; place-items: center;
  width: 72px; height: 50px;
  color: #ff0000;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease);
}
.video-card__yt::before { content: ""; position: absolute; inset: 12px 20px; background: #fff; border-radius: 4px; }
.video-card__yt svg { position: relative; width: 72px; height: 72px; filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .6)); }
.video-card__media:hover .video-card__yt { transform: translate(-50%, -50%) scale(1.1); }

.video-card__tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, .6);
  border: 1px solid rgba(255, 197, 61, .45);
}
.video-card__notice {
  position: absolute;
  inset: auto 12px 12px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #fff;
  text-align: center;
  background: rgba(20, 3, 5, .9);
  border: 1px solid var(--line-gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s var(--ease);
}
.video-card.is-notice .video-card__notice { opacity: 1; transform: none; }

.video-card__body { padding: 14px 18px 16px; }
.video-card__title {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card__text { margin-top: 4px; font-size: 13px; color: var(--muted); }

/* About */
.section--about { padding-block: 20px 56px; background: linear-gradient(180deg, #170406, #0f0203); }
.about { max-width: 940px; text-align: center; }
.about__title {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 22px;
  border-radius: 10px;
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, rgba(60, 7, 12, .7), rgba(25, 3, 6, .7));
  border: 1px solid var(--line-gold);
  box-shadow: 0 0 16px rgba(255, 60, 30, .2);
}
.about p { font-size: 13.5px; line-height: 1.75; color: var(--muted); }
.about p + p { margin-top: 12px; }
.about strong { color: #fff; font-weight: 600; }

/* ---------- 8. Footer ---------- */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 44px 20px;
  border-top: 1px solid rgba(255, 190, 70, .18);
  background: #0c0203;
}
.footer__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 2, 3, .96) 0%, rgba(20, 3, 5, .85) 55%, rgba(12, 2, 3, .9) 100%),
    url("../assets/background.webp") center 82% / cover no-repeat;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .6;
}
.deco-chip--footer { top: auto; bottom: 30px; width: 90px; height: 90px; opacity: .7; }

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.logo--footer .logo__top { font-size: 26px; }
.logo--footer .logo__bottom { font-size: 30px; }

.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 26px; }
.footer__nav a { font-size: 14px; font-weight: 500; color: #eadbd6; transition: color .25s; }
.footer__nav a:hover { color: var(--gold); }

.socials { display: flex; gap: 10px; }
.social {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  color: #fff;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.social svg { width: 21px; height: 21px; }
.social:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(0, 0, 0, .5), 0 0 14px rgba(255, 197, 61, .35); }
.social--ig { background: radial-gradient(circle at 30% 110%, #ffd776 0%, #f5812f 25%, #e02b6b 55%, #b12fb8 80%, #6a3ad0 100%); }
.social--tg { background: #229ed9; }
.social--wa { background: #25d366; }
.social--fb { background: #1877f2; }
.social--yt { background: #ff0000; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 20px;
  padding-top: 16px;
  font-size: 13px;
  color: var(--muted);
}
.footer__legal { display: flex; gap: 0; }
.footer__legal li + li::before { content: "|"; margin: 0 10px; color: rgba(255, 255, 255, .3); }
.footer__legal a:hover { color: var(--gold); }

/* ---------- 9. Responsive ---------- */
@media (max-width: 1180px) {
  .header__inner { gap: 16px; }
  .nav__link { padding: 7px 10px; font-size: 13.5px; }
}

@media (max-width: 1080px) {
  :root { --header-h: 66px; }

  .nav-toggle { display: grid; margin-left: auto; }
  .header__cta { display: none; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    height: calc(100dvh - var(--header-h));
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    padding: 20px 24px 32px;
    overflow-y: auto;
    background: linear-gradient(180deg, #140305, #0a0203);
    border-top: 1px solid rgba(255, 190, 70, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .3s, transform .3s var(--ease), visibility .3s;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__link { width: 100%; padding: 12px 16px; font-size: 15px; border-radius: 10px; justify-content: space-between; }
  .nav__submenu {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
    margin-top: 4px;
    max-height: 0;
    padding: 0 8px;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-color: transparent;
    background: transparent;
    transition: max-height .35s var(--ease), padding .35s;
  }
  .nav__dropdown.is-open .nav__submenu { max-height: 240px; padding: 8px; border-color: var(--line-red); background: var(--grad-card); }
  .nav__cta-mobile { display: inline-flex; align-self: center; }

  .hero { padding-block: 40px 56px; }
  .hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__content { max-width: 680px; margin-inline: auto; text-align: center; }
  .hero__text { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__art { max-width: 620px; margin-inline: auto; }
  .hero__bg {
    background:
      linear-gradient(180deg, rgba(14, 2, 4, .85) 0%, rgba(40, 4, 8, .6) 50%, var(--bg) 100%),
      url("../assets/background.webp") 65% 40% / cover no-repeat;
  }

  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .promo__grid { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }

  .footer__top { flex-direction: column; text-align: center; }
  .footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 700px) {
  body { font-size: 14px; }
  .container { padding-inline: 16px; }
  .section { padding-block: 44px; }
  .section-head { margin-bottom: 26px; }

  .ticker { --ticker-h: 36px; }
  .ticker__live { padding: 0 16px 0 12px; font-size: 12px; }
  .ticker__track li { font-size: 12.5px; padding-right: 32px; }

  .logo__top { font-size: 19px; }
  .logo__bottom { font-size: 22px; }

  .hero { padding-block: 30px 44px; }
  .hero__title { margin: 16px 0 12px; }
  .hero__actions { gap: 12px; }
  .hero__actions .btn { flex: 1 1 160px; padding-inline: 18px; }
  .trust-bar { gap: 6px 14px; padding: 8px 16px; border-radius: 16px; margin-top: -6px; }
  .trust-bar li { font-size: 12px; }
  .trust-bar__ic { width: 22px; height: 22px; }
  .float--chip { width: 40px; height: 40px; }
  .float--coin { width: 28px; height: 28px; }
  .f2 { left: -2%; }
  .f4 { right: 0; }

  .card-grid { grid-template-columns: 1fr; gap: 14px; }
  .info-card, .info-card--lg { padding: 18px 16px; gap: 16px; min-height: 0; }
  .icon-ring, .icon-ring--lg { width: 54px; height: 54px; }
  .icon-ring svg, .icon-ring--lg svg { width: 26px; height: 26px; }

  .faq__q { padding: 11px 14px 11px 10px; font-size: 14px; gap: 12px; }
  .faq__a p { padding: 0 16px 14px 48px; }

  .deco-chip { width: 72px; height: 72px; }
  .deco-chip--r { right: -34px; }
  .deco-chip--l { left: -34px; }
  .deco-chip--footer { display: none; }

  /* tall stacked sections: pin the artwork to the top instead of stretching it */
  .section--intro {
    background:
      linear-gradient(180deg, var(--bg) 0, rgba(22, 3, 6, .5) 90px, rgba(22, 3, 6, .78) 380px, #1a0407 600px),
      url("../assets/second%20background.webp") center top / auto 600px no-repeat #1a0407;
  }
  .section--games {
    background:
      linear-gradient(180deg, #150305 0, rgba(24, 4, 7, .5) 90px, rgba(24, 4, 7, .76) 380px, #1b0508 600px),
      url("../assets/second%20background.webp") center top / auto 600px no-repeat #1b0508;
  }

  .wave-band { height: 100px; background-size: 1100px auto; }

  .promo-panel { min-height: 0; }
  .promo-panel--info { flex-direction: column; text-align: center; }
  .promo-panel--info .promo-panel__model { order: 2; align-self: center; width: 62%; max-width: 230px; margin: 0; }
  .promo-panel__body { padding: 26px 20px 4px; }
  .promo-panel--bonus { min-height: 330px; align-items: flex-start; }
  .promo-panel__offer { width: 56%; padding: 70px 0 20px 16px; gap: 14px; }
  .promo-panel__model--right { right: -70px; width: 82%; }
  .promo-panel__logo { top: 14px; right: auto; left: 18px; }
  .promo-panel__logo .logo__top { font-size: 17px; }
  .promo-panel__logo .logo__bottom { font-size: 20px; }
  .speech p { font-size: 12.5px; }
  .speech p span { font-size: 15px; }
  .bonus-box__amount { font-size: 32px; }

  .video-grid { grid-template-columns: 1fr; gap: 18px; }

  .footer__nav { gap: 6px 18px; }
}

@media (max-width: 380px) {
  .promo-panel__offer { width: 62%; }
  .promo-panel__model--right { right: -90px; }
  .hero__actions .btn { flex-basis: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .ticker__track { animation: none; }
}
