/* ============================================================
   Goonies (goonies.bet) — Casino Theme Stylesheet
   Palette: black base, red / gold-yellow / green / blue accents, white text
   ============================================================ */
:root {
  --black: #0d1117;
  --black-2: #151b24;
  --black-3: #1d2530;
  --white: #f5f7fa;
  --grey: #9aa7b4;
  --red: #e63946;
  --red-dark: #b91f2d;
  --gold: #f4b41a;
  --gold-dark: #d99a00;
  --green: #2ea44f;
  --green-dark: #1f7a38;
  --blue: #2f81f7;
  --blue-dark: #1f5fc0;
  --radius: 12px;
  --maxw: 1180px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

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

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--white); }

h1, h2, h3, h4 { line-height: 1.3; font-weight: 700; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------------- age gate ---------------- */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(8, 10, 14, .96);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.age-gate[hidden] { display: none; }
.age-card {
  background: var(--black-2);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  max-width: 520px; width: 100%;
  padding: 36px 32px; text-align: center;
  box-shadow: var(--shadow);
}
.age-badge {
  width: 84px; height: 84px; margin: 0 auto 18px;
  border: 4px solid var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800; color: var(--red);
}
.age-card h2 { font-size: 22px; margin-bottom: 12px; color: var(--gold); }
.age-card p { color: var(--grey); font-size: 15px; margin-bottom: 22px; }
.age-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-block; padding: 12px 26px; border-radius: 8px;
  font-weight: 700; font-size: 15px; border: 0; cursor: pointer;
  transition: transform .15s ease, background .15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #141414; }
.btn-gold:hover { background: var(--gold-dark); color: #141414; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); color: #fff; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); color: #fff; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #141414; }

/* ---------------- top bar ---------------- */
.topbar {
  background: #080b0f;
  border-bottom: 1px solid rgba(244, 180, 26, .25);
  font-size: 13px; color: var(--grey);
  padding: 6px 0; text-align: center;
}
.topbar strong { color: var(--red); }

/* ---------------- header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(13, 17, 23, .97);
  border-bottom: 2px solid var(--gold);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 20px; max-width: var(--maxw); margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
  font-size: 26px; font-weight: 900; letter-spacing: 1px;
  color: var(--white); text-transform: uppercase;
}
.logo-text span { color: var(--gold); }
.logo-chip {
  background: var(--red); color: #fff; font-size: 11px; font-weight: 800;
  padding: 2px 8px; border-radius: 20px; letter-spacing: .5px;
}
.main-nav ul { display: flex; gap: 4px; list-style: none; flex-wrap: wrap; }
.main-nav a {
  display: block; padding: 8px 14px; border-radius: 6px;
  color: var(--white); font-weight: 600; font-size: 15px;
}
.main-nav a:hover, .main-nav a.active { background: var(--black-3); color: var(--gold); }
.header-actions { display: flex; gap: 10px; align-items: center; }
.header-actions .btn { padding: 9px 18px; font-size: 14px; }
.nav-toggle {
  display: none; background: var(--black-3); border: 1px solid var(--gold);
  color: var(--gold); font-size: 22px; border-radius: 8px;
  width: 44px; height: 40px; cursor: pointer;
}

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, #10151d 0%, #141a24 55%, #0d1117 100%);
  border-bottom: 3px solid var(--red);
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px;
  align-items: center; padding: 64px 20px 56px;
  max-width: var(--maxw); margin: 0 auto;
}
.hero h1 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 18px; }
.hero h1 .hl-gold { color: var(--gold); }
.hero h1 .hl-red { color: var(--red); }
.hero p.lead { font-size: 18px; color: var(--grey); margin-bottom: 26px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-note { font-size: 13px; color: var(--grey); }
.hero-note strong { color: var(--red); }
.hero-media img { border-radius: var(--radius); border: 2px solid rgba(244,180,26,.4); box-shadow: var(--shadow); }

/* ---------------- sections ---------------- */
.section { padding: 56px 0; }
.section.alt { background: var(--black-2); }
.section-title { text-align: center; margin-bottom: 14px; font-size: clamp(24px, 3vw, 32px); }
.section-title .accent { color: var(--gold); }
.section-sub { text-align: center; color: var(--grey); max-width: 760px; margin: 0 auto 40px; }

/* ---------------- cards grid ---------------- */
.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: var(--black-3); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 26px; height: 100%;
  transition: transform .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 900; color: #141414;
}
.ic-red { background: var(--red); color: #fff; }
.ic-gold { background: var(--gold); }
.ic-green { background: var(--green); color: #fff; }
.ic-blue { background: var(--blue); color: #fff; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--grey); font-size: 15px; }

/* ---------------- article cards ---------------- */
.post-card {
  background: var(--black-3); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column;
  transition: transform .15s ease, border-color .15s ease;
}
.post-card:hover { transform: translateY(-4px); border-color: var(--green); }
.post-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.post-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-cat {
  align-self: flex-start; font-size: 12px; font-weight: 800; letter-spacing: .5px;
  padding: 3px 10px; border-radius: 20px; text-transform: uppercase;
}
.pc-red { background: rgba(230,57,70,.15); color: var(--red); border: 1px solid var(--red); }
.pc-green { background: rgba(46,164,79,.15); color: var(--green); border: 1px solid var(--green); }
.pc-blue { background: rgba(47,129,247,.15); color: var(--blue); border: 1px solid var(--blue); }
.pc-gold { background: rgba(244,180,26,.15); color: var(--gold); border: 1px solid var(--gold); }
.post-body h3 { font-size: 18px; }
.post-body h3 a { color: var(--white); }
.post-body h3 a:hover { color: var(--gold); }
.post-body p { color: var(--grey); font-size: 14px; flex: 1; }
.post-meta { font-size: 12px; color: var(--grey); }
.read-more { font-weight: 700; font-size: 14px; color: var(--green); }
.read-more:hover { color: var(--gold); }

/* ---------------- age notice strip ---------------- */
.age-strip {
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  padding: 26px 0;
}
.age-strip .wrap {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.age-num {
  min-width: 72px; height: 72px; border: 4px solid #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 900; color: #fff;
}
.age-strip h2 { font-size: 20px; margin-bottom: 4px; color: #fff; }
.age-strip p { color: rgba(255,255,255,.9); font-size: 14px; max-width: 900px; }

/* ---------------- mobile experience ---------------- */
.mobile-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
}
.mobile-split img { border-radius: var(--radius); border: 2px solid rgba(47,129,247,.4); box-shadow: var(--shadow); }
.check-list { list-style: none; margin-top: 18px; }
.check-list li {
  padding: 10px 0 10px 34px; position: relative; color: var(--grey);
  border-bottom: 1px dashed rgba(255,255,255,.1);
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 10px;
  width: 22px; height: 22px; background: var(--green); color: #fff;
  border-radius: 50%; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.check-list strong { color: var(--white); }

/* ---------------- FAQ ---------------- */
.faq-item {
  background: var(--black-3); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); margin-bottom: 14px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 18px 22px; font-weight: 700; font-size: 16px;
  list-style: none; position: relative; padding-right: 50px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%); font-size: 24px; color: var(--gold); font-weight: 800;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { color: var(--gold); }
.faq-answer { padding: 0 22px 20px; color: var(--grey); font-size: 15px; }

/* ---------------- tags cloud ---------------- */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tag-cloud a {
  background: var(--black-3); border: 1px solid rgba(244,180,26,.35);
  color: var(--white); padding: 7px 16px; border-radius: 30px; font-size: 14px;
}
.tag-cloud a:hover { background: var(--gold); color: #141414; border-color: var(--gold); }

/* ---------------- search ---------------- */
.search-box { display: flex; max-width: 640px; margin: 0 auto; gap: 10px; }
.search-box input {
  flex: 1; padding: 13px 18px; border-radius: 8px; border: 1px solid rgba(255,255,255,.2);
  background: var(--black-3); color: var(--white); font-size: 15px; min-width: 0;
}
.search-box input:focus { outline: 2px solid var(--gold); }
.search-results { max-width: 640px; margin: 18px auto 0; text-align: left; }
.search-results a {
  display: block; background: var(--black-3); padding: 12px 18px;
  border-radius: 8px; margin-bottom: 8px; color: var(--white);
  border-left: 3px solid var(--green);
}
.search-results a:hover { border-left-color: var(--gold); color: var(--gold); }
.search-results .no-result { color: var(--grey); text-align: center; }

/* ---------------- breadcrumb ---------------- */
.breadcrumb {
  background: var(--black-2); border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 12px 0; font-size: 13px; color: var(--grey);
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li::after { content: "›"; margin-left: 6px; color: var(--gold); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current] { color: var(--white); }

/* ---------------- article page ---------------- */
.article-head { padding: 40px 0 26px; }
.article-head .post-cat { margin-bottom: 14px; display: inline-block; }
.article-head h1 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; }
.article-meta { color: var(--grey); font-size: 14px; display: flex; gap: 18px; flex-wrap: wrap; }
.article-hero { margin: 8px 0 30px; }
.article-hero img { border-radius: var(--radius); border: 1px solid rgba(255,255,255,.12); }
.article-body { max-width: 820px; margin: 0 auto; padding-bottom: 40px; }
.article-body h2 {
  font-size: 24px; margin: 38px 0 14px; padding-left: 14px;
  border-left: 4px solid var(--gold);
}
.article-body h3 { font-size: 19px; margin: 26px 0 10px; color: var(--gold); }
.article-body p { margin-bottom: 16px; color: #d5dce4; }
.article-body ul, .article-body ol { margin: 0 0 16px 24px; color: #d5dce4; }
.article-body li { margin-bottom: 8px; }
.article-body table {
  width: 100%; border-collapse: collapse; margin: 20px 0 26px; font-size: 15px;
  display: block; overflow-x: auto;
}
.article-body th, .article-body td {
  border: 1px solid rgba(255,255,255,.14); padding: 11px 14px; text-align: left;
  white-space: nowrap;
}
.article-body th { background: var(--black-3); color: var(--gold); }
.article-body tr:nth-child(even) td { background: rgba(255,255,255,.03); }
.callout {
  border-left: 4px solid var(--blue); background: rgba(47,129,247,.1);
  padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 22px 0; color: #d5dce4;
}
.callout.warn { border-left-color: var(--red); background: rgba(230,57,70,.1); }
.callout.ok { border-left-color: var(--green); background: rgba(46,164,79,.1); }
.callout strong { color: var(--white); }

/* ---------------- CTA band ---------------- */
.cta-band {
  background: linear-gradient(120deg, #141a24, #1d2530);
  border: 1px solid rgba(244,180,26,.35);
  border-radius: var(--radius); padding: 36px; text-align: center; margin: 44px 0;
}
.cta-band h2 { font-size: 24px; margin-bottom: 10px; }
.cta-band p { color: var(--grey); max-width: 640px; margin: 0 auto 20px; }
.cta-band .hero-cta { justify-content: center; }

/* ---------------- auth pages ---------------- */
.auth-wrap { max-width: 520px; margin: 0 auto; }
.auth-card {
  background: var(--black-2); border: 1px solid rgba(244,180,26,.35);
  border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow);
}
.auth-card h1 { font-size: 26px; margin-bottom: 8px; }
.auth-card .sub { color: var(--grey); font-size: 14px; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.form-group input, .form-group select {
  width: 100%; padding: 12px 14px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2); background: var(--black-3);
  color: var(--white); font-size: 15px;
}
.form-group input:focus, .form-group select:focus { outline: 2px solid var(--gold); }
.form-hint { font-size: 12px; color: var(--grey); margin-top: 5px; }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--grey); margin-bottom: 18px; }
.form-check input { margin-top: 4px; }
.auth-alt { text-align: center; margin-top: 20px; font-size: 14px; color: var(--grey); }
.demo-note {
  margin-top: 22px; padding: 14px 16px; border-radius: 8px; font-size: 13px;
  background: rgba(47,129,247,.1); border: 1px solid rgba(47,129,247,.4); color: #cfe2ff;
}

/* ---------------- promo terms box ---------------- */
.terms-box {
  background: var(--black-2); border: 1px solid rgba(244,180,26,.4);
  border-radius: var(--radius); padding: 26px; margin: 26px 0;
}
.terms-box h3 { color: var(--gold); margin-bottom: 12px; }
.terms-box ul { margin-left: 20px; color: #d5dce4; }
.terms-box li { margin-bottom: 8px; font-size: 15px; }

/* ---------------- footer ---------------- */
.site-footer {
  background: #080b0f; border-top: 3px solid var(--gold);
  padding: 48px 0 0; margin-top: 20px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px;
  padding-bottom: 36px;
}
.site-footer h4 { color: var(--gold); font-size: 16px; margin-bottom: 14px; }
.site-footer p, .site-footer li { color: var(--grey); font-size: 14px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: var(--grey); }
.site-footer a:hover { color: var(--gold); }
.footer-badges { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.badge-18 {
  width: 46px; height: 46px; border: 3px solid var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: var(--red); font-size: 15px;
}
.badge-pill {
  border: 1px solid var(--green); color: var(--green); border-radius: 30px;
  padding: 8px 14px; font-size: 12px; font-weight: 700;
  display: inline-flex; align-items: center;
}
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0 26px;
  font-size: 13px; color: var(--grey);
}
.footer-legal p { margin-bottom: 10px; }
.footer-copy { text-align: center; padding-top: 8px; color: var(--grey); font-size: 13px; }

/* ---------------- floating responsible strip ---------------- */
.rg-strip {
  background: rgba(46,164,79,.12); border: 1px solid rgba(46,164,79,.45);
  border-radius: var(--radius); padding: 18px 22px; margin: 30px 0;
  font-size: 14px; color: #cfe9d6;
}
.rg-strip strong { color: var(--green); }

/* ---------------- responsive ---------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; padding: 44px 20px; }
  .hero-media { order: -1; }
  .mobile-split { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--black-2); border-bottom: 2px solid var(--gold);
    padding: 10px 20px 16px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { padding: 12px 10px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .header-actions .btn { padding: 8px 12px; font-size: 13px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .age-strip .wrap { flex-direction: row; }
  .cta-band { padding: 26px 18px; }
  .auth-card { padding: 24px 18px; }
  .search-box { flex-direction: column; }
  .search-box .btn { width: 100%; }
}
@media (max-width: 420px) {
  .logo-text { font-size: 21px; }
  .header-actions .btn-green { display: none; }
  .age-actions .btn { width: 100%; }
}

/* ---------------- floating slot-machine CTA ---------------- */
.float-cta {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 18px; z-index: 950;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-decoration: none;
}
.float-cta:hover { text-decoration: none; }
.slot-machine {
  background: linear-gradient(160deg, #232b38, #141a24);
  border: 2px solid var(--gold); border-radius: 16px;
  padding: 12px 16px 10px; box-shadow: 0 8px 26px rgba(0,0,0,.55), 0 0 18px rgba(244,180,26,.25);
  display: flex; align-items: center; gap: 10px;
  animation: floatPulse 2.6s ease-in-out infinite;
}
@keyframes floatPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 8px 26px rgba(0,0,0,.55), 0 0 14px rgba(244,180,26,.2); }
  50% { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(0,0,0,.6), 0 0 26px rgba(244,180,26,.45); }
}
.slot-reels {
  display: flex; gap: 5px;
}
.slot-reels span {
  width: 34px; height: 40px; border-radius: 7px;
  background: #f5f7fa; color: #141414;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; font-weight: 900;
  border-bottom: 3px solid #c8ccd2;
  animation: reelSpin 1.8s ease-in-out infinite;
}
.slot-reels span:nth-child(1) { color: var(--red); animation-delay: 0s; }
.slot-reels span:nth-child(2) { color: var(--gold-dark); animation-delay: .25s; }
.slot-reels span:nth-child(3) { color: var(--green); animation-delay: .5s; }
@keyframes reelSpin {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-4px); }
  60% { transform: translateY(2px); }
}
.slot-lever {
  width: 8px; height: 34px; background: linear-gradient(#c8ccd2, #8a9099);
  border-radius: 4px; position: relative; flex-shrink: 0;
}
.slot-lever::after {
  content: ""; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ff7a85, var(--red) 65%);
  box-shadow: 0 2px 6px rgba(0,0,0,.5);
  animation: leverBob 2.6s ease-in-out infinite;
}
@keyframes leverBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(4px); }
}
.float-cta-btns { display: flex; gap: 10px; }
.float-btn {
  font-weight: 900; font-size: 14px; letter-spacing: .5px;
  padding: 10px 24px; border-radius: 30px; text-align: center;
  border: 2px solid #fff3; white-space: nowrap; color: #141414;
  transition: transform .15s ease, filter .15s ease;
}
.float-btn:hover { transform: translateY(-2px); }
.float-btn-gold {
  background: linear-gradient(90deg, var(--gold), #ffd75e);
  box-shadow: 0 6px 18px rgba(244,180,26,.4);
}
.float-btn-gold:hover { filter: brightness(1.08); color: #141414; }
.float-btn-green {
  background: linear-gradient(90deg, var(--green), #4cc46d); color: #fff;
  box-shadow: 0 6px 18px rgba(46,164,79,.4);
}
.float-btn-green:hover { filter: brightness(1.1); color: #fff; }
.float-cta-sub {
  font-size: 11px; color: var(--gold); font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; text-shadow: 0 1px 4px #000;
}
@media (max-width: 768px) {
  .float-cta { bottom: 12px; gap: 6px; }
  .slot-machine { padding: 6px 10px 5px; border-radius: 12px; }
  .slot-reels span { width: 22px; height: 27px; font-size: 14px; border-bottom-width: 2px; }
  .slot-lever { display: none; }
  .float-cta-btns { gap: 8px; }
  .float-btn { font-size: 12px; padding: 8px 18px; }
  .float-cta-sub { display: none; }
}
