/* ============================================================
   ניב — הסוכן הרשמי מבית JVCbet
   Palette: ink #0A0910 · plum #180C2A · magenta #F20DD9 · ivory #F5F1FA
   Type: Rubik (display) · Heebo (body)
   ============================================================ */

:root {
  --ink: #0A0910;
  --ink-2: #100D19;
  --plum: #180C2A;
  --plum-2: #22113A;
  --brand: #F20DD9;
  --brand-hi: #FF63EE;
  --brand-deep: #A80896;
  --ivory: #F5F1FA;
  --muted: #A79FB8;
  --wa: #25D366;
  --wa-deep: #128C4A;
  --line: rgba(242, 13, 217, 0.16);
  --line-soft: rgba(245, 241, 250, 0.08);
  --radius: 18px;
  --font-display: "Rubik", "Heebo", sans-serif;
  --font-body: "Heebo", "Arial Hebrew", sans-serif;
  --shadow-card: 0 24px 60px -24px rgba(0, 0, 0, 0.85);
  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* film grain — kills the flat "rendered" look */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

/* ---------- Typography ---------- */

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.25; }

h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 900; letter-spacing: -0.5px; }
h1 em {
  font-style: normal;
  background: linear-gradient(100deg, #A80896 5%, #FF63EE 30%, #FFD1F8 48%, #FF63EE 62%, #A80896 95%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: foil 6s ease-in-out infinite;
}
@keyframes foil {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow--brand { color: var(--brand); }
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.06); }
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-sub { color: var(--muted); margin-top: 14px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 21px; height: 21px; flex: none; }
.btn:active { transform: scale(0.97); }

.btn--wa {
  background: linear-gradient(135deg, #2BE070, var(--wa-deep));
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.45);
}
.btn--wa:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(37, 211, 102, 0.6); }

.btn--brand {
  background: linear-gradient(135deg, var(--brand-hi), var(--brand-deep));
  color: #14100A;
  box-shadow: 0 12px 32px -12px rgba(242, 13, 217, 0.55);
}
.btn--brand:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -14px rgba(242, 13, 217, 0.7); }

.btn--ghost {
  border-color: var(--line);
  color: var(--ivory);
  background: rgba(245, 241, 250, 0.03);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-hi); }

.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--xl { padding: 19px 44px; font-size: 1.15rem; }

/* ---------- Ribbon ---------- */

.ribbon {
  background: linear-gradient(90deg, var(--brand-deep), var(--brand), var(--brand-deep));
  color: #171205;
  font-size: 0.92rem;
  position: relative;
  z-index: 60;
}
.ribbon__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 0;
  font-weight: 500;
}
.ribbon strong { font-weight: 700; }
.ribbon__spark { font-size: 0.75rem; }
.ribbon__link {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 9, 16, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
}

.brand { display: flex; align-items: center; gap: 12px; color: var(--brand); }
.brand__mark { width: 42px; height: 42px; }
.brand__logo { width: auto; height: 34px; filter: drop-shadow(0 0 14px rgba(242, 13, 217, 0.45)); }
.brand--footer .brand__logo { height: 30px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__text strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--ivory);
}
.brand__text small {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--brand);
  font-weight: 500;
}

.nav__links {
  display: flex;
  gap: 26px;
  margin-inline-start: auto;
  font-size: 0.95rem;
  font-weight: 400;
}
.nav__links a { color: var(--muted); transition: color 0.2s; position: relative; }
.nav__links a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -6px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav__links a:hover { color: var(--ivory); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links .nav__hot { color: var(--brand-hi); font-weight: 500; }

.nav__cta { padding: 10px 20px; font-size: 0.92rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
  cursor: pointer;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--ivory);
  transition: transform 0.25s, opacity 0.25s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 24px;
  border-top: 1px solid var(--line-soft);
}
.nav__mobile a {
  padding: 12px 4px;
  color: var(--ivory);
  border-bottom: 1px solid var(--line-soft);
  font-weight: 400;
}
.nav__mobile .btn { margin-top: 16px; border-bottom: 0; justify-content: center; }
.nav.menu-open .nav__mobile { display: flex; }

/* ---------- Cinematic FX ---------- */

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 2px;
  z-index: 120;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand-hi));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.1s linear;
}

.fx-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero__spot {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(460px 460px at var(--mx, 25%) var(--my, 35%), rgba(255, 99, 238, 0.11), transparent 62%);
}

