/* ═══════════════════════════════════════════════
   Sweet Bonanza AU — Main Stylesheet
   ═══════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
  --candy-pink:    #FF4D8B;
  --candy-yellow:  #FFD93D;
  --candy-mint:    #4DFFB8;
  --candy-purple:  #A855F7;
  --candy-orange:  #FF8C42;
  --deep-bg:       #0D0A1A;
  --mid-bg:        #150F2E;
  --card-bg:       #1C1335;
  --card-border:   rgba(168, 85, 247, 0.18);
  --text-primary:  #F0EAF8;
  --text-muted:    #9B8BB4;
  --text-accent:   #FFD93D;
  --radius-lg:     16px;
  --radius-md:     10px;
  --radius-sm:     6px;
  --font-display:  'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --nav-h:         64px;
  --sticky-bar-h:  56px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--deep-bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.5;
}

/* ─── NAVIGATION ─── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(13,10,26,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: var(--nav-h);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  text-decoration: none; color: var(--text-primary); letter-spacing: -0.01em;
}
.nav-logo span { color: var(--candy-pink); }

.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  font-size: 0.85rem; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
  font-family: var(--font-body);
}
.nav-links a:hover { color: var(--text-primary); }

/* ─── STICKY CTA BAR ─── */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(13, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 77, 139, 0.2);
  height: var(--sticky-bar-h);
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  padding: 0 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 4px;
  white-space: nowrap;
}

.sticky-btn-play {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--candy-pink), var(--candy-purple));
  color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  padding: 10px 22px; border-radius: 100px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(255, 77, 139, 0.4);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  letter-spacing: 0.01em;
}
.sticky-btn-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255, 77, 139, 0.55);
}

.sticky-btn-bonus {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255, 217, 61, 0.1);
  border: 1px solid rgba(255, 217, 61, 0.4);
  color: var(--candy-yellow);
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  padding: 10px 22px; border-radius: 100px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
}
.sticky-btn-bonus:hover {
  background: rgba(255, 217, 61, 0.18);
  border-color: rgba(255, 217, 61, 0.7);
  transform: translateY(-1px);
}

.sticky-bar-divider {
  width: 1px; height: 28px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  padding: 120px 24px 100px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-glow-1 { width: 600px; height: 600px; background: rgba(255,77,139,0.22);   top: -100px;  left: -150px; }
.hero-glow-2 { width: 500px; height: 500px; background: rgba(168,85,247,0.18);   bottom: -50px; right: -100px; }
.hero-glow-3 { width: 300px; height: 300px; background: rgba(255,217,61,0.12);   top: 30%;     left: 45%; }

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.78rem; color: var(--text-muted);
  margin-bottom: 24px; font-family: var(--font-display);
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--candy-yellow); }
.breadcrumb span { color: var(--candy-purple); }

/* ─── HERO BADGE ─── */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,77,139,0.12);
  border: 1px solid rgba(255,77,139,0.3);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.78rem; font-family: var(--font-display);
  color: var(--candy-pink); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeSlideIn 0.6s ease both;
}
.hero-badge::before {
  content: '●'; font-size: 0.5rem;
  animation: pulse 1.5s infinite;
}

/* ─── HERO TITLE ─── */
h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 20px;
  animation: fadeSlideIn 0.7s ease 0.1s both;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--candy-pink), var(--candy-yellow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.08rem; color: var(--text-muted); max-width: 540px;
  margin-bottom: 32px; font-weight: 300;
  animation: fadeSlideIn 0.7s ease 0.2s both;
}

.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeSlideIn 0.7s ease 0.3s both;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--candy-pink), var(--candy-purple));
  color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 0.95rem; padding: 15px 12px; border-radius: 100px;
  text-decoration: none; letter-spacing: 0.02em;
  box-shadow: 0 8px 32px rgba(255,77,139,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,77,139,0.5);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-primary); font-family: var(--font-display); font-weight: 600;
  font-size: 0.95rem; padding: 15px 9px; border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}

/* ─── STATS CARD ─── */
.stats-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: fadeSlideIn 0.8s ease 0.2s both;
}

.stats-card-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.game-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--candy-pink), var(--candy-yellow));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.game-title-small  { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.game-subtitle-small { font-size: 0.78rem; color: var(--text-muted); }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-item {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm); padding: 14px;
}
.stat-label {
  font-size: 0.72rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px;
}
.stat-value { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--candy-yellow); }
.stat-value.pink   { color: var(--candy-pink); }
.stat-value.mint   { color: var(--candy-mint); }
.stat-value.purple { color: var(--candy-purple); }

