/* =========================================================
   SWEET GUMMY EMPIRE — Promo Website Styles
   Bubblegum pink / lavender / raspberry · Fredoka + Quicksand
   Glossy candy-render, reflective sugar surfaces
   ========================================================= */

:root {
  /* Brand */
  --primary: #E78BB5;
  --primary-deep: #D46A98;
  --primary-light: #F0A4C5;
  --secondary: #9B7BB8;
  --secondary-deep: #7E5DA0;
  --accent: #C03A56;
  --legendary: #F0C24A;
  --rare-mint: #A8DEC9;

  /* Surfaces */
  --bg-app: #FBF3E4;
  --bg-card: #F4E1E8;
  --bg-card-elevated: #FAEDF1;
  --bg-modal: #FBF3E4;
  --chalkboard: #3D2A4A;
  --chalkboard-frame: #9C6E4B;
  --parchment: #F4E6CB;
  --divider: #E8D7C3;

  /* Text */
  --text-primary: #3A2218;
  --text-secondary: #6A5046;
  --text-tertiary: #9A8378;
  --text-on-primary: #FFFFFF;
  --text-on-chalkboard: #FBF3E4;
  --text-link: #9B7BB8;

  /* Type */
  --font-display: 'Fredoka', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Fredoka', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Quicksand', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-w: 1200px;
  --radius-card: 20px;
  --radius-btn: 999px;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #F0A4C5 0%, #D46A98 100%);
  --grad-jackpot: linear-gradient(135deg, #F0C24A 0%, #E78BB5 50%, #9B7BB8 100%);
  --grad-shop-bg: radial-gradient(ellipse 80% 60% at 50% 0%, #FFE6D2 0%, #FBF3E4 60%);
  --grad-rank: linear-gradient(90deg, #E78BB5 0%, #9B7BB8 100%);
  --grad-chalkboard: linear-gradient(180deg, #4A3357 0%, #3D2A4A 100%);
  --grad-text-candy: linear-gradient(135deg, #D46A98 0%, #9B7BB8 60%, #F0C24A 100%);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
body {
  background: var(--bg-app);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--text-link); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--secondary-deep); }

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

/* ---------- Typography ---------- */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.01em;
}

.t-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-deep);
  margin-bottom: 14px;
}

.accent-pink { color: var(--primary-deep); }
.accent-purple { color: var(--secondary-deep); }
.accent-gold { color: var(--legendary); }

.gradient-text {
  background: var(--grad-text-candy);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.outlined-candy {
  -webkit-text-stroke: 2px var(--primary-deep);
  color: transparent;
}

.italic-accent { font-style: italic; font-weight: 500; }

/* ---------- Top bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 243, 228, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
}

.topbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(212, 106, 152, 0.35), 0 0 0 1px rgba(212, 106, 152, 0.2);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}
.nav-links a:hover { color: var(--primary-deep); }

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--text-primary);
  border: none;
  cursor: pointer;
  padding: 6px;
}

@media (max-width: 800px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 64px;
    right: 12px;
    background: var(--bg-card-elevated);
    border: 1px solid var(--divider);
    border-radius: 16px;
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 14px 40px rgba(58, 34, 24, 0.18);
    display: none;
  }
  .nav-links.open { display: flex; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-shop-bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero_bg.webp');
  background-size: cover;
  background-position: center 45%;
  opacity: 0.28;
  z-index: 0;
  filter: saturate(1.1);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(240, 194, 74, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 55% 50% at 12% 85%, rgba(155, 123, 184, 0.20) 0%, transparent 70%),
    linear-gradient(180deg, rgba(251, 243, 228, 0) 50%, rgba(251, 243, 228, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(231, 139, 181, 0.16);
  border: 1.5px solid rgba(212, 106, 152, 0.5);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-deep);
  margin-bottom: 26px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(46px, 9vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 22px 0;
}

.hero-title .row { display: block; }
.hero-title .sparkle {
  background: var(--grad-text-candy);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 24px rgba(231, 139, 181, 0.45));
}
.hero-title .empire {
  font-style: italic;
  font-weight: 600;
  color: var(--secondary-deep);
}

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 0 32px 0;
  text-align: left;
  line-height: 1.55;
}
.hero-sub strong { color: var(--text-primary); font-weight: 700; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.compliance-stripe {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(168, 222, 201, 0.30);
  border: 1.5px solid var(--rare-mint);
  border-radius: 14px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}
.compliance-stripe svg { color: #4F9F7E; flex-shrink: 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  min-height: 52px;
}

.btn-primary {
  background: var(--grad-primary);
  color: var(--text-on-primary);
  box-shadow: 0 10px 28px rgba(212, 106, 152, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  color: var(--text-on-primary);
  box-shadow: 0 14px 36px rgba(212, 106, 152, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  background: var(--bg-card-elevated);
  color: var(--secondary-deep);
  border: 2px solid var(--secondary);
  box-shadow: 0 4px 14px rgba(155, 123, 184, 0.2);
}
.btn-secondary:hover {
  background: #fff;
  color: var(--secondary-deep);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--divider);
}
.btn-ghost:hover { border-color: var(--primary-deep); color: var(--primary-deep); }

/* ---------- Section common ---------- */

section.section {
  padding: 100px 0;
  position: relative;
}

.section-bg-cream {
  background: linear-gradient(180deg, var(--bg-app) 0%, #F7E8D6 100%);
}

.section-bg-parchment {
  background-color: var(--parchment);
  background-image: url('images/parchment.webp');
  background-size: cover;
  background-blend-mode: multiply;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5.5vw, 60px);
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}

.section-head p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.6;
}

.divider-sparkle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 18px;
}
.divider-sparkle .line {
  height: 2px;
  width: 64px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}