/* intro orchestration */
.h1-mask { display: block; overflow: hidden; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.h1-line {
  display: block;
  transform: translateY(115%);
  animation: lineRise 1s cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}
.intro-l1 { animation-delay: 0.25s; }
.intro-l2 { animation-delay: 0.42s; }
@keyframes lineRise { to { transform: translateY(0); } }

.intro { opacity: 0; animation: introUp 0.9s cubic-bezier(0.2, 0.7, 0.25, 1) forwards; }
.intro-1 { animation-delay: 0.1s; }
.intro-2 { animation-delay: 0.75s; }
.intro-3 { animation-delay: 0.95s; }
.intro-4 { animation-delay: 1.15s; }
@keyframes introUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* deal-in of the 777 hand */
@keyframes dealIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-120%) rotate(8deg) scale(0.85); }
}
@keyframes chipDrop {
  from { opacity: 0; transform: translateY(-90px) rotate(140deg) scale(0.6); }
}

/* gold button sheen */
.btn--brand, .btn--wa { position: relative; overflow: hidden; }
.btn--brand::before, .btn--wa::before {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.28) 50%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.btn--brand:hover::before, .btn--wa:hover::before { transform: translateX(120%); }

/* eyebrow ornament rules */
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 13, 217, 0.65));
}
.section-head .eyebrow::after {
  background: linear-gradient(90deg, rgba(242, 13, 217, 0.65), transparent);
}

/* image cinematic reveal */
.game img { transform: scale(1.14); transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.7s ease; }
.game.is-visible img { transform: scale(1); }
.game:hover img { transform: scale(1.07); }

/* ---------- Hero ---------- */

.hero { position: relative; overflow: hidden; }

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(260deg, rgba(10, 9, 16, 0.97) 30%, rgba(10, 9, 16, 0.8) 58%, rgba(24, 12, 42, 0.62)),
    url("../img/hero-bg.jpg") center 30%/cover no-repeat;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1000px 500px at 85% 0%, rgba(242, 13, 217, 0.14), transparent 60%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  padding: 96px 0 110px;
}

.hero__copy .eyebrow { margin-bottom: 20px; }
.hero__lead {
  margin-top: 22px;
  max-width: 520px;
  color: rgba(245, 241, 250, 0.82);
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  list-style: none;
}
.hero__chips li {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brand-hi);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 6px 16px;
  background: rgba(242, 13, 217, 0.06);
}

/* JVC tile fan — signature element (real JVCbet game art, 3D tilt) */

.hand {
  position: relative;
  z-index: 2;
  width: min(520px, 92vw);
  height: 390px;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}
.hand::before {
  content: "";
  position: absolute;
  inset: 12% 2%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(242, 13, 217, 0.28), rgba(109, 40, 217, 0.18) 45%, transparent 72%);
  filter: blur(14px);
}

.pcard {
  position: absolute;
  bottom: 40px;
  left: 50%;
  width: 56%;
  aspect-ratio: 516 / 302;
  border-radius: 18px;
  overflow: hidden;
  direction: ltr;
  background: var(--plum);
  border: 1px solid rgba(242, 13, 217, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 30px 60px -22px rgba(0, 0, 0, 0.9),
    0 0 50px -18px rgba(242, 13, 217, 0.5);
  transform-origin: 50% 130%;
}
.pcard img { width: 100%; height: 100%; object-fit: cover; }
.pcard::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 9, 16, 0.55));
  pointer-events: none;
}
.pcard--1 { transform: translateX(-72%) rotate(-16deg) translateY(2%); z-index: 1; animation: dealIn 0.75s cubic-bezier(0.2, 0.8, 0.25, 1) 0.45s backwards; }
.pcard--3 { transform: translateX(-28%) rotate(16deg) translateY(2%); z-index: 2; animation: dealIn 0.75s cubic-bezier(0.2, 0.8, 0.25, 1) 0.62s backwards; }
.pcard--2 { transform: translateX(-50%) translateY(-22%); z-index: 3; animation: dealIn 0.75s cubic-bezier(0.2, 0.8, 0.25, 1) 0.8s backwards; }

