/* ============================================================
   Lucky Hand Poker — Style
   Luxury dark theme · Gold + Emerald · RTL Hebrew
   ============================================================ */

:root {
  --bg: #08090b;
  --bg-2: #0d0f13;
  --surface: #14171d;
  --surface-2: #191d25;
  --border: #2a2f3a;
  --border-soft: #20242d;

  --gold: #D4AF37;
  --gold-light: #F2D984;
  --gold-dark: #A8862A;
  --gold-grad: linear-gradient(135deg, #F2D984 0%, #D4AF37 45%, #A8862A 100%);

  --green: #2ECC71;
  --green-deep: #1E8449;
  --green-glow: rgba(46, 204, 113, .35);
  --wa: #25D366;

  --text: #F6F7F4;
  --text-soft: #C7CCD6;
  --muted: #888F9C;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -20px rgba(0,0,0,.7);
  --shadow-gold: 0 14px 40px -12px rgba(212,175,55,.45);
  --maxw: 1180px;
  --header-h: 74px;

  --font: "Heebo", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-soft);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 17px;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(46,204,113,.10), transparent 60%),
    radial-gradient(1000px 500px at 10% 0%, rgba(212,175,55,.10), transparent 55%);
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--text); line-height: 1.25; font-weight: 800; }
section { padding: 84px 0; position: relative; }
.container { width: 92%; max-width: var(--maxw); margin-inline: auto; }

/* ---------- Helpers ---------- */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.green-text { color: var(--green); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold);
  padding: 7px 16px; border: 1px solid rgba(212,175,55,.35);
  border-radius: 999px; background: rgba(212,175,55,.07);
  margin-bottom: 18px;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(1.7rem, 4.2vw, 2.7rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 800; font-size: 1.02rem;
  padding: 15px 30px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 20px; height: 20px; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold-grad); color: #1a1407; box-shadow: var(--shadow-gold); }
.btn-gold:hover { box-shadow: 0 18px 48px -10px rgba(212,175,55,.6); }
.btn-wa { background: var(--wa); color: #07321b; box-shadow: 0 14px 40px -12px var(--green-glow); }
.btn-wa:hover { box-shadow: 0 18px 46px -10px var(--green-glow); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-lg { padding: 18px 38px; font-size: 1.12rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(8,9,11,.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: background .3s;
}
.site-header.scrolled { background: rgba(8,9,11,.92); }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 92%; max-width: var(--maxw); margin-inline: auto; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo { width: 44px; height: 44px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text b { font-size: 1.16rem; color: var(--text); font-weight: 900; letter-spacing: .2px; }
.brand-text span { font-size: .72rem; color: var(--gold); letter-spacing: .08em; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--text-soft); font-weight: 600; font-size: .98rem; transition: color .2s; }
.nav a:hover { color: var(--gold-light); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-weight: 700; }
.header-phone svg { width: 18px; height: 18px; color: var(--green); }
.menu-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 10px; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 4px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(50px, 9vw, 96px) 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(720px 360px at 50% -5%, rgba(46,204,113,.18), transparent 65%),
    radial-gradient(900px 500px at 50% 120%, rgba(212,175,55,.10), transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 3.7rem); font-weight: 900; line-height: 1.12; margin-bottom: 20px; }
.hero p.lead { font-size: clamp(1.05rem, 2.4vw, 1.28rem); color: var(--text-soft); margin-bottom: 30px; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; color: var(--muted); font-size: .95rem; font-weight: 600; }
.hero-meta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); display: inline-block; margin-inline-end: 7px; }
.hero-meta span { display: inline-flex; align-items: center; }
.club-chip {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 4px;
  background: rgba(212,175,55,.10); border: 1px solid rgba(212,175,55,.3);
  color: var(--gold-light); font-weight: 800; padding: 8px 16px; border-radius: 999px; font-size: .95rem;
}