.rating-row {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: space-between;
}
.stars { color: var(--candy-yellow); font-size: 1rem; letter-spacing: 2px; }
.rating-text { font-size: 0.8rem; color: var(--text-muted); }

/* ─── PAGE WRAPPER ─── */
.page-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── SECTIONS ─── */
.section {
  padding: 80px 0; position: relative;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section.revealed { opacity: 1; transform: translateY(0); }
.section + .section { border-top: 1px solid rgba(255,255,255,0.05); }

/* ─── TYPOGRAPHY ─── */
h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative; padding-left: 20px;
}
h2.section-title::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 70%; border-radius: 2px;
  background: linear-gradient(to bottom, var(--candy-pink), var(--candy-purple));
}

h3.sub-title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  margin: 32px 0 12px; color: var(--text-accent);
}

p { margin-bottom: 16px; color: var(--text-muted); }
p strong { color: var(--text-primary); }

/* ─── SPECS TABLE ─── */
.specs-table {
  width: 100%; border-collapse: collapse;
  margin: 28px 0;
}
.specs-table th, .specs-table td {
  padding: 14px 20px; text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.92rem;
}
.specs-table th {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); background: rgba(255,255,255,0.02);
}
.specs-table td:first-child { color: var(--text-muted); width: 45%; }
.specs-table td:last-child  { color: var(--text-primary); font-weight: 500; }
.specs-table tr:hover td { background: rgba(255,255,255,0.025); }

.badge-inline {
  display: inline-block;
  background: rgba(255,77,139,0.15);
  border: 1px solid rgba(255,77,139,0.3);
  color: var(--candy-pink); border-radius: 100px;
  padding: 2px 10px; font-size: 0.75rem; font-family: var(--font-display);
}

/* ─── FEATURES GRID ─── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin: 32px 0;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: border-color 0.25s, transform 0.25s;
}
.feature-card:hover {
  border-color: rgba(255,77,139,0.35);
  transform: translateY(-3px);
}
.feature-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.feature-card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; margin-bottom: 10px; color: var(--text-primary);
}
.feature-card p { font-size: 0.88rem; margin: 0; }

/* ─── STEPS LIST ─── */
.steps-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.steps-list li {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.steps-list li:last-child { border-bottom: none; }

.step-num {
  flex-shrink: 0; width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--candy-pink), var(--candy-purple));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.9rem;
}
.step-content h4 {
  font-family: var(--font-display); font-weight: 700;
  margin-bottom: 6px; color: var(--text-primary); font-size: 1rem;
}
.step-content p { margin: 0; font-size: 0.88rem; }

/* ─── MULTIPLIER BOMBS ─── */
.multiplier-bombs {
  display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0;
}
.bomb {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.85rem;
  border: 2px solid;
  position: relative; overflow: hidden;
}
.bomb::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 70%);
}
.bomb-2   { background: rgba(77,255,184,0.1);  border-color: var(--candy-mint);   color: var(--candy-mint); }
.bomb-5   { background: rgba(255,217,61,0.1);  border-color: var(--candy-yellow); color: var(--candy-yellow); }
.bomb-10  { background: rgba(255,140,66,0.1);  border-color: var(--candy-orange); color: var(--candy-orange); }
.bomb-25  { background: rgba(255,77,139,0.1);  border-color: var(--candy-pink);   color: var(--candy-pink); }
.bomb-50  { background: rgba(168,85,247,0.12); border-color: var(--candy-purple); color: var(--candy-purple); }
.bomb-100 {
  background: linear-gradient(135deg, rgba(255,77,139,0.2), rgba(168,85,247,0.2));
  border-color: var(--candy-pink); color: var(--text-accent);
  box-shadow: 0 0 20px rgba(255,77,139,0.3);
}

/* ─── COMPARISON TABLE ─── */
.compare-wrap { overflow-x: auto; margin: 28px 0; }
.compare-table {
  width: 100%; border-collapse: collapse; min-width: 500px;
}
.compare-table th {
  background: rgba(255,255,255,0.04); padding: 14px 20px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 2px solid rgba(255,77,139,0.3);
}
.compare-table th.active { color: var(--candy-pink); }
.compare-table td {
  padding: 13px 20px; font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.compare-table td:first-child { color: var(--text-muted); }
.compare-table tr:hover td    { background: rgba(255,255,255,0.02); }
.check { color: var(--candy-mint); }
.cross { color: rgba(255,255,255,0.25); }
.highlight-col { background: rgba(255,77,139,0.04); }

/* ─── TIPS GRID ─── */
.tips-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px; margin: 24px 0;
}
.tip-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md); padding: 20px;
  border-left: 3px solid var(--candy-purple);
}
.tip-card h4 {
  font-family: var(--font-display); font-size: 0.9rem;
  font-weight: 700; margin-bottom: 8px;
}
.tip-card p { font-size: 0.85rem; margin: 0; }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md); overflow: hidden;
}