.pchip {
  position: absolute;
  bottom: -6px;
  inset-inline-end: 0;
  z-index: 4;
  width: 118px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  color: #FFFFFF;
  background: radial-gradient(circle at 34% 28%, #FF7DF1, #F20DD9 50%, #7A0670);
  border: 7px dashed rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 0 0 6px rgba(20, 8, 24, 0.22),
    0 24px 50px -16px rgba(0, 0, 0, 0.85),
    0 0 46px -8px rgba(242, 13, 217, 0.75);
  animation:
    chipDrop 0.9s cubic-bezier(0.2, 0.9, 0.3, 1.35) 1.1s backwards,
    float 7s ease-in-out 2.4s infinite;
}
.pchip::before {
  content: "";
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  border: 1.6px solid rgba(255, 255, 255, 0.5);
}
.pchip small { font-size: 0.58rem; letter-spacing: 0.26em; font-weight: 700; }
.pchip b { font-family: var(--font-display); font-weight: 900; font-size: 1.55rem; line-height: 1; letter-spacing: -0.02em; }
.pchip b span { color: #FFD1F8; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(10deg); }
}

/* Ticker */

.ticker {
  position: relative;
  border-block: 1px solid var(--line);
  background: rgba(242, 13, 217, 0.05);
  overflow: hidden;
  padding: 13px 0;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: ticker 36s linear infinite;
}
.ticker__track span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  color: rgba(245, 241, 250, 0.75);
  white-space: nowrap;
}
.ticker__track i { font-style: normal; color: var(--brand); font-size: 0.8rem; }
@keyframes ticker { to { transform: translateX(50%); } }

/* ---------- Stats ledger ---------- */

.stats { padding: 72px 0 8px; }
.stats__ledger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 44px;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(600px 120px at 50% 0%, rgba(242, 13, 217, 0.06), transparent 70%);
}
.stats__suit {
  font-style: normal;
  color: rgba(242, 13, 217, 0.4);
  font-size: 0.85rem;
  flex: none;
}
.stat { text-align: center; flex: 1; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.3rem;
  color: var(--brand-hi);
  line-height: 1.1;
  direction: ltr;
}
.stat span { font-size: 0.9rem; color: var(--muted); }

/* ---------- Bonus ---------- */

.bonus { padding: 90px 0; }
.bonus__card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
  border-radius: 28px;
  padding: 56px 60px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 400px at 90% 110%, rgba(242, 13, 217, 0.16), transparent 60%),
    linear-gradient(135deg, var(--plum-2), var(--plum) 60%, #081511);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.bonus__card::before {
  content: "♠";
  position: absolute;
  inset-inline-end: -40px;
  top: -70px;
  font-size: 260px;
  color: rgba(242, 13, 217, 0.05);
  line-height: 1;
  pointer-events: none;
}

.bonus__content h2 { margin: 16px 0 14px; }
.bonus__pct { color: var(--brand-hi); }
.bonus__text { color: rgba(245, 241, 250, 0.8); max-width: 480px; }
.bonus__fine { margin-top: 16px; font-size: 0.8rem; color: var(--muted); }

.countdown {
  display: flex;
  gap: 14px;
  margin: 28px 0 30px;
}
.countdown__unit {
  min-width: 76px;
  text-align: center;
  padding: 14px 10px 10px;
  border-radius: 14px;
  background: rgba(10, 9, 16, 0.55);
  border: 1px solid var(--line);
}
.countdown__unit strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--ivory);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.countdown__unit span { font-size: 0.75rem; color: var(--muted); }

.bonus__visual { display: flex; justify-content: center; }
.bonus__ring {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 2px solid rgba(242, 13, 217, 0.5);
  outline: 10px solid rgba(242, 13, 217, 0.07);
  outline-offset: 10px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 99, 238, 0.16), transparent 55%),
    #14091F;
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.9);
  animation: float 8s ease-in-out infinite;
}
.bonus__big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4rem;
  color: var(--brand-hi);
  line-height: 1;
  direction: ltr;
}
.bonus__small { font-size: 0.95rem; color: var(--muted); }

/* ---------- How ---------- */

.how { padding: 40px 0 90px; }
.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 34px 26px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(245, 241, 250, 0.03), transparent);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
/* connecting thread between the step medallions */
.step::before {
  content: "";
  position: absolute;
  top: 57px;
  inset-inline-start: -20px;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-deep), transparent);
  opacity: 0.55;
}
.step:first-child::before { display: none; }
.step:hover { transform: translateY(-6px); border-color: var(--line); }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: #14100A;
  background: linear-gradient(135deg, var(--brand-hi), var(--brand-deep));
  margin-bottom: 18px;
  box-shadow: 0 10px 24px -10px rgba(242, 13, 217, 0.6);
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.95rem; color: var(--muted); }

