/* ============================================================
   Mpo1221 Theme — style.css
   Tema: Casino Premium (Merah / Emas / Hijau / Biru / Hitam)
   Struktur kelas mengikuti konvensi tema WordPress
   ============================================================ */

:root {
  --black: #0a0d13;
  --black-2: #0e131c;
  --panel: #141b28;
  --panel-2: #1b2436;
  --line: #26324a;
  --red: #e0233a;
  --red-dark: #b0162b;
  --gold: #f6c445;
  --gold-dark: #d9a416;
  --green: #23a45d;
  --green-dark: #17804a;
  --blue: #3b82f6;
  --blue-dark: #2563eb;
  --white: #ffffff;
  --text: #e9edf5;
  --muted: #9fabc0;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  /* ruang untuk float CTA agar konten terakhir tidak tertutup, tanpa menambah blok kosong */
  padding-bottom: 72px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--gold); }
ul, ol { padding-left: 1.3rem; }
p { margin-bottom: 1rem; overflow-wrap: break-word; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--gold);
  color: #111; padding: 8px 16px; font-weight: 700; z-index: 999;
}
.skip-link:focus { left: 0; }

/* ---------- Topbar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  font-size: 0.78rem; color: #ffe9ec; padding: 6px 0;
}
.topbar-in { display: flex; gap: 18px; align-items: center; justify-content: center; flex-wrap: wrap; text-align: center; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar .tb-item svg { flex: 0 0 auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 120;
  background: rgba(10, 13, 19, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-in { display: flex; align-items: center; gap: 16px; padding: 12px 20px; }

.brand {
  font-size: 1.5rem; font-weight: 900; color: var(--white);
  letter-spacing: 0.5px; display: inline-flex; align-items: baseline; gap: 2px; white-space: nowrap;
}
.brand .b-red { color: var(--red); }
.brand .b-gold { color: var(--gold); }
.brand .b-dot { font-size: 0.72rem; color: var(--muted); font-weight: 600; margin-left: 4px; }

.main-nav { margin-left: auto; }
.main-nav .menu { display: flex; gap: 4px; list-style: none; padding: 0; flex-wrap: wrap; }
.main-nav .menu > li > a {
  display: block; padding: 9px 13px; border-radius: 9px;
  color: var(--text); font-weight: 600; font-size: 0.92rem; white-space: nowrap;
}
.main-nav .menu > li > a:hover { background: var(--panel-2); color: var(--gold); }
.main-nav .menu > li.current-menu-item > a { background: var(--panel-2); color: var(--gold); box-shadow: inset 0 -2px 0 var(--gold); }

.header-cta { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  background: var(--panel-2); border: 1px solid var(--line); color: var(--text);
  width: 40px; height: 40px; border-radius: 10px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.icon-btn:hover { color: var(--gold); border-color: var(--gold); }

.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 12px 26px; border-radius: 999px;
  font-weight: 800; font-size: 0.95rem; letter-spacing: 0.3px;
  border: 2px solid transparent; cursor: pointer; text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  line-height: 1.3;
}
.btn:hover { transform: translateY(-2px); color: #fff; }
.btn-red { background: linear-gradient(180deg, var(--red), var(--red-dark)); color: #fff; box-shadow: 0 6px 18px rgba(224, 35, 58, 0.35); }
.btn-gold { background: linear-gradient(180deg, var(--gold), var(--gold-dark)); color: #241a00; box-shadow: 0 6px 18px rgba(246, 196, 69, 0.3); }
.btn-green { background: linear-gradient(180deg, var(--green), var(--green-dark)); color: #fff; box-shadow: 0 6px 18px rgba(35, 164, 93, 0.3); }
.btn-blue { background: linear-gradient(180deg, var(--blue), var(--blue-dark)); color: #fff; }
.btn-outline { background: transparent; border-color: var(--line); color: var(--text); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 15px 34px; font-size: 1.05rem; }
.btn-block { display: block; width: 100%; }

/* ---------- Search overlay ---------- */
.search-overlay {
  position: fixed; inset: 0; background: rgba(6, 8, 12, 0.92);
  z-index: 300; display: none; padding: 70px 20px 30px; overflow-y: auto;
}
.search-overlay.open { display: block; }
.search-box { max-width: 680px; margin: 0 auto; }
.search-box input[type="search"] {
  width: 100%; padding: 16px 20px; font-size: 1.05rem;
  border-radius: 12px; border: 2px solid var(--gold);
  background: var(--panel); color: var(--text); outline: none; font-family: var(--font);
}
.search-hint { color: var(--muted); font-size: 0.85rem; margin-top: 10px; text-align: center; }
.search-results { max-width: 680px; margin: 20px auto 0; display: grid; gap: 12px; }
.search-result {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px;
}
.search-result a { color: var(--gold); font-weight: 700; }
.search-result p { color: var(--muted); font-size: 0.88rem; margin: 4px 0 0; }