.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 24px; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.95rem; color: var(--text-primary);
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }

.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,77,139,0.15);
  border: 1px solid rgba(255,77,139,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--candy-pink); font-size: 0.85rem;
  transition: transform 0.3s, background 0.2s;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: rgba(255,77,139,0.25);
}

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.7;
}

/* ─── CASINO LIST ─── */
.casino-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.casino-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; gap: 20px; padding: 20px 24px;
  transition: border-color 0.2s;
}
.casino-item:hover { border-color: rgba(255,77,139,0.35); }

.casino-logo {
  width: 52px; height: 52px; border-radius: 10px;
  background: linear-gradient(135deg, var(--candy-purple), var(--candy-pink));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.casino-info { flex: 1; }
.casino-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.95rem; margin-bottom: 6px;
}
.casino-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 0.72rem; padding: 2px 10px; border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
}
.tag.green {
  background: rgba(77,255,184,0.08);
  border-color: rgba(77,255,184,0.2);
  color: var(--candy-mint);
}
.casino-bonus { text-align: right; flex-shrink: 0; }
.casino-bonus-amount {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.05rem; color: var(--candy-yellow);
}
.casino-bonus-label { font-size: 0.72rem; color: var(--text-muted); }

.casino-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--candy-pink), var(--candy-purple));
  color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 0.82rem; padding: 10px 11px; border-radius: 100px;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: opacity 0.2s;
}
.casino-cta:hover { opacity: 0.85; }

.demo-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 28px 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
}

.demo-preview {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.demo-preview-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,77,139,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(168,85,247,0.15) 0%, transparent 60%);
}

.demo-preview-content {
  position: relative; z-index: 1;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
}
.demo-preview-content .demo-emoji { font-size: 4rem; }
.demo-preview-content h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.4rem; color: var(--text-primary);
}
.demo-preview-content p {
  font-size: 0.88rem; color: var(--text-muted); margin: 0;
}

.btn-demo-launch {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--candy-pink), var(--candy-purple));
  color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 16px 36px; border-radius: 100px; border: none; cursor: pointer;
  box-shadow: 0 8px 32px rgba(255,77,139,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}
.btn-demo-launch:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(255,77,139,0.6);
}

.demo-frame-wrap {
  position: relative;
  width: 100%;
  height: 520px;
}
.demo-frame-wrap iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}

@media (max-width: 600px) {
  .demo-preview    { height: 320px; }
  .demo-frame-wrap { height: 380px; }
}

/* ─── RESPONSIBLE GAMBLING NOTICE ─── */
.rg-notice {
  background: rgba(255,140,66,0.08);
  border: 1px solid rgba(255,140,66,0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px; margin: 40px 0;
  display: flex; gap: 16px; align-items: flex-start;
}
.rg-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.rg-text { font-size: 0.85rem; color: var(--text-muted); }
.rg-text strong { color: var(--candy-orange); }
.rg-text a { color: var(--candy-orange); }

/* ─── META ROW ─── */
.meta-row {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 0.78rem; color: var(--text-muted);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 48px;
}
.meta-row span { display: flex; align-items: center; gap: 6px; }
.meta-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

/* ─── AUTHOR BOX ─── */
.author-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  margin: 40px 0;
}
.author-avatar {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--candy-purple), var(--candy-mint));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.author-name { font-family: var(--font-display); font-weight: 700; margin-bottom: 2px; }
.author-role { font-size: 0.78rem; color: var(--candy-mint); margin-bottom: 8px; }
.author-bio  { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 24px 80px; /* extra bottom padding for sticky bar */
  text-align: center;
  color: var(--text-muted); font-size: 0.8rem;
}
footer a { color: var(--candy-orange); text-decoration: none; }
footer a:hover { text-decoration: underline; }



/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .stats-card { display: none; }
}

@media (max-width: 640px) {
  .hero { padding: 100px 16px 80px; }
  .section { padding: 60px 0; }
  .casino-item { flex-wrap: wrap; }
  .casino-bonus { display: none; }
  .nav-links { display: none; }
  .sticky-bar-label { display: none; }
  .sticky-bar-divider { display: none; }
}