/* ---------- Games ---------- */

.games { padding: 90px 0; background: linear-gradient(180deg, transparent, rgba(24, 12, 42, 0.55) 18%, rgba(24, 12, 42, 0.55) 82%, transparent); }

.games__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.game {
  position: relative;
  grid-column: span 2;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--ink-2);
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.game--wide { grid-column: span 3; }
.game img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: transform 0.7s ease;
  filter: saturate(0.85) brightness(0.75);
}
.game:hover img { transform: scale(1.06); }
.game::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 9, 16, 0.1) 25%, rgba(10, 9, 16, 0.92) 78%);
}
.game__body { padding: 28px; }
.game__body h3 { font-size: 1.5rem; color: var(--ivory); }
.game__body p { margin-top: 8px; font-size: 0.95rem; color: rgba(245, 241, 250, 0.78); max-width: 420px; }
.game__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  list-style: none;
}
.game__tags li {
  font-size: 0.76rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  color: var(--brand-hi);
  border: 1px solid var(--line);
  background: rgba(10, 9, 16, 0.5);
}

/* ---------- Payments ---------- */

.pay { padding: 90px 0; }
.pay__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pay__card {
  padding: 34px 26px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(245, 241, 250, 0.03), transparent);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pay__card:hover { transform: translateY(-6px); border-color: var(--line); }
.pay__card > svg { width: 46px; height: 46px; color: var(--brand); margin: 0 auto 18px; }
.pay__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  height: 46px;
}
.pay__logos svg {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.7);
}
.pay__logos--coins svg { border-radius: 50%; }
.pay__card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.pay__card p { font-size: 0.92rem; color: var(--muted); }

.pay__note {
  text-align: center;
  margin-top: 36px;
  color: var(--muted);
  font-size: 0.98rem;
}
.pay__note strong { color: var(--brand-hi); font-weight: 600; }

/* ---------- Why ---------- */

.why { padding: 90px 0; background: linear-gradient(180deg, transparent, rgba(12, 15, 18, 0.9) 20%, rgba(12, 15, 18, 0.9) 80%, transparent); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why__card {
  padding: 34px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: rgba(10, 9, 16, 0.55);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.why__card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  background: rgba(24, 12, 42, 0.55);
}
.why__card svg { width: 42px; height: 42px; color: var(--brand); margin-bottom: 18px; }
.why__card h3 { margin-bottom: 10px; }
.why__card p { font-size: 0.95rem; color: var(--muted); }

/* ---------- WhatsApp chat testimonials ---------- */

.chats { padding: 90px 0; }
.chats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.chat {
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  background: #0D1117;
  box-shadow: var(--shadow-card);
}
.chat__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  background: #131A20;
  border-bottom: 1px solid rgba(245, 241, 250, 0.05);
}
.chat__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-hi), var(--brand-deep));
  color: #14100A;
  font-weight: 700;
  font-size: 1.05rem;
}
.chat__who { line-height: 1.25; }
.chat__who strong { display: block; font-weight: 600; font-size: 0.98rem; }
.chat__who small { color: #4FBF6B; font-size: 0.74rem; }
.chat__time { margin-inline-start: auto; color: var(--muted); font-size: 0.75rem; }
.chat__body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 20px 16px 16px;
  min-height: 190px;
  background:
    radial-gradient(400px 260px at 80% 0%, rgba(242, 13, 217, 0.04), transparent 60%),
    #0D1117;
}
.chat__msg {
  position: relative;
  max-width: 84%;
  padding: 9px 13px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.chat__msg span {
  position: absolute;
  bottom: 5px;
  inset-inline-end: 11px;
  font-size: 0.62rem;
  color: rgba(245, 241, 250, 0.45);
  direction: ltr;
}
.chat__msg--in {
  align-self: flex-start;
  background: #1C242E;
  border-start-start-radius: 3px;
  color: rgba(245, 241, 250, 0.94);
}
.chat__msg--out {
  align-self: flex-end;
  background: #14432E;
  border-start-end-radius: 3px;
  color: #E9F5EC;
}
.chat__msg--out span { color: rgba(233, 245, 236, 0.55); }
.chat__note {
  padding: 11px 18px;
  border-top: 1px solid rgba(245, 241, 250, 0.05);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--brand);
}