/* ---------- Tag cloud ---------- */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tag-cloud a {
  background: var(--panel); border: 1px solid var(--line); color: var(--text);
  padding: 7px 15px; border-radius: 999px; font-size: 0.84rem; font-weight: 600;
}
.tag-cloud a:hover { border-color: var(--gold); color: var(--gold); background: var(--panel-2); }
.tag-cloud a.tag-hot { border-color: rgba(224, 35, 58, 0.55); color: #ffd7dc; background: linear-gradient(180deg, rgba(224,35,58,0.22), rgba(224,35,58,0.08)); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(246, 196, 69, 0.16), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(224, 35, 58, 0.18), transparent 60%),
    linear-gradient(180deg, #0c1019, #0a0d13);
  border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; padding: 58px 0 62px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(35, 164, 93, 0.14); border: 1px solid rgba(35, 164, 93, 0.45);
  color: #7fe0ae; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px;
  padding: 6px 14px; border-radius: 999px; text-transform: uppercase; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(1.75rem, 4vw, 2.7rem); line-height: 1.22; color: var(--white); margin-bottom: 16px; overflow-wrap: break-word; }
.hero h1 .hl-red { color: #ff5a70; }
.hero h1 .hl-gold { color: var(--gold); }
.hero-sub { color: var(--muted); font-size: 1.02rem; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 22px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px; font-size: 0.8rem; font-weight: 600;
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; color: var(--muted);
}
.hero-media { position: relative; }
.hero-media img {
  border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow);
  width: 100%; object-fit: cover; aspect-ratio: 4 / 3;
}
.hero-chip {
  position: absolute; background: var(--panel-2); border: 1px solid var(--line);
  padding: 10px 16px; border-radius: 12px; font-size: 0.8rem; font-weight: 700; box-shadow: var(--shadow);
}
.hero-chip.c1 { top: 16px; left: -8px; color: #7fe0ae; }
.hero-chip.c2 { bottom: 18px; right: -6px; color: var(--gold); }

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section-alt { background: var(--black-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.section-kicker {
  display: inline-block; font-size: 0.75rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.section-title { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--white); line-height: 1.3; overflow-wrap: break-word; }
.section-desc { color: var(--muted); margin-top: 12px; }

/* grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* card */
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: border-color 0.15s ease, transform 0.15s ease;
}
.card:hover { border-color: rgba(246, 196, 69, 0.5); transform: translateY(-3px); }
.card h3 { color: var(--white); font-size: 1.08rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.92rem; margin: 0; }
.card .icon-wrap {
  width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 1.45rem;
}
.ic-red { background: rgba(224, 35, 58, 0.15); border: 1px solid rgba(224, 35, 58, 0.4); }
.ic-gold { background: rgba(246, 196, 69, 0.13); border: 1px solid rgba(246, 196, 69, 0.4); }
.ic-green { background: rgba(35, 164, 93, 0.14); border: 1px solid rgba(35, 164, 93, 0.4); }
.ic-blue { background: rgba(59, 130, 246, 0.14); border: 1px solid rgba(59, 130, 246, 0.4); }

/* steps */
.step-card { position: relative; padding-top: 34px; overflow: hidden; }
.step-num {
  position: absolute; top: -12px; right: 10px; font-size: 4.6rem; font-weight: 900;
  color: rgba(255, 255, 255, 0.05); line-height: 1; pointer-events: none;
}
.step-tag {
  display: inline-flex; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center;
  font-weight: 900; color: #241a00; background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  margin-bottom: 14px; box-shadow: 0 6px 16px rgba(246, 196, 69, 0.3);
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(600px 260px at 15% 0%, rgba(224, 35, 58, 0.25), transparent 60%),
    radial-gradient(600px 260px at 85% 100%, rgba(246, 196, 69, 0.16), transparent 60%),
    var(--panel);
  border: 1px solid var(--line); border-radius: 20px; padding: 44px 36px;
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 26px; align-items: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.3rem, 2.6vw, 1.8rem); margin-bottom: 10px; }
.cta-band p { color: var(--muted); margin: 0; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* mobile experience */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.split-media img { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.feature-list { list-style: none; padding: 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 0.95rem; }
.feature-list .fl-ic {
  flex: 0 0 26px; width: 26px; height: 26px; border-radius: 8px; display: inline-flex;
  align-items: center; justify-content: center; background: rgba(35, 164, 93, 0.16); color: #7fe0ae; font-weight: 800; font-size: 0.85rem;
}

/* testimonials */
.testi-card { display: flex; flex-direction: column; gap: 12px; }
.testi-stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; }
.testi-text { color: var(--text); font-size: 0.93rem; font-style: italic; flex: 1; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: 0.9rem;
}
.av-red { background: var(--red); } .av-gold { background: var(--gold-dark); }
.av-green { background: var(--green); } .av-blue { background: var(--blue); }
.testi-name { color: var(--white); font-weight: 700; font-size: 0.9rem; }
.testi-role { color: var(--muted); font-size: 0.78rem; }

/* tools */
.tool-card input[type="number"], .tool-card input[type="text"],
.tool-card select, .auth-form input, .auth-form select {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--black-2); color: var(--text); font-size: 0.95rem; font-family: var(--font); outline: none;
}
.tool-card input:focus, .tool-card select:focus, .auth-form input:focus, .auth-form select:focus { border-color: var(--gold); }
.tool-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.tool-label { display: block; font-size: 0.82rem; color: var(--muted); font-weight: 600; margin-bottom: 6px; }
.tool-output {
  margin-top: 14px; background: var(--black-2); border: 1px dashed rgba(246, 196, 69, 0.45);
  border-radius: 12px; padding: 16px 18px; font-size: 0.95rem; color: var(--text);
}
.tool-output strong { color: var(--gold); }
.quiz-q { margin-bottom: 16px; }
.quiz-q p.q-title { color: var(--white); font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; }
.quiz-q label { display: block; color: var(--muted); font-size: 0.88rem; padding: 7px 10px; border-radius: 8px; cursor: pointer; }
.quiz-q label:hover { background: var(--panel-2); color: var(--text); }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
details.faq-item {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
}
details.faq-item summary {
  cursor: pointer; padding: 17px 20px; font-weight: 700; color: var(--white);
  list-style: none; display: flex; justify-content: space-between; gap: 14px; align-items: center; font-size: 0.97rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: "+"; color: var(--gold); font-size: 1.3rem; font-weight: 700; flex: 0 0 auto; }
details.faq-item[open] summary::after { content: "–"; }
details.faq-item[open] summary { border-bottom: 1px solid var(--line); }
details.faq-item .faq-body { padding: 16px 20px; color: var(--muted); font-size: 0.92rem; }
details.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* article / entry-content */
.page-hero { padding: 34px 0 8px; }
.page-hero h1 { color: var(--white); font-size: clamp(1.5rem, 3.4vw, 2.2rem); line-height: 1.28; margin-bottom: 10px; overflow-wrap: break-word; }
.page-hero .meta { color: var(--muted); font-size: 0.85rem; display: flex; gap: 16px; flex-wrap: wrap; }
.entry-thumb { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin: 22px 0; }
.entry-content { max-width: 860px; }
.entry-content h2 {
  color: var(--white); font-size: 1.32rem; margin: 34px 0 14px; padding-left: 14px;
  border-left: 4px solid var(--gold); line-height: 1.35; overflow-wrap: break-word;
}
.entry-content h3 { color: #ffd780; font-size: 1.08rem; margin: 24px 0 10px; }
.entry-content p, .entry-content li { color: #c8d1e0; font-size: 0.98rem; }
.entry-content ul, .entry-content ol { margin-bottom: 1rem; }
.entry-content strong { color: var(--white); }
.note-box {
  background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 12px; padding: 16px 20px; font-size: 0.9rem; color: #bcd3fa; margin: 18px 0;
}
.warn-box {
  background: rgba(224, 35, 58, 0.1); border: 1px solid rgba(224, 35, 58, 0.45);
  border-radius: 12px; padding: 16px 20px; font-size: 0.9rem; color: #ffd0d6; margin: 18px 0;
}
.ok-box {
  background: rgba(35, 164, 93, 0.1); border: 1px solid rgba(35, 164, 93, 0.45);
  border-radius: 12px; padding: 16px 20px; font-size: 0.9rem; color: #b9ecd0; margin: 18px 0;
}

/* table */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 18px 0; border-radius: 12px; border: 1px solid var(--line); }
.table-wrap table { width: 100%; border-collapse: collapse; min-width: 560px; background: var(--panel); font-size: 0.9rem; }
.table-wrap th { background: var(--panel-2); color: var(--gold); text-align: left; padding: 12px 16px; white-space: nowrap; }
.table-wrap td { padding: 12px 16px; border-top: 1px solid var(--line); color: #c8d1e0; }

/* breadcrumb */
.breadcrumb { font-size: 0.8rem; color: var(--muted); padding: 14px 0 0; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.breadcrumb li + li::before { content: "/"; color: var(--line); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--gold); }

/* promo cards */
.promo-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.promo-media { position: relative; }
.promo-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.promo-badge {
  position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.6px; padding: 5px 12px; border-radius: 999px;
}
.promo-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.promo-body h3 { font-size: 1.05rem; }
.promo-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.promo-meta span {
  font-size: 0.72rem; font-weight: 700; border-radius: 6px; padding: 4px 9px;
  background: var(--black-2); border: 1px solid var(--line); color: var(--muted);
}
.promo-body .btn { margin-top: auto; align-self: flex-start; }

/* auth */
.auth-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; padding: 40px 0 56px; }
.auth-card { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 34px; box-shadow: var(--shadow); }
.auth-card h1 { color: var(--white); font-size: 1.5rem; margin-bottom: 6px; }
.auth-card .auth-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
.auth-form .field { margin-bottom: 16px; }
.auth-form label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.auth-form .checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: 0.84rem; color: var(--muted); }
.auth-form .checkbox-row input { margin-top: 4px; width: 16px; height: 16px; accent-color: var(--red); flex: 0 0 auto; }
.auth-note { font-size: 0.78rem; color: var(--muted); margin-top: 14px; }
.auth-side .feature-list { margin-top: 8px; }
.auth-side img { border-radius: var(--radius); border: 1px solid var(--line); margin-bottom: 20px; }

/* footer */
.site-footer { background: #07090d; border-top: 1px solid var(--line); font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding: 46px 20px 34px; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 0.4px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.footer-col a { color: var(--muted); }
.footer-col a:hover { color: var(--gold); }
.footer-brand p { color: var(--muted); font-size: 0.86rem; margin-top: 12px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.fbadge {
  border: 1px solid var(--line); color: var(--muted); border-radius: 8px; padding: 5px 11px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.5px;
}
.fbadge.b18 { border-color: var(--red); color: #ff7d8d; }
.footer-legal { border-top: 1px solid var(--line); padding: 20px; text-align: center; color: var(--muted); font-size: 0.78rem; }
.footer-legal p { max-width: 900px; margin: 0 auto 8px; }

/* ---------- Floating CTA (slot style + coins) ---------- */
.float-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  background: linear-gradient(180deg, rgba(12, 16, 24, 0.97), rgba(7, 9, 13, 0.99));
  border-top: 2px solid var(--gold);
  box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.55);
  height: 64px; display: flex; align-items: center; justify-content: center; gap: 16px;
  pointer-events: none;
}
.float-cta > * { pointer-events: auto; }
.float-reels { display: flex; gap: 6px; }
.reel {
  width: 34px; height: 34px; border-radius: 8px; overflow: hidden; position: relative;
  background: linear-gradient(180deg, #1b2436, #101623); border: 1px solid var(--line);
}
.reel-track {
  position: absolute; left: 0; right: 0; top: 0; height: 200%;
  display: flex; flex-direction: column;
  animation: reelSpin 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.reel-track i { flex: 1; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; font-style: normal; }
.reel:nth-child(2) .reel-track { animation-delay: 0.85s; }
.reel:nth-child(3) .reel-track { animation-delay: 1.7s; }
@keyframes reelSpin {
  0%, 42% { transform: translateY(0); }
  52%, 92% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}
.float-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-width: 190px; padding: 11px 26px; border-radius: 999px; font-weight: 900; font-size: 0.98rem;
  letter-spacing: 0.6px; color: #241a00;
  background: linear-gradient(180deg, #ffe08a, var(--gold) 45%, var(--gold-dark));
  border: 1px solid #fff3c4;
  box-shadow: 0 0 0 3px rgba(246, 196, 69, 0.25), 0 8px 22px rgba(246, 196, 69, 0.4);
  animation: btnPulse 1.8s ease-in-out infinite;
  text-decoration: none;
}
.float-btn:hover { color: #241a00; transform: translateY(-2px); }
.float-btn .coin { font-size: 1.05rem; animation: coinFlip 1.4s ease-in-out infinite; }
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(246, 196, 69, 0.25), 0 8px 22px rgba(246, 196, 69, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(246, 196, 69, 0.12), 0 8px 26px rgba(246, 196, 69, 0.6); }
}
@keyframes coinFlip {
  0%, 100% { transform: rotateY(0deg) scale(1); }
  50% { transform: rotateY(180deg) scale(1.12); }
}
.float-coins { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.float-coins i {
  position: absolute; bottom: -18px; font-size: 0.85rem; opacity: 0;
  animation: coinRise 3.6s linear infinite; font-style: normal;
}
.float-coins i:nth-child(1) { left: 8%; animation-delay: 0s; }
.float-coins i:nth-child(2) { left: 24%; animation-delay: 1.2s; }
.float-coins i:nth-child(3) { left: 52%; animation-delay: 2.1s; }
.float-coins i:nth-child(4) { left: 74%; animation-delay: 0.6s; }
.float-coins i:nth-child(5) { left: 90%; animation-delay: 2.8s; }
@keyframes coinRise {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  12% { opacity: 0.9; }
  100% { transform: translateY(-92px) rotate(340deg); opacity: 0; }
}
.float-note { color: var(--muted); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.4px; white-space: nowrap; }

/* misc */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mb-0 { margin-bottom: 0; }
.legal-inline { font-size: 0.78rem; color: var(--muted); }
.divider { border: 0; border-top: 1px solid var(--line); margin: 30px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; padding: 42px 0 46px; }
  .hero-media { max-width: 560px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band-actions { justify-content: flex-start; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
    background: var(--black-2); border-left: 1px solid var(--line);
    padding: 76px 22px 30px; transition: right 0.25s ease; z-index: 200; margin-left: 0;
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav .menu { flex-direction: column; gap: 6px; }
  .main-nav .menu > li > a { padding: 13px 14px; font-size: 1rem; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 190; display: none; }
  .nav-backdrop.show { display: block; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .auth-wrap { grid-template-columns: 1fr; }
  .header-cta .btn-outline { display: none; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 40px 0; }
  .cta-band { padding: 30px 22px; }
  .auth-card { padding: 24px 20px; }
  .tool-row { grid-template-columns: 1fr; }
  .float-cta { gap: 10px; height: 60px; }
  .float-reels { display: none; }
  .float-note { display: none; }
  .float-btn { min-width: 170px; }
  body { padding-bottom: 60px; }
  .header-cta .btn-sm { padding: 8px 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-chip { display: none; }
  .brand { font-size: 1.25rem; }
}

@media (max-width: 380px) {
  .float-btn { min-width: 0; width: calc(100% - 32px); }
  .hero-cta .btn { width: 100%; }
}

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