.divider-sparkle .star {
  color: var(--legendary);
  font-size: 18px;
  filter: drop-shadow(0 0 8px rgba(240, 194, 74, 0.6));
}

/* ---------- Prominent compliance banner ---------- */

.no-betting-banner {
  background:
    linear-gradient(135deg, rgba(168, 222, 201, 0.35) 0%, rgba(250, 237, 241, 1) 100%);
  border: 2px solid var(--rare-mint);
  border-radius: 24px;
  padding: 32px 28px;
  margin: 0 auto;
  max-width: 920px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  box-shadow: 0 0 0 6px rgba(168, 222, 201, 0.18), 0 18px 50px rgba(58, 34, 24, 0.12);
  position: relative;
}

.no-betting-banner .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: rgba(168, 222, 201, 0.6);
  border: 1.5px solid var(--rare-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2F7058;
}

.no-betting-banner .body { flex: 1; min-width: 240px; }
.no-betting-banner .body .label {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #2F7058;
  font-size: 12px;
  margin-bottom: 6px;
}
.no-betting-banner .body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 10px;
}
.no-betting-banner .body p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.55;
}
.no-betting-banner .body p strong { color: var(--text-primary); }

/* ---------- Features grid ---------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.feature-card {
  background: var(--bg-card-elevated);
  border: 1.5px solid var(--bg-card);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(58, 34, 24, 0.06);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 106, 152, 0.4);
  box-shadow: 0 14px 36px rgba(58, 34, 24, 0.12);
}
.feature-card:hover::before { opacity: 1; }

.feature-card .ico {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(231, 139, 181, 0.18);
  border: 1.5px solid rgba(212, 106, 152, 0.3);
  color: var(--primary-deep);
  margin-bottom: 18px;
  font-size: 28px;
}
.feature-card.alt .ico {
  background: rgba(155, 123, 184, 0.18);
  border-color: rgba(126, 93, 160, 0.3);
  color: var(--secondary-deep);
}
.feature-card.gold .ico {
  background: rgba(240, 194, 74, 0.20);
  border-color: rgba(240, 194, 74, 0.45);
  color: #A07A14;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.005em;
  margin: 0 0 10px;
  color: var(--text-primary);
}

.feature-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ---------- Stat strip ---------- */

.stat-strip {
  background:
    linear-gradient(135deg, rgba(231, 139, 181, 0.12) 0%, rgba(155, 123, 184, 0.12) 100%),
    var(--bg-card-elevated);
  padding: 60px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 60px);
  background: var(--grad-text-candy);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat .num.purple {
  background: linear-gradient(135deg, #9B7BB8 0%, #7E5DA0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .lbl {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 12px;
}

@media (max-width: 700px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 18px; }
}

/* ---------- Sweet 5 row ---------- */

.sweet5-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.sweet5-tile {
  background: var(--bg-card-elevated);
  border: 1.5px solid var(--legendary);
  border-radius: 20px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(240, 194, 74, 0.18), 0 0 0 1px rgba(240, 194, 74, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sweet5-tile:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(240, 194, 74, 0.28); }

.sweet5-tile img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 10px;
  filter: drop-shadow(0 6px 14px rgba(231, 139, 181, 0.35));
}

