/* ============================================================
   Hadiah138 — Theme Stylesheet
   Casino theme: purple / gold / red / green / blue on dark
   ============================================================ */

:root {
  --bg-0: #0d0a1a;
  --bg-1: #151030;
  --bg-2: #1d1740;
  --bg-3: #251d4e;
  --card: #1a1436;
  --line: rgba(255, 255, 255, 0.09);
  --gold: #f5c542;
  --gold-2: #ffd76a;
  --gold-deep: #b8860b;
  --red: #e63946;
  --pink: #ff5d8f;
  --green: #2ecc71;
  --blue: #3fa7ff;
  --purple: #8b5cf6;
  --text: #f2eefc;
  --muted: #b3a9d4;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --font: "Segoe UI", "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(--bg-0);
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}

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

a { color: var(--gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-2); }

h1, h2, h3, h4 { line-height: 1.3; font-weight: 800; letter-spacing: .2px; }
h1 { font-size: clamp(1.7rem, 4.2vw, 2.9rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); margin-bottom: 18px; }
h3 { font-size: 1.15rem; margin-bottom: 10px; }
p { margin-bottom: 16px; color: var(--muted); }
p strong, li strong { color: var(--text); }

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

/* ---------- Age bar ---------- */
.age-bar {
  background: linear-gradient(90deg, var(--red), #b91c1c);
  color: #fff; text-align: center; font-size: .8rem; font-weight: 600;
  padding: 6px 14px; letter-spacing: .3px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(13, 10, 26, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 18px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { width: 42px; height: 42px; border-radius: 10px; }
.brand-name {
  font-size: 1.35rem; font-weight: 900; letter-spacing: .5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand-name span { color: var(--red); -webkit-text-fill-color: var(--red); }

.main-nav { flex: 1; }
.main-nav ul { list-style: none; display: flex; gap: 4px; flex-wrap: wrap; }
.main-nav a {
  display: block; padding: 8px 13px; border-radius: 9px;
  color: var(--text); font-size: .92rem; font-weight: 600;
}
.main-nav a:hover, .main-nav a.active { background: rgba(245, 197, 66, 0.12); color: var(--gold); }

.header-actions { display: flex; gap: 10px; flex-shrink: 0; }

.btn {
  display: inline-block; padding: 11px 24px; border-radius: 10px;
  font-weight: 800; font-size: .95rem; cursor: pointer; border: 0;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #231a05; box-shadow: 0 6px 18px rgba(245, 197, 66, 0.35);
}
.btn-gold:hover { color: #231a05; box-shadow: 0 10px 24px rgba(245, 197, 66, 0.5); }
.btn-outline {
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold); box-shadow: none;
}
.btn-outline:hover { background: rgba(245, 197, 66, 0.1); }
.btn-red {
  background: linear-gradient(135deg, var(--red), #a4161a);
  color: #fff; box-shadow: 0 6px 18px rgba(230, 57, 70, 0.35);
}
.btn-red:hover { color: #fff; }
.btn-sm { padding: 8px 18px; font-size: .86rem; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 9px; padding: 8px 12px; color: var(--gold); font-size: 1.2rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 560px;
  display: flex; align-items: center;
  background: var(--bg-1);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center right;
  opacity: .85;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,10,26,.96) 0%, rgba(13,10,26,.82) 42%, rgba(13,10,26,.35) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 90px 0; max-width: 640px; }
.hero-kicker {
  display: inline-block; font-size: .8rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green);
  border: 1px solid rgba(46, 204, 113, 0.4); border-radius: 999px;
  padding: 5px 16px; margin-bottom: 20px; background: rgba(46, 204, 113, 0.08);
}
.hero h1 { margin-bottom: 18px; }
.hero h1 .hl { background: linear-gradient(90deg, var(--gold), var(--pink)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 1.05rem; color: var(--muted); margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-trust { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-chip {
  font-size: .78rem; font-weight: 700; color: var(--text);
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px;
}
.trust-chip i { color: var(--gold); font-style: normal; margin-right: 5px; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-1); }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head .kicker {
  display: inline-block; font-size: .76rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--pink); margin-bottom: 10px;
}
.section-head p { font-size: 1rem; }

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

.card {
  background: linear-gradient(160deg, var(--bg-2), var(--card));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(245, 197, 66, 0.4); box-shadow: var(--shadow); }
.card .icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900;
  background: rgba(245, 197, 66, 0.12); color: var(--gold);
  border: 1px solid rgba(245, 197, 66, 0.25);
}
.card h3 { color: var(--text); }
.card p { font-size: .92rem; margin-bottom: 0; }

.card.c-red .icon { background: rgba(230,57,70,.12); color: var(--red); border-color: rgba(230,57,70,.3); }
.card.c-green .icon { background: rgba(46,204,113,.12); color: var(--green); border-color: rgba(46,204,113,.3); }
.card.c-blue .icon { background: rgba(63,167,255,.12); color: var(--blue); border-color: rgba(63,167,255,.3); }
.card.c-pink .icon { background: rgba(255,93,143,.12); color: var(--pink); border-color: rgba(255,93,143,.3); }
.card.c-purple .icon { background: rgba(139,92,246,.14); color: var(--purple); border-color: rgba(139,92,246,.35); }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 560px; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
th { background: rgba(245, 197, 66, 0.1); color: var(--gold); font-weight: 800; }
tr:last-child td { border-bottom: 0; }
td { color: var(--muted); }
td:first-child { color: var(--text); font-weight: 600; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.step::before {
  counter-increment: step; content: counter(step);
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; color: #231a05;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: 0 4px 14px rgba(245, 197, 66, 0.4);
}
.step h3 { margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: .92rem; }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; background: var(--card); overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--text);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 1.3rem; font-weight: 900; flex-shrink: 0; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--muted); font-size: .94rem; }

/* ---------- Tag cloud ---------- */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-cloud a {
  font-size: .82rem; font-weight: 600; color: var(--text);
  background: rgba(139, 92, 246, 0.12); border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 7px 15px; border-radius: 999px; transition: all .2s ease;
}
.tag-cloud a:hover { background: var(--purple); color: #fff; border-color: var(--purple); }

/* ---------- Search ---------- */
.search-box { display: flex; gap: 10px; max-width: 560px; }
.search-box input {
  flex: 1; padding: 13px 18px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--bg-2); color: var(--text); font-size: .95rem; outline: none;
  min-width: 0;
}
.search-box input:focus { border-color: var(--gold); }
.search-results { margin-top: 26px; display: none; }
.search-results.show { display: block; }
.search-hit {
  display: block; padding: 16px 20px; border: 1px solid var(--line);
  border-radius: 12px; margin-bottom: 10px; background: var(--card);
}
.search-hit:hover { border-color: var(--gold); }
.search-hit strong { color: var(--gold); display: block; margin-bottom: 4px; }
.search-hit span { color: var(--muted); font-size: .86rem; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: .82rem; color: var(--muted); padding: 16px 0 0;
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }
.breadcrumb [aria-current] { color: var(--gold); font-weight: 600; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; padding: 56px 0 48px;
  background: var(--bg-1); overflow: hidden; border-bottom: 1px solid var(--line);
}
.page-hero .hero-bg { opacity: .35; }
.page-hero .hero-bg::after {
  background: linear-gradient(90deg, rgba(13,10,26,.95) 0%, rgba(13,10,26,.75) 55%, rgba(13,10,26,.45) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { font-size: 1rem; margin-bottom: 0; }

/* ---------- Article ---------- */
.article-body { max-width: 820px; }
.article-body h2 {
  margin-top: 44px; padding-left: 16px; border-left: 4px solid var(--gold);
}
.article-body h3 { margin-top: 28px; color: var(--gold-2); }
.article-body p { color: var(--muted); }
.article-body ul, .article-body ol { margin: 0 0 18px 22px; color: var(--muted); }
.article-body li { margin-bottom: 8px; }
.article-featured {
  border-radius: var(--radius); overflow: hidden; margin: 26px 0 34px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.article-meta {
  display: flex; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: var(--muted);
  margin-bottom: 8px;
}
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-meta i { color: var(--gold); font-style: normal; }

.notice-box {
  border: 1px solid rgba(46, 204, 113, 0.35); background: rgba(46, 204, 113, 0.07);
  border-radius: var(--radius); padding: 20px 24px; margin: 26px 0;
}
.notice-box.warn { border-color: rgba(230, 57, 70, 0.4); background: rgba(230, 57, 70, 0.07); }
.notice-box.gold { border-color: rgba(245, 197, 66, 0.4); background: rgba(245, 197, 66, 0.07); }
.notice-box p { margin-bottom: 0; font-size: .92rem; }
.notice-box strong { color: var(--text); }

/* ---------- Category cards (games page) ---------- */
.cat-card {
  display: grid; grid-template-columns: 300px 1fr; overflow: hidden;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease;
}
.cat-card:hover { transform: translateY(-4px); border-color: rgba(245, 197, 66, 0.4); }
.cat-card .cat-img { min-height: 220px; background-size: cover; background-position: center; }
.cat-card .cat-body { padding: 28px; }
.cat-card .cat-tag { font-size: .76rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--pink); margin-bottom: 8px; }
.cat-card .cat-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.cat-card .cat-highlights span {
  font-size: .76rem; font-weight: 700; color: var(--green);
  background: rgba(46, 204, 113, 0.08); border: 1px solid rgba(46, 204, 113, 0.25);
  padding: 4px 12px; border-radius: 999px;
}

/* ---------- Promo cards ---------- */
.promo-card { position: relative; overflow: hidden; }
.promo-badge {
  position: absolute; top: 18px; right: -34px; transform: rotate(38deg);
  background: linear-gradient(135deg, var(--red), var(--pink)); color: #fff;
  font-size: .72rem; font-weight: 800; padding: 5px 40px; letter-spacing: 1px;
}
.promo-terms { list-style: none; margin: 14px 0 20px; }
.promo-terms li {
  font-size: .86rem; color: var(--muted); padding: 6px 0 6px 24px; position: relative;
  border-bottom: 1px dashed var(--line);
}
.promo-terms li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

/* ---------- Forms ---------- */
.form-card {
  max-width: 560px; margin: 0 auto; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 34px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .86rem; font-weight: 700; margin-bottom: 7px; color: var(--text); }
.form-group input, .form-group select {
  width: 100%; padding: 13px 16px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--bg-2); color: var(--text); font-size: .95rem; outline: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--muted); margin: 18px 0; }
.form-check input { margin-top: 4px; flex-shrink: 0; }
.form-note { font-size: .8rem; color: var(--muted); text-align: center; margin-top: 16px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative; border-radius: var(--radius); overflow: hidden;
  padding: 52px 40px; text-align: center;
  background: linear-gradient(120deg, #3b1663, #6d1d45 55%, #8a2b0d);
  border: 1px solid rgba(245, 197, 66, 0.3);
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 0 auto 26px; }

/* ---------- Footer ---------- */
.site-footer { background: #0a0812; border-top: 1px solid var(--line); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 40px; }
.footer-grid h4 { color: var(--gold); font-size: .95rem; margin-bottom: 16px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: var(--muted); font-size: .88rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-desc { font-size: .86rem; color: var(--muted); margin-top: 12px; }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 20px 0 90px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .8rem; color: var(--muted);
}
.badge-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--red); color: var(--red); font-weight: 900; font-size: .85rem;
}

/* ---------- Floating CTA (slot machine style) ---------- */
.float-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(13,10,26,0) 0%, rgba(13,10,26,.88) 30%, rgba(13,10,26,.97) 100%);
  pointer-events: none;
}
.float-cta-inner {
  pointer-events: auto; max-width: 640px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center;
  background: linear-gradient(135deg, #2a1650, #3d1a5e);
  border: 2px solid var(--gold); border-radius: 18px;
  padding: 10px 14px; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(245, 197, 66, 0.25);
  position: relative; overflow: hidden;
}
.float-cta-inner::before {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  animation: shine 3.2s linear infinite;
}
@keyframes shine { to { left: 120%; } }
.float-btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 10px 8px; border-radius: 12px; font-weight: 900; font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease; text-align: center;
}
.float-btn small { font-size: .68rem; font-weight: 700; opacity: .85; }
.float-btn:hover { transform: translateY(-2px) scale(1.03); }
.float-btn.login {
  background: linear-gradient(135deg, #1d4ed8, #3fa7ff); color: #fff;
  box-shadow: 0 6px 16px rgba(63, 167, 255, 0.4);
}
.float-btn.login:hover { color: #fff; }
.float-btn.register {
  background: linear-gradient(135deg, var(--gold), #ff9f1c); color: #2b1a00;
  box-shadow: 0 6px 16px rgba(245, 197, 66, 0.45);
  animation: pulse-gold 2s ease-in-out infinite;
}
.float-btn.register:hover { color: #2b1a00; }
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 6px 16px rgba(245, 197, 66, 0.45); }
  50% { box-shadow: 0 6px 26px rgba(245, 197, 66, 0.8); }
}
.slot-reels {
  display: flex; gap: 5px; background: #120b26; border: 1px solid rgba(245,197,66,.4);
  border-radius: 10px; padding: 6px 8px;
}
.slot-reels span {
  width: 30px; height: 34px; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 900; color: var(--gold);
  background: linear-gradient(180deg, #fff8e1, #ffe9a8);
  border-radius: 6px; animation: reel-spin 2.4s ease-in-out infinite;
  text-shadow: 0 1px 0 rgba(0,0,0,.15);
}
.slot-reels span:nth-child(2) { animation-delay: .3s; }
.slot-reels span:nth-child(3) { animation-delay: .6s; }
@keyframes reel-spin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.coin {
  position: fixed; bottom: 70px; width: 22px; height: 22px; z-index: 949;
  pointer-events: none; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe9a8, var(--gold) 55%, var(--gold-deep));
  box-shadow: 0 0 10px rgba(245, 197, 66, 0.7);
  animation: coin-float 3.6s ease-in forwards;
}
@keyframes coin-float {
  0% { transform: translateY(0) rotateY(0); opacity: 0; }
  12% { opacity: 1; }
  100% { transform: translateY(-72vh) rotateY(720deg); opacity: 0; }
}

/* ---------- Blog cards ---------- */
.blog-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.blog-card .blog-img { aspect-ratio: 16/9; background-size: cover; background-position: center; }
.blog-card .blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card .blog-body p { flex: 1; }
.blog-card .blog-meta { font-size: .76rem; color: var(--muted); margin-bottom: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cat-card { grid-template-columns: 1fr; }
  .cat-card .cat-img { min-height: 190px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; margin-left: auto; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-1); border-bottom: 1px solid var(--line); padding: 12px 20px 18px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { padding: 12px 14px; }
  .header-actions .btn { padding: 8px 14px; font-size: .8rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .hero { min-height: 0; }
  .hero-content { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .cta-banner { padding: 40px 22px; }
  .slot-reels span { width: 24px; height: 28px; font-size: 1rem; }
  .float-btn { font-size: .88rem; }
  .float-btn small { font-size: .62rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { padding-bottom: 100px; }
}

@media (max-width: 400px) {
  .float-cta-inner { gap: 8px; padding: 8px 10px; }
  .slot-reels { display: none; }
  .float-cta-inner { grid-template-columns: 1fr 1fr; }
}