/* ---------- Arcade ---------- */

.arcade {
  padding: 90px 0;
  background: linear-gradient(180deg, transparent, rgba(24, 12, 42, 0.6) 18%, rgba(24, 12, 42, 0.6) 82%, transparent);
}
.arcade__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.arcade__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(300px 170px at 85% -10%, rgba(242, 13, 217, 0.1), transparent 60%),
    linear-gradient(160deg, #101913, #0A0F0C);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.arcade__card::after {
  content: "";
  position: absolute;
  inset: -80% -40%;
  background: linear-gradient(115deg, transparent 44%, rgba(255, 99, 238, 0.09) 50%, transparent 56%);
  transform: translateX(-80%);
  transition: transform 0.8s ease;
  pointer-events: none;
}
.arcade__card:hover {
  transform: translateY(-7px);
  border-color: rgba(242, 13, 217, 0.55);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.9), 0 0 40px -18px rgba(242, 13, 217, 0.4);
}
.arcade__card:hover::after { transform: translateX(80%); }
.arcade__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 20px;
}
.arcade__tag--hot {
  color: #14100A;
  background: linear-gradient(135deg, var(--brand-hi), var(--brand));
  border-color: transparent;
}
.arcade__card svg { width: 52px; height: 52px; color: var(--brand); margin-bottom: 18px; }
.arcade__card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.arcade__card p { font-size: 0.92rem; color: var(--muted); }
.arcade__go {
  margin-top: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-hi);
  border-bottom: 1px solid rgba(255, 99, 238, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.arcade__card:hover .arcade__go { color: #FFD1F8; }

/* ---------- FAQ ---------- */

.faq { padding: 90px 0; }
.faq__inner { max-width: 820px; }
.faq__list { display: flex; flex-direction: column; gap: 14px; }

.faq__item {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(245, 241, 250, 0.025), transparent);
  transition: border-color 0.25s ease;
}
.faq__item[open] { border-color: var(--line); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 26px;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.02rem;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  position: relative;
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--brand);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 1.6px;
  background: var(--brand);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__item p {
  padding: 0 26px 22px;
  color: var(--muted);
  font-size: 0.97rem;
}

/* ---------- Final CTA ---------- */

.cta-final {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  text-align: center;
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 9, 16, 0.94), rgba(10, 9, 16, 0.72) 50%, rgba(10, 9, 16, 0.96)),
    url("../img/bonus-bg.jpg") center 35%/cover no-repeat;
}
.cta-final__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 340px at 50% 100%, rgba(242, 13, 217, 0.14), transparent 65%);
}
.cta-final__inner { position: relative; z-index: 2; max-width: 620px; }
.cta-final h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.cta-final p { margin: 18px 0 34px; color: rgba(245, 241, 250, 0.8); font-size: 1.1rem; }
.cta-final__hint { font-size: 0.85rem !important; color: var(--muted) !important; margin: 18px 0 0 !important; }

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--line-soft);
  background: #050607;
  padding: 64px 0 34px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.7fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-soft);
}
.footer__brand p { margin-top: 18px; font-size: 0.92rem; color: var(--muted); max-width: 380px; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--brand);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { color: var(--muted); font-size: 0.95rem; transition: color 0.2s; width: fit-content; }
.footer__nav a:hover { color: var(--brand-hi); }
.footer__contact a { color: var(--ivory); font-weight: 500; }
.footer__contact a:hover { color: var(--wa); }
.footer__hours { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }
.footer__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.95rem;
}
.footer__legal { padding-top: 28px; }
.footer__legal p { font-size: 0.8rem; color: rgba(152, 160, 153, 0.7); max-width: 900px; margin-bottom: 8px; }
.footer__copy { margin-top: 16px; color: var(--muted) !important; }

/* ---------- Floating WhatsApp ---------- */