.sweet5-tile .nm {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: var(--text-primary);
  line-height: 1.25;
}
.sweet5-tile .stars {
  margin-top: 6px;
  color: var(--legendary);
  font-size: 12px;
  letter-spacing: 1px;
}

@media (max-width: 700px) {
  .sweet5-row { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Screenshots Swiper ---------- */

.screens-wrap {
  position: relative;
  padding: 0 8px;
}

.screen-frame {
  width: 240px;
  max-width: 60vw;
  aspect-ratio: 1260 / 2736;
  margin: 0 auto;
  background: #2A1B33;
  border-radius: 36px;
  padding: 9px;
  border: 1.5px solid rgba(231, 139, 181, 0.35);
  box-shadow:
    0 30px 64px rgba(58, 34, 24, 0.30),
    0 0 0 1px rgba(212, 106, 152, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
}

.screen-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 6px;
  background: #15080F;
  border-radius: 4px;
  z-index: 2;
}

.screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.swiper { padding: 30px 0 50px; }
.swiper-pagination-bullet { background: var(--text-tertiary); opacity: 0.6; }
.swiper-pagination-bullet-active { background: var(--primary-deep); opacity: 1; }
.swiper-button-next, .swiper-button-prev { color: var(--primary-deep); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 22px; font-weight: 800; }

.screen-caption {
  text-align: center;
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ---------- Categories pill row ---------- */

.cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 30px;
  max-width: 820px;
}

.tag-pill {
  display: inline-block;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  border-radius: 999px;
  background: var(--bg-card-elevated);
  border: 1.5px solid var(--divider);
  color: var(--text-secondary);
}
.tag-pill.pink { color: #fff; background: var(--grad-primary); border-color: transparent; }
.tag-pill.purple { color: #fff; background: linear-gradient(135deg, #B79CD1 0%, #7E5DA0 100%); border-color: transparent; }
.tag-pill.gold { color: #6B4D08; background: linear-gradient(135deg, #FFD982 0%, #F0C24A 100%); border-color: transparent; }
.tag-pill.mint { color: #275947; background: linear-gradient(135deg, #C2EBDA 0%, #A8DEC9 100%); border-color: transparent; }
.tag-pill.rasp { color: #fff; background: linear-gradient(135deg, #E06B82 0%, #C03A56 100%); border-color: transparent; }

/* ---------- Jackpot callout ---------- */

.jackpot-section {
  position: relative;
  overflow: hidden;
  background: var(--grad-chalkboard);
  color: var(--text-on-chalkboard);
}
.jackpot-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/jackpot.webp') center/cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}
.jackpot-section .container { position: relative; z-index: 1; }

.jackpot-section .section-head h2,
.jackpot-section .section-head p { color: var(--text-on-chalkboard); }
.jackpot-section .section-head p { color: rgba(251, 243, 228, 0.85); }
.jackpot-section .t-eyebrow { color: var(--legendary); }

.jackpot-card {
  background: rgba(251, 243, 228, 0.06);
  border: 2px solid var(--legendary);
  border-radius: 24px;
  padding: 36px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(240, 194, 74, 0.25);
  backdrop-filter: blur(4px);
}

.jackpot-card .stamp {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(192, 58, 86, 0.18);
  border: 1.5px solid var(--accent);
  color: #FFB8C5;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 18px;
  transform: rotate(-2deg);
}

.jackpot-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--text-on-chalkboard);
}

.jackpot-card .verbatim {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(22px, 3.2vw, 32px);
  background: var(--grad-jackpot);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
  margin: 20px 0;
  padding: 14px 20px;
  background-color: rgba(240, 194, 74, 0.08);
  border-left: 4px solid var(--legendary);
  border-radius: 0 12px 12px 0;
}

.jackpot-card .body-text {
  color: rgba(251, 243, 228, 0.85);
  font-size: 16.5px;
  line-height: 1.65;
}
.jackpot-card .body-text strong { color: var(--text-on-chalkboard); }

.ai-strip {
  margin-top: 32px;
  background: rgba(0, 0, 0, 0.22);
  border: 1.5px dashed rgba(240, 194, 74, 0.5);
  border-radius: 14px;
  padding: 18px 24px;
  color: rgba(251, 243, 228, 0.85);
  font-size: 14.5px;
  line-height: 1.55;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ai-strip .ico-ai {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 194, 74, 0.18);
  border: 1px solid rgba(240, 194, 74, 0.45);
  color: var(--legendary);
}
.ai-strip strong { color: var(--text-on-chalkboard); }

/* ---------- CTA section ---------- */

.cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #F7E8D6 0%, #FBF3E4 100%);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/cta_bg.webp') center/cover no-repeat;
  opacity: 0.22;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(240, 194, 74, 0.20) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(231, 139, 181, 0.20) 0%, transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(155, 123, 184, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 84px);
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 0 0 18px;
}
.cta-section h2 .stroke { -webkit-text-stroke: 2.5px var(--primary-deep); color: transparent; }
.cta-section h2 .gradient-text { display: inline-block; }

.cta-section p {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ---------- Page hero (legal/contact) ---------- */

.page-hero {
  padding: 100px 0 60px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(231, 139, 181, 0.20) 0%, transparent 65%),
    var(--grad-shop-bg);
  text-align: center;
  border-bottom: 1px solid var(--divider);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 7vw, 76px);
  letter-spacing: -0.02em;
}

.page-hero .sub {
  margin: 18px auto 0;
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 640px;
}

/* ---------- Legal content ---------- */

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 20px 100px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.legal-content .meta {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--primary-deep);
  margin-bottom: 24px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  margin: 38px 0 14px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  margin: 26px 0 10px;
  color: var(--text-primary);
}

.legal-content p, .legal-content ul, .legal-content ol {
  margin: 0 0 14px;
  text-align: left;
}
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--text-primary); font-weight: 700; }
.legal-content a { color: var(--secondary-deep); font-weight: 600; }
.legal-content a:hover { color: var(--primary-deep); }

