/* WinSpirit AU — dark casino + purple/gold brand accents */

:root {
  --bg-deep: #0b0614;
  --bg-base: #12081f;
  --bg-elevated: #1a0f2e;
  --bg-card: #1e1435;
  --bg-card-hover: #271a42;
  --purple: #9b5cff;
  --purple-bright: #c084fc;
  --purple-deep: #6d28d9;
  --magenta: #d946ef;
  --line: rgba(155, 92, 255, 0.22);
  --line-strong: rgba(192, 132, 252, 0.4);
  --gold: #d4af37;
  --gold-bright: #f0d060;
  --gold-dim: #a88b2a;
  --amber: #e8a317;
  --teal: #22d3ee;
  --teal-dim: #0891b2;
  --text: #f3eefc;
  --text-muted: #a89bc0;
  --text-soft: #d4cbe8;
  --danger: #e85d5d;
  --success: #3dcf8e;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(80, 20, 140, 0.35);
  --glow-purple: 0 0 40px rgba(155, 92, 255, 0.35);
  --font-display: "Syne", "Segoe UI", sans-serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --max: 1120px;
  --header-h: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(1100px 560px at 8% -8%, rgba(155, 92, 255, 0.22), transparent 55%),
    radial-gradient(900px 500px at 95% 0%, rgba(217, 70, 239, 0.12), transparent 50%),
    radial-gradient(700px 400px at 50% 100%, rgba(109, 40, 217, 0.15), transparent 55%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-base) 45%, #0a0612 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--purple-bright);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(1.85rem, 4vw, 2.75rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.45rem, 3vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.35rem); color: var(--purple-bright); }
h4 { font-size: 1.05rem; color: var(--gold); }

p { margin: 0 0 1rem; color: var(--text-soft); }

ul, ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--text-soft);
}

li { margin-bottom: 0.45rem; }

strong { color: var(--text); font-weight: 600; }

blockquote {
  margin: 0 0 1.25rem;
  padding: 1.1rem 1.25rem 1.1rem 1.4rem;
  border-left: 3px solid var(--purple);
  background: linear-gradient(90deg, rgba(155, 92, 255, 0.12), transparent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-soft);
  font-style: italic;
}

blockquote cite {
  display: block;
  margin-top: 0.65rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--purple-bright);
}

hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  margin: 2.5rem 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 6, 20, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--text);
  text-decoration: none;
  line-height: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.brand img {
  width: auto;
  height: 64px;
  max-width: 260px;
  object-fit: contain;
  display: block;
  background: transparent;
  filter: none;
}

@media (min-width: 700px) {
  .brand img {
    height: 76px;
    max-width: 300px;
  }
}

.footer-brand .brand img {
  height: 60px;
  max-width: 240px;
}

.header-cta {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  color: var(--bg-deep);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--amber) 55%, var(--gold-dim) 100%);
  color: #1a1200;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.28);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: shimmer 3.5s ease-in-out infinite;
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
  color: #1a1200;
}

.btn-ghost {
  background: rgba(155, 92, 255, 0.08);
  border-color: var(--line-strong);
  color: var(--purple-bright);
}

.btn-ghost:hover {
  background: rgba(155, 92, 255, 0.18);
  color: #fff;
  border-color: var(--purple);
}

.btn-teal {
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: #fff;
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.35);
}

.btn-teal:hover {
  color: #fff;
  box-shadow: var(--glow-purple);
}

.btn-lg {
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
}

@keyframes shimmer {
  0%, 70% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: 2.75rem 0 3.5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 75% 40%, rgba(155, 92, 255, 0.28), transparent 60%),
    radial-gradient(ellipse 50% 60% at 15% 80%, rgba(217, 70, 239, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(11, 6, 20, 0.2), rgba(11, 6, 20, 0.85));
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 10%;
  width: 48%;
  height: 70%;
  background: radial-gradient(circle, rgba(155, 92, 255, 0.22), transparent 68%);
  pointer-events: none;
  z-index: 0;
  animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(155, 92, 255, 0.12);
  color: var(--purple-bright);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  animation: fade-up 0.7s ease both;
  box-shadow: 0 0 24px rgba(155, 92, 255, 0.15);
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.75rem 0 1.25rem;
  animation: fade-up 0.7s 0.1s ease both;
}

.rating-ring {
  --p: 97;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, var(--bg-elevated) 78%, transparent 80% 100%),
    conic-gradient(var(--purple) calc(var(--p) * 1%), rgba(255, 255, 255, 0.08) 0);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-bright);
  box-shadow: 0 0 18px rgba(155, 92, 255, 0.35);
}

.hero h1 {
  animation: fade-up 0.7s 0.15s ease both;
}

.hero-lead {
  font-size: 1.08rem;
  max-width: 38rem;
  animation: fade-up 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  animation: fade-up 0.7s 0.25s ease both;
}

.hero-stage {
  animation: fade-up 0.8s 0.2s ease both;
}

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  padding: 3px;
  background: linear-gradient(145deg, var(--purple-bright), var(--magenta), var(--gold), var(--purple-deep));
  box-shadow: var(--glow-purple), var(--shadow);
}

.hero-visual-inner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(155, 92, 255, 0.25), transparent 55%),
    linear-gradient(160deg, #1a0a2e 0%, #0b0614 100%);
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.hero-offer-chip {
  margin-top: 0.85rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(11, 6, 20, 0.9);
  border: 1px solid rgba(192, 132, 252, 0.45);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.hero-offer-chip strong {
  display: block;
  color: var(--gold-bright);
  font-size: 1.05rem;
}

.hero-offer-chip span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* —— Sections —— */
.section {
  padding: 3.25rem 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(30, 20, 53, 0.7), rgba(18, 8, 31, 0.35));
  border-block: 1px solid var(--line);
}

.section-head {
  margin-bottom: 1.75rem;
  max-width: 46rem;
}

.section-kicker {
  display: inline-block;
  color: var(--purple-bright);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}

/* Bonus ladder — unique vs competitor */
.bonus-ladder {
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0;
}

@media (min-width: 700px) {
  .bonus-ladder {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
  }
}

.ladder-step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  position: relative;
  overflow: hidden;
}

