:root {
  --bg: #0A0F17;
  --surface: #14202E;
  --surface-2: #1C2C3E;
  --border: #2B3D52;
  --green: #14DD86;
  --green-hi: #34F0A0;
  --gold: #F4B63A;
  --gold-hi: #FFC759;
  --accent: #29C3E6;
  --text: #EAF1F6;
  --muted: #9DB1C2;
  --danger: #E5484D;
  --shadow: 0 6px 20px rgba(0,0,0,.35);
  --radius: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }

/* Accessibility: skip-link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--gold); color: #0A0F17 !important; font-weight: 800;
  padding: 12px 22px; border-radius: 0 0 10px 0; text-decoration: none;
}
.skip-link:focus { left: 0; outline: 3px solid #fff; outline-offset: 2px; }

/* Focus ring */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold-hi);
  outline-offset: 2px;
  border-radius: 4px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-hi); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold); }

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

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,15,23,.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; gap: 16px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { display: block; height: 48px; width: auto; max-width: 100%; }
.site-footer .brand img { height: 40px; }
.main-nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 22px; flex-wrap: wrap; }
.main-nav a { color: var(--text); font-weight: 600; font-size: .95rem; }
.main-nav a:hover { color: var(--green-hi); }
.header-cta { display: inline-block; background: var(--gold); color: #1a1a1a !important; font-weight: 800; padding: 10px 18px; border-radius: 10px; font-size: .95rem; }
.header-cta:hover { background: var(--gold-hi); color: #1a1a1a !important; }
.mobile-cta { display: none; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; color: var(--text); cursor: pointer; }

/* HERO */
.hero {
  position: relative;
  padding: 56px 0 48px;
  background: linear-gradient(180deg, rgba(10,15,23,.78) 0%, rgba(10,15,23,.90) 100%), url('/images/hero-banner.webp') center/cover no-repeat;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; align-items: center; }
.hero h1 { font-size: 2.5rem; margin: 0 0 14px; line-height: 1.15; color: var(--text); }
.hero h1 span { color: var(--green-hi); }
.hero p.lead { font-size: 1.1rem; color: var(--muted); margin: 0 0 22px; }
.hero-cta { display: inline-block; background: var(--gold); color: #1a1a1a; font-weight: 800; padding: 14px 26px; border-radius: 12px; font-size: 1.05rem; box-shadow: var(--shadow); }
.hero-cta:hover { background: var(--gold-hi); color: #1a1a1a; transform: translateY(-1px); }
.hero-meta { margin-top: 18px; display: flex; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: .95rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }

.hero.hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 480px;
  padding: 90px 0;
  overflow: hidden;
}
.hero.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,15,23,.94) 0%, rgba(10,15,23,.85) 38%, rgba(10,15,23,.45) 72%, rgba(10,15,23,.12) 100%);
  z-index: 1;
}
.hero.hero-bg .container { position: relative; z-index: 2; }
.hero.hero-bg .hero-grid { grid-template-columns: minmax(0, 640px) 1fr; max-width: 100%; }

/* SECTIONS */
section { padding: 60px 0; border-bottom: 1px solid var(--border); }
section:last-of-type { border-bottom: none; }
h2 { font-size: 2rem; margin: 0 0 20px; color: var(--text); }
h2 span { color: var(--gold-hi); }
h3 { font-size: 1.35rem; color: var(--gold-hi); margin: 28px 0 12px; }
h4 { font-size: 1.1rem; color: var(--gold-hi); margin: 18px 0 8px; }
.card h3, .card h4 { margin: 0 0 8px; font-size: 1.1rem; color: var(--gold-hi); }

/* Underline content links for accessibility (link-in-text-block) — main content only */
main p a:not([class]), main li a:not([class]), main td a:not([class]), main figcaption a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.site-header a, .site-footer a, .main-nav a { text-decoration: none; }
p { margin: 0 0 14px; }
ul, ol { padding-left: 22px; margin: 0 0 14px; }
ul li, ol li { margin-bottom: 6px; }

.lead-text { font-size: 1.08rem; color: var(--muted); max-width: 800px; }