/* Hero visual / emblem */
.hero-emblem { position: relative; display: grid; place-items: center; }
.emblem-ring {
  width: min(420px, 86vw); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #1c2129, #0c0e12 70%);
  border: 1px solid rgba(212,175,55,.25);
  box-shadow: 0 0 0 10px rgba(212,175,55,.04), var(--shadow), 0 0 80px -10px var(--green-glow);
  display: grid; place-items: center; position: relative;
  animation: floaty 6s ease-in-out infinite;
}
.emblem-ring .logo-xl { width: 64%; height: 64%; }
.emblem-badge {
  position: absolute; background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--text); font-size: .9rem;
}
.emblem-badge b { color: var(--gold); font-size: 1.15rem; }
.emblem-badge.b1 { top: 6%; inset-inline-start: -6%; }
.emblem-badge.b2 { bottom: 12%; inset-inline-end: -8%; }
.emblem-badge .ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: rgba(46,204,113,.15); color: var(--green); }
.emblem-badge.b1 .ic { background: rgba(212,175,55,.15); color: var(--gold); }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- Trust strip ---------- */
.trust { padding: 0 0 18px; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.trust-item { text-align: center; padding: 6px; border-inline-start: 1px solid var(--border-soft); }
.trust-item:first-child { border: none; }
.trust-item b { display: block; font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 900; }
.trust-item span { color: var(--muted); font-size: .92rem; font-weight: 600; }

/* ---------- Features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.feature::after {
  content: ""; position: absolute; top: 0; inset-inline-start: 0; width: 100%; height: 3px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: inline-end; transition: transform .3s;
}
.feature:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.35); box-shadow: var(--shadow); }
.feature:hover::after { transform: scaleX(1); }
.feature .icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: rgba(212,175,55,.10); border: 1px solid rgba(212,175,55,.22); color: var(--gold);
}
.feature.green .icon { background: rgba(46,204,113,.10); border-color: rgba(46,204,113,.25); color: var(--green); }
.feature .icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 1rem; }

/* ---------- Tournament banner ---------- */
.tourney {
  background:
    radial-gradient(600px 300px at 85% 50%, rgba(46,204,113,.16), transparent 60%),
    linear-gradient(135deg, #11151b, #0a0c10);
  border: 1px solid rgba(212,175,55,.25); border-radius: 24px;
  padding: clamp(30px, 5vw, 54px); display: grid; grid-template-columns: 1fr auto;
  gap: 30px; align-items: center; box-shadow: var(--shadow);
}
.tourney .prize { font-size: clamp(2.4rem, 7vw, 4rem); font-weight: 900; line-height: 1; }
.tourney h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 6px 0 12px; }
.tourney p { color: var(--text-soft); max-width: 540px; }
.tourney .free-badge {
  display: inline-block; background: var(--green); color: #062a16; font-weight: 900;
  padding: 6px 18px; border-radius: 999px; font-size: 1rem; margin-bottom: 12px;
  box-shadow: 0 0 24px -4px var(--green-glow);
}

/* ---------- Steps (deposit how-to) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 32px 26px 28px; position: relative;
}
.step .num {
  width: 46px; height: 46px; border-radius: 12px; background: var(--gold-grad); color: #1a1407;
  font-weight: 900; font-size: 1.3rem; display: grid; place-items: center; margin-bottom: 16px;
}
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .98rem; }
.deposit-note {
  margin-top: 30px; text-align: center; background: rgba(46,204,113,.06);
  border: 1px solid rgba(46,204,113,.25); border-radius: var(--radius); padding: 22px 24px;
}
.deposit-note b { color: var(--green); }

/* ---------- Payments ---------- */
.pay-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.pay {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-sm);
  padding: 20px 12px; text-align: center; transition: border-color .2s, transform .2s;
}
.pay:hover { border-color: rgba(212,175,55,.4); transform: translateY(-3px); }
.pay svg, .pay .pm-ic { height: 30px; margin: 0 auto 10px; color: var(--gold-light); }
.pay span { font-size: .86rem; color: var(--text-soft); font-weight: 600; }