.wa-float {
  position: fixed;
  bottom: 26px;
  inset-inline-start: 26px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 100px;
  background: linear-gradient(135deg, #2BE070, var(--wa-deep));
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 16px 40px -10px rgba(37, 211, 102, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 22px 50px -12px rgba(37, 211, 102, 0.7); }
.wa-float svg { width: 24px; height: 24px; }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Focus & motion ---------- */

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--brand-hi);
  outline-offset: 3px;
  border-radius: 6px;
}

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

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .hero__inner { grid-template-columns: 1fr; padding: 72px 0 90px; }
  .hero__card { order: -1; margin-bottom: 8px; }
  .stats__ledger { flex-wrap: wrap; padding: 28px 22px; }
  .stats__suit { display: none; }
  .stat { flex: 1 1 40%; }
  .how__steps { grid-template-columns: repeat(2, 1fr); }
  .step::before { display: none; }
  .pay__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .chats__grid { grid-template-columns: 1fr; }
  .arcade__grid { grid-template-columns: repeat(2, 1fr); }
  .games__grid { grid-template-columns: 1fr 1fr; }
  .game, .game--wide { grid-column: span 1; min-height: 320px; }
  .bonus__card { grid-template-columns: 1fr; padding: 44px 36px; }
  .bonus__visual { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 40px); }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; margin-inline-start: auto; }
  .ribbon__inner { font-size: 0.8rem; text-align: center; }
  .hero__actions .btn { width: 100%; }
  .how__steps { grid-template-columns: 1fr; }
  .pay__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .games__grid { grid-template-columns: 1fr; }
  .arcade__grid { grid-template-columns: 1fr; }
  .hand { height: 300px; }
  .pchip { width: 92px; }
  .pchip b { font-size: 1.5rem; }
  .countdown { flex-wrap: wrap; }
  .countdown__unit { min-width: calc(50% - 7px); }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .wa-float span { display: none; }
  .wa-float { padding: 15px; }
}


/* ---------- JVCbet additions ---------- */

.pay__logos img { height: 46px; width: auto; border-radius: 12px; box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.7); }
.pay__card--cta { display: flex; flex-direction: column; align-items: center; justify-content: center; border-color: var(--line); background: linear-gradient(180deg, rgba(242, 13, 217, 0.08), rgba(242, 13, 217, 0.02)); }
.pay__card--cta .btn { margin-top: 18px; }

.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 22px;
}
.offer {
  position: relative;
  padding: 30px 26px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(245, 241, 250, 0.03), transparent);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.offer::before {
  content: "";
  position: absolute;
  inset: auto -30% -60% auto;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(242, 13, 217, 0.22), transparent 70%);
  pointer-events: none;
}
.offer:hover { transform: translateY(-6px); border-color: var(--line); }
.offer__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1;
  color: var(--brand-hi);
  letter-spacing: -0.02em;
  direction: ltr;
  text-align: right;
}
.offer h3 { margin-top: 12px; font-size: 1.2rem; }
.offer p { margin-top: 8px; font-size: 0.94rem; color: var(--muted); }

.tiles { margin-top: 26px; }
.tiles__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.tiles__head h3 { font-size: 1.2rem; }
.tiles__head a { color: var(--brand-hi); font-size: 0.92rem; font-weight: 500; }
.tiles__row {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 12px;
}
.tiles__row img {
  width: 100%;
  aspect-ratio: 254 / 171;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.tiles__row img:hover { transform: translateY(-6px) scale(1.03); border-color: var(--line); box-shadow: 0 18px 34px -16px rgba(242, 13, 217, 0.5); }

.footer__contact a { display: block; }

@media (max-width: 1024px) {
  .tiles__row { grid-template-columns: repeat(4, 1fr); }
  .offers { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .tiles__row { grid-template-columns: repeat(2, 1fr); }
  .brand__logo { height: 26px; }
  .brand__text small { display: none; }
}

/* Telegram */
.btn--tg { background: rgba(38, 165, 228, 0.12); color: #7CCFF5; border: 1px solid rgba(38, 165, 228, 0.45); }
.btn--tg:hover { background: rgba(38, 165, 228, 0.22); border-color: #26A5E4; color: #FFFFFF; transform: translateY(-2px); }
.btn--tg svg { width: 20px; height: 20px; }
.cta-final__tg { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: #7CCFF5; font-weight: 500; }
.cta-final__tg svg { width: 18px; height: 18px; }
.cta-final__tg:hover { color: #FFFFFF; }

.nav__site { padding: 10px 18px; font-size: 0.9rem; }
@media (max-width: 1024px) { .nav__site { display: none; } }