/* CARDS / GRIDS */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* TABLE */
.tbl { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; margin: 18px 0; border: 1px solid var(--border); display: table; }
.tbl th, .tbl td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.tbl th { background: var(--surface-2); color: var(--gold-hi); font-weight: 700; text-transform: uppercase; font-size: .82rem; letter-spacing: .04em; }
.tbl tr:last-child td { border-bottom: none; }
.tbl tr:hover td { background: rgba(20,221,134,.06); }
.tbl td.green { color: var(--green-hi); font-weight: 700; }
.tbl td.gold { color: var(--gold-hi); font-weight: 700; }

/* BAR CHART */
.bar-chart { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; margin: 18px 0; }
.bar-chart h4 { margin-top: 0; color: var(--gold-hi); }
.bar-row { display: grid; grid-template-columns: 160px 1fr 70px; gap: 12px; align-items: center; margin-bottom: 10px; font-size: .95rem; }
.bar-row .label { color: var(--text); }
.bar-row .value { color: var(--green-hi); font-weight: 700; text-align: right; }
.bar-track { background: var(--surface-2); border-radius: 8px; height: 14px; overflow: hidden; }
.bar-fill { background: linear-gradient(90deg, var(--green) 0%, var(--green-hi) 100%); height: 100%; border-radius: 8px; }

/* DONUT */
.donut-row { display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin: 18px 0; }
.donut { width: 200px; height: 200px; border-radius: 50%; display: grid; place-items: center; position: relative; }
.donut::after { content: attr(data-label); position: absolute; color: var(--text); font-weight: 800; font-size: 1.4rem; }
.donut-legend { font-size: .95rem; }
.donut-legend li { list-style: none; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.donut-legend i { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }

/* STEPS */
.steps { counter-reset: step; padding: 0; list-style: none; display: grid; gap: 14px; }
.steps li { background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--green); border-radius: var(--radius); padding: 18px 18px 18px 60px; position: relative; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 14px; top: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--green); color: #0A0F17; font-weight: 800;
  display: grid; place-items: center; font-size: 1.1rem;
}
.steps li strong { color: var(--gold-hi); }

/* PROS / CONS */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 18px 0; }
.pros, .cons { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.pros { border-top: 4px solid var(--green); }
.cons { border-top: 4px solid var(--danger); }
.pros h4 { color: var(--green-hi); margin-top: 0; }
.cons h4 { color: var(--danger); margin-top: 0; }
.pros ul, .cons ul { list-style: none; padding: 0; }
.pros li::before { content: "✓ "; color: var(--green-hi); font-weight: 800; }
.cons li::before { content: "✗ "; color: var(--danger); font-weight: 800; }

/* RATING BLOCK */
.rating-block { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 18px 0; }
.rating-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; text-align: center; }
.rating-item .num { font-size: 2rem; color: var(--gold-hi); font-weight: 800; line-height: 1; }
.rating-item .lbl { color: var(--muted); font-size: .9rem; margin-top: 4px; text-transform: uppercase; letter-spacing: .04em; }

/* FAQ */
.faq { display: grid; gap: 10px; margin: 18px 0; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--gold-hi); font-size: 1.05rem; list-style: none; padding-right: 26px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 0; color: var(--green-hi); font-size: 1.5rem; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 10px; color: var(--text); }

/* AUTHOR BLOCK */
.author-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; display: grid; grid-template-columns: 100px 1fr; gap: 20px; align-items: start; margin: 40px 0; }
.author-block img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; }
.author-block .a-name { font-size: 1.15rem; font-weight: 800; }
.author-block .a-name a { color: var(--green-hi); }
.author-block .a-meta { color: var(--muted); font-size: .9rem; margin-bottom: 8px; }
.author-block p { margin: 6px 0; color: var(--text); }

/* APP BADGE + MINI STATS (mobile-app page right cards) */
.app-badge {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, rgba(20,221,134,.18) 0%, rgba(20,221,134,.06) 100%);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 14px 18px; margin: 0 0 18px;
}
.app-badge-android {
  background: linear-gradient(135deg, rgba(244,182,58,.16) 0%, rgba(244,182,58,.04) 100%);
  border-color: var(--gold);
}
.app-badge-rating {
  font-size: 1.65rem; font-weight: 900; color: var(--gold-hi); line-height: 1;
  min-width: 70px; text-align: center;
}
.app-badge-meta {
  color: var(--text); font-weight: 700; font-size: .98rem; line-height: 1.25;
}
.app-badge-meta span { color: var(--muted); font-weight: 500; font-size: .82rem; }