.ladder-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold), var(--magenta));
}

.ladder-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(155, 92, 255, 0.2);
  color: var(--purple-bright);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.ladder-step h3 { margin-bottom: 0.4rem; }

.ladder-connector {
  display: none;
  align-self: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px dashed var(--line-strong);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  place-items: center;
}

@media (min-width: 700px) {
  .ladder-connector { display: grid; }
}

.ladder-total {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(155, 92, 255, 0.2), rgba(212, 175, 55, 0.12));
  border: 1px solid var(--line-strong);
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-bright);
}

/* Promo week strip */
.promo-strip {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.promo-day {
  text-align: center;
  padding: 1rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.promo-day:hover {
  border-color: var(--purple);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(155, 92, 255, 0.2);
}

.promo-day .day {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple-bright);
  font-weight: 700;
}

.promo-day .label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
}

/* Cards / grids */
.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--bg-card-hover);
  box-shadow: 0 12px 32px rgba(109, 40, 217, 0.22);
}

.card-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(155, 92, 255, 0.18), transparent 70%),
    var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  transition: transform 0.4s ease;
}

.card:hover .card-media img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.1rem 1.2rem 1.3rem;
}

.card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.card-body p {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  color: var(--text-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  transform: rotate(45deg);
}

/* Why choose / checklist */
.check-grid {
  display: grid;
  gap: 0.85rem;
}

.check-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.check-item .mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(155, 92, 255, 0.18);
  color: var(--purple-bright);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 0.95rem;
}

th, td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: rgba(155, 92, 255, 0.12);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

td { color: var(--text-soft); }

tr:last-child td { border-bottom: none; }

tr:hover td { background: rgba(155, 92, 255, 0.06); }

/* Providers */
.provider-row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin: 1.25rem 0;
}

.provider-chip {
  text-align: center;
  padding: 1.1rem 0.75rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(155, 92, 255, 0.12), var(--bg-elevated));
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.provider-chip:hover {
  border-color: var(--purple);
  box-shadow: 0 0 20px rgba(155, 92, 255, 0.2);
}

/* Steps */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.85rem;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  margin: 0;
}

.steps li::before {
  content: counter(step);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 0 16px rgba(155, 92, 255, 0.35);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-list details {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.2rem 1rem;
  transition: border-color 0.2s ease;
}

.faq-list details[open] {
  border-color: var(--purple);
  box-shadow: 0 0 0 1px rgba(155, 92, 255, 0.15);
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  color: var(--purple-bright);
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  padding-bottom: 1rem;
  margin: 0;
}

/* Mid CTA banner */
.cta-banner {
  margin: 2rem 0;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(155, 92, 255, 0.22), rgba(212, 175, 55, 0.1)),
    var(--bg-elevated);
  border: 1px solid var(--line-strong);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-purple);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(155, 92, 255, 0.28), transparent 70%);
  animation: pulse-glow 5s ease-in-out infinite;
}

.cta-banner h2,
.cta-banner p {
  position: relative;
  z-index: 1;
}

.cta-banner .cta-row {
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Content pages */
.page-hero {
  padding: 2.25rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(155, 92, 255, 0.12), transparent);
}

.page-hero h1 { margin-bottom: 0.5rem; }

.page-meta {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

.content-block {
  padding: 2.5rem 0 3.5rem;
}

.content-block h2 {
  margin-top: 2.25rem;
  padding-top: 0.5rem;
}

.content-block h2:first-child {
  margin-top: 0;
}

.support-box {
  padding: 1.15rem 1.25rem;
  margin-bottom: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--purple);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.support-box h3 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.support-box p { margin-bottom: 0.35rem; }
.support-box p:last-child { margin-bottom: 0; }

.note {
  font-style: italic;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  margin-top: 2rem;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 2.5rem 0 2rem;
  background: #07040f;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: var(--gold-bright);
}

.footer-legal {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 48rem;
}

.footer-legal p { margin-bottom: 0.5rem; color: var(--text-muted); }

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.5rem;
  border-radius: 8px;
  border: 2px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Sticky mobile CTA */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(11, 6, 20, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  gap: 0.5rem;
}

.mobile-cta-bar .btn {
  flex: 1;
}

@media (max-width: 700px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }
  .header-cta .btn-ghost { display: none; }
  .btn { padding: 0.65rem 1rem; font-size: 0.85rem; }
}

/* Media helpers — show full banners, no crop */
.media-block {
  margin: 1.25rem 0 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  padding: 2px;
  background: linear-gradient(135deg, var(--purple), var(--magenta), var(--gold-dim));
  box-shadow: 0 12px 40px rgba(109, 40, 217, 0.25);
}

.media-block-inner {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #1a0a2e, #0b0614);
}

.media-block img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.split-media {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin: 1.5rem 0;
}

@media (min-width: 800px) {
  .split-media {
    grid-template-columns: 1fr 1fr;
  }
}

.split-media > img,
.split-media .banner-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.banner-frame {
  border-radius: calc(var(--radius) + 2px);
  padding: 2px;
  background: linear-gradient(145deg, var(--purple-bright), var(--magenta), var(--purple-deep));
  box-shadow: 0 14px 40px rgba(109, 40, 217, 0.28);
}

.banner-frame-inner {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #1a0a2e, #0b0614);
}

.banner-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