/* ---------- Rakeback split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split-card {
  background: linear-gradient(160deg, #14181f, #0b0d11); border: 1px solid var(--border);
  border-radius: 24px; padding: 38px; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.split-card .big { font-size: clamp(3rem, 9vw, 5rem); font-weight: 900; line-height: 1; }
.split-card .big small { font-size: .35em; vertical-align: super; }
.split ul.checks li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--text-soft); }
.split ul.checks li svg { width: 24px; height: 24px; color: var(--green); flex: none; margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--border-soft); border-radius: var(--radius-sm); margin-bottom: 14px; background: var(--surface); overflow: hidden; }
.faq-q { width: 100%; text-align: start; background: none; border: none; color: var(--text); font-family: inherit;
  font-size: 1.1rem; font-weight: 700; padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .chev { transition: transform .3s; color: var(--gold); flex: none; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 320px at 50% -20%, rgba(212,175,55,.2), transparent 60%),
    linear-gradient(135deg, #12161c, #0a0c10);
  border: 1px solid rgba(212,175,55,.25); border-radius: 26px; text-align: center;
  padding: clamp(40px, 6vw, 64px); box-shadow: var(--shadow);
}
.cta-band h2 { font-size: clamp(1.8rem, 5vw, 2.8rem); margin-bottom: 14px; }
.cta-band p { color: var(--text-soft); max-width: 560px; margin: 0 auto 28px; font-size: 1.1rem; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border-soft); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-grid h4 { color: var(--gold-light); font-size: 1rem; margin-bottom: 16px; letter-spacing: .04em; }
.footer-grid p { color: var(--muted); font-size: .96rem; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--text-soft); transition: color .2s; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid var(--border-soft); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; color: var(--muted); font-size: .85rem; }
.disclaimer { background: rgba(255,255,255,.03); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); padding: 16px 20px; color: var(--muted); font-size: .82rem; margin-top: 20px; line-height: 1.6; }
.age-badge { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--gold); color: var(--gold); font-weight: 900; font-size: .9rem; flex: none; }

/* ---------- Floating WhatsApp ---------- */
.fab-wa {
  position: fixed; inset-block-end: 22px; inset-inline-end: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa); display: grid; place-items: center;
  box-shadow: 0 12px 30px -6px var(--green-glow); animation: pulse 2.6s infinite; transition: transform .2s;
}
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 32px; height: 32px; color: #fff; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 var(--green-glow); } 70% { box-shadow: 0 0 0 16px rgba(46,204,113,0); } 100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); } }

/* ---------- Deposit page ---------- */
.deposit-wrap { display: grid; grid-template-columns: 1fr .9fr; gap: 44px; align-items: start; }
.deposit-form-card { background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--border); border-radius: 22px; padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 22px; }
.field label { display: block; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.field label .req { color: var(--green); }
.field .hint { color: var(--muted); font-size: .86rem; margin-top: 6px; }
.field input {
  width: 100%; font-family: inherit; font-size: 1.05rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; transition: border-color .2s, box-shadow .2s;
}
.field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.18); }
.field input.invalid { border-color: #e25555; box-shadow: 0 0 0 3px rgba(226,85,85,.15); }
.amount-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.amount-chips button {
  font-family: inherit; font-weight: 800; cursor: pointer; padding: 10px 18px; border-radius: 999px;
  background: rgba(212,175,55,.08); border: 1px solid rgba(212,175,55,.3); color: var(--gold-light); transition: .2s;
}
.amount-chips button:hover, .amount-chips button.active { background: var(--gold-grad); color: #1a1407; border-color: transparent; }
.secure-row { display: flex; align-items: center; gap: 10px; color: var(--green); font-weight: 700; font-size: .92rem; margin-top: 18px; justify-content: center; }
.secure-row svg { width: 18px; height: 18px; }
.deposit-side .step { margin-bottom: 16px; }
.alt-pay { margin-top: 24px; background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 24px; text-align: center; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-inline: auto; }
  .hero-cta, .hero-meta { justify-content: center; }
  .hero-emblem { order: -1; margin-bottom: 12px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .split, .deposit-wrap { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: repeat(3, 1fr); }
  .tourney { grid-template-columns: 1fr; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav, .header-phone { display: none; }
  .nav.open {
    display: flex; position: absolute; top: var(--header-h); inset-inline: 0; flex-direction: column;
    background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 18px 24px; gap: 16px;
  }
  .menu-toggle { display: block; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(odd) { border: none; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .emblem-badge.b1 { inset-inline-start: 0; } .emblem-badge.b2 { inset-inline-end: 0; }
  .btn { width: 100%; }
  .hero-cta { flex-direction: column; }
}

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