.app-mini-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin: 18px 0;
}
.app-mini-stats > div {
  background: var(--surface-2); border-radius: 10px; padding: 12px 6px;
  text-align: center; border: 1px solid var(--border);
}
.app-mini-stats strong {
  display: block; color: var(--green-hi); font-size: 1.05rem; line-height: 1.1;
}
.app-mini-stats span {
  display: block; color: var(--muted); font-size: .72rem;
  text-transform: uppercase; letter-spacing: .05em; margin-top: 4px;
}

/* SLOT CARD CTA */
.slot-cta {
  display: block; margin-top: 14px;
  background: var(--gold); color: #1a1a1a !important;
  font-weight: 800; padding: 11px 14px; text-align: center;
  border-radius: 10px; font-size: .92rem;
  box-shadow: 0 4px 14px rgba(244,182,58,.35);
  transition: background .15s, transform .15s;
}
.slot-cta:hover { background: var(--gold-hi); transform: translateY(-1px); }

/* BONUS HERO BANNER (overlay text on welcome-package image) */
.bonus-hero-banner {
  position: relative;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  margin: 0 0 28px;
}
.bonus-hero-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,15,23,.94) 0%, rgba(10,15,23,.88) 35%, rgba(10,15,23,.45) 65%, rgba(10,15,23,.12) 100%);
  z-index: 1;
}
.bonus-hero-content {
  position: relative; z-index: 2;
  padding: 36px 40px;
  max-width: 580px;
}
.bonus-hero-eyebrow {
  display: inline-block; padding: 5px 12px;
  background: rgba(20,221,134,.18); border: 1px solid var(--green);
  color: var(--green-hi); font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 999px; margin-bottom: 14px;
}
.bonus-hero-content h3 {
  margin: 0 0 14px; color: var(--gold-hi);
  font-size: 2.1rem; line-height: 1.1; font-weight: 900;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.bonus-hero-content p {
  color: var(--text); font-size: 1rem; margin: 0 0 22px;
  text-shadow: 0 1px 4px rgba(0,0,0,.55);
}
.bonus-hero-cta {
  display: inline-block; background: var(--gold); color: #1a1a1a !important;
  font-weight: 800; padding: 13px 28px; border-radius: 10px;
  font-size: 1rem; box-shadow: 0 6px 18px rgba(244,182,58,.4);
  transition: transform .15s, background .15s;
}
.bonus-hero-cta:hover { background: var(--gold-hi); transform: translateY(-1px); }

@media (max-width: 720px) {
  .bonus-hero-banner { min-height: 320px; background-position: 70% center; }
  .bonus-hero-banner::before { background: linear-gradient(180deg, rgba(10,15,23,.93) 0%, rgba(10,15,23,.75) 50%, rgba(10,15,23,.93) 100%); }
  .bonus-hero-content { padding: 26px 22px; max-width: 100%; }
  .bonus-hero-content h3 { font-size: 1.55rem; }
  .bonus-hero-content p { font-size: .92rem; }
}

/* CTA STRIP */
.cta-strip { background: linear-gradient(135deg, #14202E 0%, #1C2C3E 100%); border: 1px solid var(--green); border-radius: var(--radius); padding: 32px; text-align: center; margin: 40px 0; }
.cta-strip h3 { color: var(--gold-hi); margin: 0 0 10px; font-size: 1.6rem; }
.cta-strip p { color: var(--muted); margin: 0 0 20px; }
.cta-strip a { display: inline-block; background: var(--gold); color: #1a1a1a; font-weight: 800; padding: 14px 32px; border-radius: 10px; font-size: 1.05rem; }
.cta-strip a:hover { background: var(--gold-hi); }

/* FOOTER */
.site-footer { background: #070C12; border-top: 1px solid var(--border); padding: 50px 0 20px; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-grid h2 { color: var(--gold-hi); font-size: 1rem; margin: 0 0 12px; border: none; }
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--muted); }
.footer-grid a:hover { color: var(--green-hi); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 18px; text-align: center; font-size: .85rem; color: var(--muted); }
.footer-bottom p { margin: 6px 0; }

/* STICKY BONUS BANNER */
.sticky-bonus {
  position: fixed; right: 18px; bottom: 18px; width: 300px; height: 300px;
  background: url('/images/banner-bonus.jpg') center/cover no-repeat;
  border: 2px solid var(--gold); border-radius: 16px; z-index: 100; padding: 0;
  box-shadow: 0 8px 30px rgba(0,0,0,.6);
}
.sticky-bonus .close-x {
  position: absolute; top: 4px; right: 8px;
  background: rgba(0,0,0,.55); border: none; color: #fff;
  font-size: 1.2rem; line-height: 1; cursor: pointer;
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center; padding: 0;
}
.sticky-bonus .close-x:hover { background: rgba(0,0,0,.8); }
.sticky-bonus h2.sb-title {
  position: absolute; left: 12px; right: 158px; top: 78px;
  margin: 0; text-align: center;
  font-size: 1.45rem; line-height: 1.05; color: var(--gold-hi); font-weight: 900;
  text-shadow: 0 2px 6px rgba(0,0,0,.85), 0 0 12px rgba(0,0,0,.55);
  border: none;
}
.sticky-bonus p {
  position: absolute; left: 12px; right: 158px; top: 138px;
  margin: 0; text-align: center;
  font-size: .72rem; line-height: 1.25; color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,.9);
}
.sticky-bonus a.btn {
  position: absolute; left: 20px; right: 165px; bottom: 60px;
  display: block; background: var(--gold); color: #1a1a1a !important;
  font-weight: 800; padding: 9px 4px; text-align: center; border-radius: 8px;
  font-size: .8rem; box-shadow: 0 4px 14px rgba(244,182,58,.45);
}
.sticky-bonus a.btn:hover { background: var(--gold-hi); }
.sticky-bonus.hidden { display: none; }

/* RESPONSIVE */
@media (max-width: 920px) {
  img, video, iframe, table { max-width: 100%; }
  .tbl {
    display: block; overflow-x: auto; -webkit-overflow-scrolling: touch;
    white-space: nowrap; width: 100%;
  }
  .tbl th, .tbl td { padding: 10px 12px; font-size: .9rem; }
  .container { padding: 0 16px; }
  .header-row { gap: 8px; }
  .bonus-hero-banner { width: 100%; }
  .hero-grid, .cards-3, .cards-4, .cards-2, .pros-cons, .donut-row { grid-template-columns: 1fr; }
  .hero.hero-bg { min-height: 380px; padding: 60px 0; background-position: right center; }
  .hero.hero-bg::before { background: linear-gradient(180deg, rgba(10,15,23,.92) 0%, rgba(10,15,23,.7) 50%, rgba(10,15,23,.92) 100%); }
  .hero.hero-bg .hero-grid { max-width: 100%; }
  .rating-block { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: inline-block; }
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--surface); padding: 16px; border-top: 1px solid var(--border); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 12px; }
  .header-cta { display: none; }
  .mobile-cta { display: inline-block; background: var(--gold); color: #1a1a1a !important; font-weight: 800; padding: 8px 14px; border-radius: 8px; font-size: .85rem; }
  .hero { padding: 40px 0; }
  .hero h1 { font-size: 1.85rem; }
  .author-block { grid-template-columns: 80px 1fr; padding: 18px; }
  .author-block img { width: 80px; height: 80px; }
  .sticky-bonus { width: 240px; height: 240px; right: 10px; bottom: 10px; }
  .sticky-bonus h2.sb-title { left: 8px; right: 126px; top: 60px; font-size: 1.15rem; }
  .sticky-bonus p { left: 8px; right: 126px; top: 110px; font-size: .68rem; }
  .sticky-bonus a.btn { left: 14px; right: 132px; bottom: 46px; font-size: .72rem; padding: 7px 2px; }
  .bar-row { grid-template-columns: 100px 1fr 50px; font-size: .85rem; }
  .header-row { flex-wrap: wrap; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.5rem; }
  section { padding: 40px 0; }
  .rating-block { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SPINATIONAL HERO (hero-banner backdrop + promo image + green CTA)
   ============================================================ */
.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* hero-banner as the backdrop for every hero on the site */
.hero-spin {
  position: relative;
  background: url('/images/hero-banner.webp') center/cover no-repeat;
  background-color: var(--bg);
  padding: 42px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero-spin::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,15,23,.55) 0%, rgba(10,15,23,.70) 100%);
  z-index: 0;
}
.hero-spin > .container { position: relative; z-index: 1; }

/* promo banner image (hero-main / hero-slots / hero-login / hero-mobile) */
.hero-promo {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}
.hero-promo > img {
  width: 100%; height: auto; display: block;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 44px rgba(0,0,0,.55);
}
.hero-promo .btn-spin {
  position: absolute;
  left: 6.5%;
  bottom: 11%;
}

/* promo banner placed in the page body (not the hero) */
.promo-banner-sec { padding: 30px 0; border-bottom: 1px solid var(--border); }

/* mobile: lighter hero-banner backdrop for faster LCP */
@media (max-width: 760px) {
  .hero-spin { background-image: url('/images/hero-banner-sm.webp'); }
  .hero { background-image: linear-gradient(180deg, rgba(10,15,23,.78) 0%, rgba(10,15,23,.90) 100%), url('/images/hero-banner-sm.webp'); }
}

/* spielautomaten banner: drop the button a bit lower (clears the baked text) */
.hero-promo--low .btn-spin { bottom: 4%; }
@media (max-width: 760px) { .hero-promo--low .btn-spin { bottom: 5%; } }

/* text hero variant (bonus / registrierung / author) */
.hero-spin--text .hero-text { max-width: 700px; }
.hero-spin--text h1 { font-size: 2.4rem; line-height: 1.15; margin: 0 0 14px; }
.hero-spin--text h1 span { color: var(--green-hi); }
.hero-spin--text .lead { font-size: 1.1rem; color: var(--muted); margin: 0 0 22px; }

/* GREEN GLOSSY CTA — styled after the brand hero button */
.btn-spin {
  display: inline-block;
  font-weight: 900; font-style: italic; text-transform: uppercase;
  letter-spacing: .015em;
  color: #06270f !important;
  background: linear-gradient(180deg, #8BF94A 0%, #46DE5E 50%, #15B84C 100%);
  padding: 15px clamp(24px, 4vw, 42px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 10px 26px rgba(20,200,90,.45), inset 0 2px 0 rgba(255,255,255,.6), inset 0 -3px 7px rgba(0,70,25,.35);
  text-shadow: 0 1px 0 rgba(255,255,255,.32);
  font-size: clamp(.95rem, 2.4vw, 1.18rem); line-height: 1.05;
  text-decoration: none !important;
  transition: transform .15s ease, filter .15s ease;
  white-space: nowrap;
}
.btn-spin:hover { transform: translateY(-2px); filter: brightness(1.07); color: #06270f !important; }
.btn-spin:active { transform: translateY(0); }

@media (max-width: 760px) {
  .hero-spin { padding: 24px 0; }
  .hero-promo .btn-spin { left: 50%; transform: translateX(-50%); bottom: 7%; padding: 11px 22px; }
  .hero-promo .btn-spin:hover { transform: translateX(-50%) translateY(-2px); }
  .hero-spin--text h1 { font-size: 1.7rem; }
}
@media (max-width: 420px) {
  .hero-promo .btn-spin { bottom: 5%; padding: 9px 16px; font-size: .82rem; }
}

/* ============================================================
   UNIFIED GREEN CTA BUTTONS — one style site-wide (screenshot)
   Applies the glossy green look to every CTA; each button keeps
   its own size/padding/border-radius/positioning.
   ============================================================ */
.btn-spin,
.header-cta, .mobile-cta, .hero-cta,
.cta-strip a, .slot-cta, .bonus-hero-cta,
.sticky-bonus a.btn {
  background: linear-gradient(180deg, #8BF94A 0%, #46DE5E 50%, #15B84C 100%) !important;
  color: #06270f !important;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .01em;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 8px 20px rgba(20,200,90,.40), inset 0 2px 0 rgba(255,255,255,.55), inset 0 -3px 7px rgba(0,70,25,.32);
  text-shadow: 0 1px 0 rgba(255,255,255,.3);
  text-decoration: none !important;
}
.btn-spin:hover,
.header-cta:hover, .mobile-cta:hover, .hero-cta:hover,
.cta-strip a:hover, .slot-cta:hover, .bonus-hero-cta:hover,
.sticky-bonus a.btn:hover {
  background: linear-gradient(180deg, #9CFF5E 0%, #53EA6C 50%, #1ACB58 100%) !important;
  color: #06270f !important;
  filter: brightness(1.05);
}