/* ---------- Contact ---------- */

.contact-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}

.contact-card {
  background: var(--bg-card-elevated);
  border: 1.5px solid var(--bg-card);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 22px 50px rgba(58, 34, 24, 0.12);
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.field input, .field textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--divider);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-tertiary); }
.field input:focus, .field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(231, 139, 181, 0.22);
}
.field textarea { min-height: 140px; resize: vertical; }

.contact-info {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--divider);
  color: var(--text-secondary);
  font-size: 14px;
  text-align: center;
}

.text-center { text-align: center; }

/* ---------- Footer ---------- */

footer {
  background: linear-gradient(180deg, #F7E8D6 0%, #ECDAC0 100%);
  border-top: 1px solid var(--divider);
  padding: 64px 0 30px;
  color: var(--text-secondary);
  font-size: 14.5px;
}

footer .inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

footer h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  margin: 0 0 14px;
  text-transform: uppercase;
}

footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }
footer a { color: var(--text-secondary); }
footer a:hover { color: var(--primary-deep); }

footer .col-brand p {
  margin: 14px 0 0;
  max-width: 320px;
  line-height: 1.55;
}

.compliance-footer {
  border-top: 1px solid var(--divider);
  padding-top: 22px;
  margin-top: 12px;
  color: var(--text-tertiary);
  font-size: 13px;
  text-align: center;
  line-height: 1.7;
}
.compliance-footer .strong { color: var(--text-primary); font-weight: 700; }

footer .legal {
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
}

@media (max-width: 800px) {
  footer .inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  footer .inner { grid-template-columns: 1fr; }
}

/* ---------- Privacy acceptance button ---------- */

.privacy-accept-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 16px 22px;
  background: linear-gradient(180deg, rgba(251, 243, 228, 0) 0%, var(--bg-app) 35%);
  display: flex;
  justify-content: center;
}
.privacy-accept-btn.hidden { display: none; }

.accept-btn {
  width: 100%;
  max-width: 440px;
  min-height: 56px;
  border: none;
  background: var(--grad-primary);
  color: var(--text-on-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(212, 106, 152, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 0 24px;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.accept-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }

/* ---------- Utility ---------- */

.flex-center { display: flex; align-items: center; justify-content: center; }

/* ---------- Responsive ---------- */

@media (max-width: 700px) {
  section.section { padding: 70px 0; }
  .hero { min-height: auto; }
  .hero .container { padding-top: 60px; padding-bottom: 60px; }
  .no-betting-banner { padding: 24px 20px; }
  .jackpot-card { padding: 26px 22px; }
  .contact-card { padding: 28px 22px; }
  .cta-section { padding: 80px 0; }
}
