/* ===================================================
   OzwinGuide — style.css v20260430a
   Luxury Dark Glassmorphism — Ozwin Casino AU
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-primary:        #080B18;
  --bg-secondary:      #0D1228;
  --bg-tertiary:       #141836;
  --bg-glass:          rgba(255,255,255,0.06);
  --bg-glass-hover:    rgba(255,255,255,0.10);
  --bg-glass-strong:   rgba(255,255,255,0.14);
  --accent-gold:       #E4B93C;
  --accent-gold-light: #F5D060;
  --accent-gold-dim:   rgba(228,185,60,0.15);
  --accent-gold-glow:  rgba(228,185,60,0.25);
  --accent-purple:     #8B5CF6;
  --accent-purple-light:#A78BFA;
  --accent-purple-dim: rgba(139,92,246,0.15);
  --text-primary:      #F1F5F9;
  --text-muted:        #94A3B8;
  --text-light:        #CBD5E1;
  --success:           #10B981;
  --danger:            #F87171;
  --border:            rgba(139,92,246,0.20);
  --border-gold:       rgba(228,185,60,0.30);
  --border-glass:      rgba(255,255,255,0.08);
  --shadow:            0 8px 40px rgba(0,0,0,0.55);
  --shadow-gold:       0 4px 28px rgba(228,185,60,0.22);
  --shadow-purple:     0 4px 28px rgba(139,92,246,0.22);
  --max-width:         1200px;
  --radius:            20px;
  --radius-sm:         12px;
  --radius-xs:         8px;
  --transition:        0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
}

a { color: var(--accent-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
strong { color: var(--text-primary); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.mw-860 { max-width: 860px; margin-left: auto; margin-right: auto; }

/* ===== FLOATING GLASS HEADER ===== */
.site-header {
  position: fixed;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 1000;
  background: rgba(8, 11, 24, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 4px 32px rgba(0,0,0,0.45);
}
.site-header.header-hidden { transform: translateY(calc(-100% - 16px)); }
.site-header.scrolled { box-shadow: 0 8px 48px rgba(0,0,0,0.65); }

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  gap: 16px;
}
.header-spacer { height: 86px; }

/* ===== LOGO ===== */
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0; }
.logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-purple));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800; font-size: 1rem; color: #fff;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem; font-weight: 700;
  color: var(--text-primary); letter-spacing: -0.3px;
}
.logo-text em { font-style: italic; color: var(--accent-gold); }

/* ===== DESKTOP NAV ===== */
.nav-main { flex: 1; display: flex; justify-content: center; }
.nav-desktop { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-desktop li a {
  display: block; padding: 6px 11px; border-radius: var(--radius-xs);
  color: var(--text-muted); font-size: 0.875rem; font-weight: 500;
  transition: color var(--transition), background var(--transition);
}
.nav-desktop li a:hover, .nav-desktop li a.active {
  color: var(--text-primary); background: var(--accent-purple-dim);
}
.nav-more { position: relative; }
.nav-more-toggle { cursor: pointer; user-select: none; }
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px; min-width: 200px;
  box-shadow: var(--shadow); list-style: none; z-index: 200;
}
.nav-more.open .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: block; padding: 8px 12px; border-radius: var(--radius-xs);
  color: var(--text-muted); font-size: 0.875rem; white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown li a:hover { color: var(--text-primary); background: var(--bg-glass); }

/* ===== HEADER CTA ===== */
.header-cta {
  flex-shrink: 0;
  padding: 9px 18px; border-radius: var(--radius-xs);
  background: var(--accent-gold);
  color: #0D0A00 !important;
  font-weight: 700; font-size: 0.875rem;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.header-cta:hover {
  background: var(--accent-gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
  color: #0D0A00 !important;
}

/* ===== HAMBURGER ===== */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 38px; height: 38px; gap: 5px; cursor: pointer;
  background: var(--bg-glass); border: 1px solid var(--border-glass);
  border-radius: var(--radius-xs); padding: 0;
}
.nav-hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE FULL-SCREEN OVERLAY ===== */
.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(8, 11, 24, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav-overlay.open { display: flex; }

.mobile-nav-inner {
  max-width: 420px; width: 100%; margin: 0 auto;
  padding: 24px 24px 48px;
  display: flex; flex-direction: column; min-height: 100%;
}
.mobile-nav-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.mobile-nav-close {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-glass); border: 1px solid var(--border-glass);
  border-radius: var(--radius-xs); cursor: pointer; font-size: 1.4rem;
  color: var(--text-muted); transition: color var(--transition), background var(--transition);
}
.mobile-nav-close:hover { color: var(--text-primary); background: var(--bg-glass-hover); }

.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-nav-links a {
  display: block; padding: 13px 16px; border-radius: var(--radius-xs);
  color: var(--text-light); font-size: 1rem; font-weight: 500;
  border: 1px solid transparent;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.mobile-nav-links a:hover, .mobile-nav-links a.active {
  color: var(--text-primary); background: var(--bg-glass);
  border-color: var(--border);
}
.mobile-nav-cta { margin-top: 28px; }
.mobile-nav-cta .btn { width: 100%; text-align: center; justify-content: center; }
.mobile-nav-disclaimer { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 16px; }

/* ===== AGE VERIFICATION ===== */
.age-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(4, 6, 14, 0.97);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.age-overlay.hidden { display: none; }
.age-modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 460px; width: 100%;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  color: #0D0A00; font-size: 1.5rem; font-weight: 800;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}
.age-modal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 12px;
}
.age-modal p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 28px; }
.age-buttons { display: flex; gap: 12px; justify-content: center; }
.btn-confirm {
  padding: 13px 28px; border-radius: var(--radius-xs);
  background: var(--accent-gold); color: #0D0A00;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  border: none; transition: background var(--transition), box-shadow var(--transition);
}
.btn-confirm:hover { background: var(--accent-gold-light); box-shadow: var(--shadow-gold); }
.btn-exit {
  padding: 13px 28px; border-radius: var(--radius-xs);
  background: transparent; color: var(--text-muted);
  font-weight: 500; font-size: 1rem; cursor: pointer;
  border: 1px solid var(--border-glass);
  transition: color var(--transition), border-color var(--transition);
}
.btn-exit:hover { color: var(--text-primary); border-color: var(--border); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 26px; border-radius: var(--radius-xs);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: none; text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--accent-gold); outline-offset: 2px; }

.btn-primary {
  background: var(--accent-gold);
  color: #0D0A00 !important;
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--accent-gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
  color: #0D0A00 !important;
}

.btn-secondary {
  background: var(--bg-glass-strong);
  color: var(--text-primary) !important;
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--accent-purple-dim);
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-purple);
  transform: translateY(-1px);
  color: var(--text-primary) !important;
}

.btn-ghost {
  background: transparent;
  color: var(--text-light) !important;
  border: 1px solid var(--border-glass);
}
.btn-ghost:hover {
  background: var(--bg-glass);
  color: var(--text-primary) !important;
  border-color: var(--border);
}

.btn-large { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-link {
  color: var(--accent-gold); font-weight: 600; font-size: 0.875rem;
  display: inline-flex; align-items: center; gap: 4px;
  transition: color var(--transition), gap var(--transition);
}
.btn-link:hover { color: var(--accent-gold-light); gap: 8px; }

/* ===== SECTIONS ===== */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 16px;
  line-height: 1.25;
}
.section-subtitle {
  font-size: 1rem; color: var(--text-muted);
  max-width: 620px; margin-bottom: 40px; line-height: 1.7;
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 20% 40%, rgba(139,92,246,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(228,185,60,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 50% 90%, rgba(139,92,246,0.08) 0%, transparent 50%);
}
.hero-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 860px; margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-purple-dim);
  border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.8rem; font-weight: 600; color: var(--accent-purple-light);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

.hero-rating {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 20px;
}
.hero-stars { display: flex; gap: 3px; }
.hero-stars svg { width: 20px; height: 20px; fill: var(--accent-gold); }
.hero-stars svg.half { fill: url(#halfStar); }
.hero-rating-text { font-size: 0.95rem; color: var(--text-muted); }
.hero-rating-text strong { color: var(--text-primary); }

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-h1 em { font-style: italic; color: var(--accent-gold); }

.hero-lead {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 36px;
  max-width: 680px; margin-left: auto; margin-right: auto;
}

.hero-cta-row {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; margin-bottom: 20px;
}
.hero-disclaimer {
  font-size: 0.78rem; color: var(--text-muted);
  max-width: 540px; margin: 0 auto;
}
.hero-disclaimer a { color: var(--text-muted); text-decoration: underline; }

/* ===== HERO STATS GLASS CARD ===== */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  margin-top: 56px;
  overflow: hidden;
}
.hero-stat {
  padding: 24px 20px; text-align: center;
  border-right: 1px solid var(--border-glass);
  transition: background var(--transition);
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: var(--bg-glass-hover); }
.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--accent-gold); display: block; margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 18px 0; overflow-x: auto;
}
.trust-bar-list {
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap; list-style: none;
  justify-content: center; flex-wrap: wrap;
  padding: 0 4px;
}
.trust-bar-list li {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.82rem; font-weight: 500; color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.trust-bar-list li:hover { border-color: var(--border); color: var(--text-primary); }
.trust-bar-list li svg { width: 15px; height: 15px; fill: var(--accent-gold); flex-shrink: 0; }

/* ===== GLASS CARDS ===== */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.glass-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border);
  box-shadow: var(--shadow-purple);
}
.glass-card-gold:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

/* ===== EDITORIAL BYLINE ===== */
.byline {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 16px 20px; margin-bottom: 32px;
}
.byline-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--border-gold);
  object-fit: cover; background: var(--bg-tertiary);
  flex-shrink: 0;
}
.byline-name { display: block; font-size: 0.9rem; color: var(--text-primary); }
.byline-name strong { color: var(--accent-gold); }
.byline-date { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.byline-badge {
  margin-left: auto; flex-shrink: 0;
  background: var(--accent-gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 4px 12px; font-size: 0.75rem; color: var(--accent-gold); font-weight: 600;
}

/* ===== EDITORIAL BODY ===== */
.editorial-body p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.editorial-body p:last-child { margin-bottom: 0; }
.editorial-body strong { color: var(--text-primary); }
.editorial-body a { color: var(--accent-gold); }
.editorial-body h2, .editorial-body h3 {
  font-family: 'Playfair Display', serif;
  color: var(--text-primary); margin: 28px 0 12px;
}

/* ===== QUICK FACTS TABLE ===== */
.quick-facts-wrap {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius); overflow: hidden;
}
.quick-facts-table { width: 100%; border-collapse: collapse; }
.quick-facts-table tr { border-bottom: 1px solid var(--border-glass); }
.quick-facts-table tr:last-child { border-bottom: none; }
.quick-facts-table th {
  padding: 14px 20px; text-align: left;
  color: var(--text-muted); font-size: 0.85rem; font-weight: 500;
  background: var(--bg-glass); width: 36%;
}
.quick-facts-table td {
  padding: 14px 20px; color: var(--text-primary); font-size: 0.9rem;
}
.quick-facts-table tr:hover th,
.quick-facts-table tr:hover td { background: var(--bg-glass-hover); }
.rating-inline { color: var(--accent-gold); font-weight: 700; }

/* ===== BONUS CARD ===== */
.bonus-card-featured {
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-gold);
  margin-bottom: 24px;
}
.bonus-badge {
  position: absolute; top: -12px; left: 32px;
  background: var(--accent-gold);
  color: #0D0A00; font-size: 0.75rem; font-weight: 700;
  padding: 4px 14px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.bonus-card-featured h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 20px;
}
.bonus-terms-list { list-style: none; margin-bottom: 24px; }
.bonus-terms-list li {
  padding: 10px 0; border-bottom: 1px solid var(--border-glass);
  font-size: 0.9rem; color: var(--text-muted);
  display: flex; gap: 8px;
}
.bonus-terms-list li strong { color: var(--text-primary); min-width: 140px; flex-shrink: 0; }
.bonus-terms-list li:last-child { border-bottom: none; }
.bonus-example {
  background: var(--accent-gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 16px 20px; margin-bottom: 24px;
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.6;
}
.bonus-example strong { color: var(--text-primary); }
.bonus-card-disclaimer {
  font-size: 0.75rem; color: var(--text-muted);
  margin-top: 16px; line-height: 1.5;
}

/* ===== HIGHLIGHTS GRID ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 8px;
}
.highlight-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}
.highlight-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border);
  box-shadow: var(--shadow-purple);
  transform: translateY(-3px);
}
.highlight-icon {
  width: 48px; height: 48px; border-radius: var(--radius-xs);
  background: var(--accent-purple-dim);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.highlight-icon svg { width: 22px; height: 22px; fill: var(--accent-purple-light); }
.highlight-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px;
}
.highlight-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin-bottom: 32px;
}
.game-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: default;
}
.game-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.game-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--accent-gold-dim);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.game-card-icon svg { width: 24px; height: 24px; fill: var(--accent-gold); }
.game-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 10px;
}
.game-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }

/* ===== PAYMENTS ===== */
.payments-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.payment-pill {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 16px 12px; text-align: center;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  cursor: default;
}
.payment-pill:hover {
  border-color: var(--border-gold);
  background: var(--bg-glass-hover);
  transform: translateY(-2px);
}
.payment-pill svg { margin: 0 auto 8px; display: block; }
.payment-pill span { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); }

/* ===== PROS / CONS ===== */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros-card, .cons-card {
  background: var(--bg-glass);
  border-radius: var(--radius); padding: 28px 24px;
}
.pros-card { border: 1px solid rgba(16,185,129,0.25); }
.cons-card { border: 1px solid rgba(248,113,113,0.20); }
.pros-title, .cons-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; margin-bottom: 16px;
}
.pros-title { color: var(--success); }
.cons-title { color: var(--danger); }
.pros-list li, .cons-list li {
  padding: 8px 0 8px 20px;
  position: relative;
  font-size: 0.875rem; color: var(--text-muted);
  border-bottom: 1px solid var(--border-glass);
  line-height: 1.6;
}
.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }
.pros-list li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
}
.cons-list li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--danger);
}

/* ===== SCORE BARS ===== */
.score-bars { margin-top: 8px; }
.score-bar-item { margin-bottom: 18px; }
.score-bar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.score-bar-label { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }
.score-bar-value { font-size: 0.875rem; font-weight: 700; color: var(--accent-gold); }
.score-bar-track {
  height: 6px; background: var(--bg-glass-strong);
  border-radius: 100px; overflow: hidden;
}
.score-bar-fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-gold));
  width: 0; transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== FAQ ACCORDION ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.active { border-color: var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; cursor: pointer; background: none; border: none;
  color: var(--text-primary); font-size: 0.95rem; font-weight: 600;
  font-family: 'DM Sans', sans-serif; text-align: left; gap: 12px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent-gold); }
.faq-arrow {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.faq-arrow svg { width: 12px; height: 12px; fill: var(--text-muted); transition: fill var(--transition); }
.faq-item.active .faq-arrow { transform: rotate(180deg); background: var(--accent-purple-dim); }
.faq-item.active .faq-arrow svg { fill: var(--accent-purple-light); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.75;
  border-top: 1px solid var(--border-glass);
  padding-top: 14px;
}
.faq-answer-inner a { color: var(--accent-gold); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  box-shadow: var(--shadow-gold);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(228,185,60,0.12), transparent 70%);
  pointer-events: none;
}
.cta-banner-content { flex: 1; }
.cta-banner-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 10px;
}
.cta-banner-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.cta-banner-content .cta-banner-disclaimer { font-size: 0.78rem; margin-top: 8px; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; flex-shrink: 0; }

/* ===== COMPARE CARD ===== */
.compare-cta-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.compare-cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 10px;
}
.compare-cta-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ===== VIP TIERS ===== */
.vip-tiers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.vip-tier-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.vip-tier-card.featured {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  background: var(--bg-glass-strong);
}
.vip-tier-card:hover { transform: translateY(-3px); }
.vip-tier-badge {
  display: inline-block; padding: 4px 14px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 14px;
}
.vip-tier-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px;
}
.vip-tier-perk { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }
.vip-tier-list { text-align: left; }
.vip-tier-list li {
  font-size: 0.8rem; color: var(--text-muted); padding: 5px 0;
  border-bottom: 1px solid var(--border-glass); display: flex; gap: 8px; align-items: flex-start;
}
.vip-tier-list li:last-child { border-bottom: none; }
.vip-tier-list li::before { content: '✦'; color: var(--accent-gold); font-size: 0.6rem; margin-top: 3px; flex-shrink: 0; }

/* ===== STEP GUIDE ===== */
.steps-list { display: flex; flex-direction: column; gap: 20px; }
.step-item {
  display: flex; gap: 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm); padding: 24px;
  transition: border-color var(--transition), background var(--transition);
}
.step-item:hover { border-color: var(--border); background: var(--bg-glass-hover); }
.step-number {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800; font-size: 1rem; color: #fff;
}
.step-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px;
}
.step-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ===== COMPARISON TABLE ===== */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius); }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 14px 20px; text-align: left;
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.875rem;
}
.compare-table thead th {
  background: var(--bg-secondary);
  color: var(--text-muted); font-weight: 600; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.compare-table thead th:first-child { border-radius: var(--radius-xs) 0 0 0; }
.compare-table thead th:last-child { border-radius: 0 var(--radius-xs) 0 0; }
.compare-table tbody tr { background: var(--bg-glass); transition: background var(--transition); }
.compare-table tbody tr:hover { background: var(--bg-glass-hover); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td { color: var(--text-muted); }
.compare-table td:first-child { color: var(--text-primary); font-weight: 600; }
.compare-table td strong { color: var(--accent-gold); }
.compare-table td .win { color: var(--success); font-weight: 600; }
.compare-table td .lose { color: var(--danger); }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 990;
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm); padding: 12px 16px;
  box-shadow: var(--shadow-gold);
}
.floating-cta-close {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-glass); border: 1px solid var(--border-glass);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-muted); font-size: 0.8rem;
  transition: color var(--transition), background var(--transition);
}
.floating-cta-close:hover { color: var(--text-primary); background: var(--bg-glass-hover); }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--text-muted); margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--accent-gold); }
.breadcrumbs svg { width: 12px; height: 12px; fill: var(--text-muted); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-glass);
  padding: 64px 0 48px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.10), transparent 65%);
  pointer-events: none;
}
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-purple-dim); border: 1px solid var(--border);
  border-radius: 100px; padding: 4px 14px;
  font-size: 0.78rem; font-weight: 600; color: var(--accent-purple-light);
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800; color: var(--text-primary); line-height: 1.2;
  margin-bottom: 14px; letter-spacing: -0.02em;
}
.page-hero p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; max-width: 620px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo { margin-bottom: 16px; }
.footer-tagline { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border-glass);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.85rem; color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent-gold); }
.footer-col p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-disclaimer { display: flex; align-items: flex-start; gap: 12px; max-width: 640px; }
.footer-disclaimer p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.footer-copyright { font-size: 0.78rem; color: var(--text-muted); }
.badge-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 6px;
  background: var(--danger); color: #fff;
  font-size: 0.7rem; font-weight: 800; flex-shrink: 0;
}
.small-badge {
  display: inline-flex; align-items: center;
  background: var(--accent-gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 100px; padding: 2px 10px;
  font-size: 0.72rem; color: var(--accent-gold); font-weight: 600;
}

/* ===== UTILITIES ===== */
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.text-muted { color: var(--text-muted); }
.text-gold { color: var(--accent-gold); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.78rem; }
.text-center { text-align: center; }
.font-serif { font-family: 'Playfair Display', serif; }
.divider { height: 1px; background: var(--border-glass); margin: 32px 0; }
.section-intro { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.small-link { font-size: 0.78rem; color: var(--accent-gold); }

/* Responsible gaming section */
.rg-section {
  background: var(--bg-glass);
  border: 1px solid rgba(248,113,113,0.20);
  border-radius: var(--radius); padding: 32px;
}
.rg-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--text-primary); margin-bottom: 12px;
}
.rg-section p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .vip-tiers-grid { grid-template-columns: repeat(2, 1fr); }
  .payments-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-header { top: 8px; left: 8px; right: 8px; }
  .header-spacer { height: 78px; }
  .nav-main { display: none; }
  .header-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-section { padding: 80px 0 56px; }
  .hero-h1 { font-size: 1.9rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { border-bottom: 1px solid var(--border-glass); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(3) { border-bottom: none; }
  .hero-stat:nth-child(4) { border-right: none; border-bottom: none; }

  .section { padding: 48px 0; }
  .section-title { font-size: 1.6rem; }

  .highlights-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .vip-tiers-grid { grid-template-columns: 1fr 1fr; }
  .payments-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .cta-banner { flex-direction: column; padding: 32px 24px; }
  .cta-banner-actions { align-items: stretch; width: 100%; }
  .compare-cta-card { flex-direction: column; }
  .bonus-card-featured { padding: 28px 20px; }

  .age-modal { padding: 36px 24px; }
  .age-buttons { flex-direction: column; }
  .btn-confirm, .btn-exit { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-h1 { font-size: 1.6rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .vip-tiers-grid { grid-template-columns: 1fr; }
  .payments-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ===== CONTENT LAYOUTS ===== */
/* Single-column article layout (VIP page) */
.content-container { padding: 48px 0 64px; }
.content-article { max-width: 860px; margin: 0 auto; }
.article-meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--text-muted);
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border-glass);
}
.meta-sep { color: var(--border-glass); }

/* Two-column layout — <main class="container content-layout"> */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 64px;
  align-items: start;
}
.content-primary { min-width: 0; }

/* Two-column layout — <div class="content-grid"> inside container */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 48px 0 64px;
  align-items: start;
}
.content-main { min-width: 0; }
.main-content { padding: 0; }

/* Sticky sidebar */
.content-sidebar {
  position: sticky;
  top: 102px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== REVIEW / CONTENT SECTIONS ===== */
.review-section, .content-section, .section-block { margin-bottom: 48px; }
.review-section h2, .content-section h2, .section-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 16px;
  line-height: 1.25;
}
.review-section h3, .content-section h3, .section-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 12px; margin-top: 24px;
}
.review-section p, .content-section p, .section-block p {
  color: var(--text-muted); line-height: 1.8; margin-bottom: 16px;
}
.review-section p:last-child, .content-section p:last-child, .section-block p:last-child { margin-bottom: 0; }
.review-section a, .content-section a, .section-block a { color: var(--accent-gold); }

/* ===== BREADCRUMB (ol version) ===== */
.breadcrumb ol {
  display: flex; align-items: center; gap: 6px;
  list-style: none; font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 24px; flex-wrap: wrap;
}
.breadcrumb ol li { display: flex; align-items: center; color: var(--text-muted); }
.breadcrumb ol li a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb ol li a:hover { color: var(--accent-gold); }

/* ===== BYLINE (div avatar version) ===== */
.byline-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: #fff; flex-shrink: 0;
  border: 2px solid var(--border-gold);
}
.byline-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.byline-role { font-size: 0.78rem; color: var(--text-muted); }
.star-row { display: flex; gap: 2px; align-items: center; }
.rating-value { font-size: 0.85rem; color: var(--text-muted); margin-left: 6px; }

/* ===== QUICK FACTS GRID (review page) ===== */
.section-title-sm {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 20px;
  padding: 24px 24px 0;
}
.quick-facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-fact-item {
  padding: 18px 20px; display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.quick-fact-item:nth-child(4n) { border-right: none; }
.quick-fact-item:nth-last-child(-n+4) { border-bottom: none; }
.qf-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }
.qf-value { font-size: 0.875rem; color: var(--text-primary); font-weight: 600; }

/* Fix score-bar-label used as flex container in review.html */
.score-bar-label {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
  font-size: 0.875rem; font-weight: 500; color: var(--text-muted);
}

/* ===== VIP PAGE — TIER CARDS ===== */
.vip-tier-icon {
  width: 56px; height: 56px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
}
.vip-tier-icon svg { width: 40px; height: 40px; }

.vip-tier-header {
  text-align: center; margin-bottom: 18px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border-glass);
}
.vip-tier-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 4px;
}
.vip-tier-label {
  font-size: 0.72rem; color: var(--text-muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.vip-tier-bronze .vip-tier-icon { background: rgba(205,127,50,0.12); border-radius: 50%; }
.vip-tier-silver .vip-tier-icon { background: rgba(176,176,176,0.12); border-radius: 50%; }
.vip-tier-gold .vip-tier-icon   { background: var(--accent-gold-dim); border-radius: 50%; }
.vip-tier-platinum .vip-tier-icon { background: var(--accent-purple-dim); border-radius: 50%; }

.vip-perks-list { margin-bottom: 18px; }
.vip-perks-list li {
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.55;
  padding: 7px 0 7px 16px; position: relative;
  border-bottom: 1px solid var(--border-glass);
}
.vip-perks-list li:last-child { border-bottom: none; }
.vip-perks-list li::before {
  content: '✦'; color: var(--accent-gold); font-size: 0.55rem;
  position: absolute; left: 0; top: 10px;
}

.vip-tier-cashback {
  background: var(--accent-gold-dim); border: 1px solid var(--border-gold);
  border-radius: var(--radius-xs); padding: 10px 14px;
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
}
.cashback-label { font-size: 0.72rem; color: var(--text-muted); }
.cashback-value { font-size: 0.875rem; font-weight: 700; color: var(--accent-gold); }

/* ===== INFO CARDS GRID (VIP earn points) ===== */
.info-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 24px 0;
}
.info-card {
  background: var(--bg-glass); border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm); padding: 24px 20px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  cursor: default;
}
.info-card:hover {
  background: var(--bg-glass-hover); border-color: var(--border);
  transform: translateY(-2px);
}
.info-card-icon {
  width: 44px; height: 44px; border-radius: var(--radius-xs);
  background: var(--accent-gold-dim); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.info-card-icon svg { width: 22px; height: 22px; }
.info-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 8px;
}
.info-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ===== STEP CONTENT (VIP steps — HTML uses .step-content not .step-body) ===== */
.step-content { flex: 1; }
.step-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px;
}
.step-content p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ===== DISCLAIMER NOTE ===== */
.disclaimer-note {
  font-size: 0.78rem; color: var(--text-muted); line-height: 1.6;
  margin-top: 16px; display: block;
}

/* ===== BONUS CARD INNER (review + bonuses pages) ===== */
.bonus-card-badge {
  position: absolute; top: -12px; left: 32px;
  background: var(--accent-gold); color: #0D0A00;
  font-size: 0.75rem; font-weight: 700; padding: 4px 14px;
  border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em;
}
.bonus-card-inner { display: flex; flex-direction: column; gap: 16px; }
.bonus-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 800; color: var(--accent-gold); line-height: 1;
}
.bonus-amount span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.bonus-spins { font-size: 1rem; font-weight: 600; color: var(--text-primary); }
.bonus-detail-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  background: var(--bg-glass); border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm); padding: 16px;
}
.bonus-detail-item { display: flex; flex-direction: column; gap: 4px; text-align: center; }
.bd-label {
  font-size: 0.7rem; color: var(--text-muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.bd-value { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.bonus-disclaimer { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* ===== BONUS CARDS GRID (reload bonuses) ===== */
.bonus-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 24px 0;
}
.bonus-card {
  background: var(--bg-glass); border: 1px solid var(--border-glass);
  border-radius: var(--radius); padding: 24px 20px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  cursor: default;
}
.bonus-card:hover {
  background: var(--bg-glass-hover); border-color: var(--border-gold);
  transform: translateY(-3px); box-shadow: var(--shadow-gold);
}
.bc-icon {
  width: 48px; height: 48px; border-radius: var(--radius-xs);
  background: var(--accent-gold-dim); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.bc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px;
}
.bc-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 800; color: var(--accent-gold); margin-bottom: 10px;
}
.bc-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ===== EXPLAINER BOX + TIPS LIST (bonuses page) ===== */
.explainer-box { padding: 24px 28px; margin: 20px 0; }
.explainer-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px;
}
.explainer-box p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 10px; }
.explainer-list { list-style: none; margin: 8px 0; }
.explainer-list li {
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.7;
  padding: 7px 0 7px 22px; position: relative;
  border-bottom: 1px solid var(--border-glass);
}
.explainer-list li:last-child { border-bottom: none; }
.explainer-list li::before { content: '→'; color: var(--accent-gold); position: absolute; left: 0; }
.explainer-list li strong { color: var(--text-primary); }

.tips-list { list-style: none; counter-reset: tip-counter; margin: 16px 0; display: flex; flex-direction: column; gap: 10px; }
.tips-list li {
  counter-increment: tip-counter; position: relative;
  background: var(--bg-glass); border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm); padding: 14px 18px 14px 52px;
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.75;
  transition: border-color var(--transition), background var(--transition);
}
.tips-list li:hover { background: var(--bg-glass-hover); border-color: var(--border); }
.tips-list li::before {
  content: counter(tip-counter); position: absolute; left: 14px; top: 12px;
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-gold));
  color: #fff; font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 26px; text-align: center;
}
.tips-list li strong { color: var(--text-primary); }

/* CTA banner variants */
.cta-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px;
}
.cta-disclaimer { font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; line-height: 1.5; }
.cta-banner-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-banner-text { flex: 1; }
.cta-banner-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px;
}
.cta-banner-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 8px; }

/* ===== SIDEBAR WIDGETS ===== */
.sidebar-widget, .sidebar-card {
  background: var(--bg-glass); border: 1px solid var(--border-glass);
  border-radius: var(--radius); padding: 24px;
  transition: border-color var(--transition);
}
.sidebar-widget:hover, .sidebar-card:hover { border-color: var(--border); }
.widget-title, .sidebar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border-glass);
}
.widget-bonus { text-align: center; padding: 16px 0 20px; }
.widget-bonus-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 800; color: var(--accent-gold); line-height: 1;
}
.widget-bonus-label { font-size: 0.875rem; color: var(--text-muted); margin-top: 6px; }
.widget-disclaimer { font-size: 0.72rem; color: var(--text-muted); text-align: center; margin-top: 10px; line-height: 1.5; }
.widget-links { display: flex; flex-direction: column; }
.widget-links li a {
  display: block; padding: 9px 0; font-size: 0.875rem; color: var(--text-muted);
  border-bottom: 1px solid var(--border-glass); transition: color var(--transition);
}
.widget-links li:last-child a { border-bottom: none; }
.widget-links li a:hover { color: var(--accent-gold); }
.responsible-widget { border-color: rgba(248,113,113,0.25) !important; }
.responsible-widget p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.btn-outline {
  background: transparent; color: var(--text-light) !important;
  border: 1px solid var(--border); border-radius: var(--radius-xs);
  padding: 10px 20px; font-weight: 600; font-size: 0.9rem;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--bg-glass); color: var(--text-primary) !important; border-color: var(--accent-purple); }
.btn-full { width: 100%; text-align: center; justify-content: center; }

/* ===== IS-OZWIN-LEGIT PAGE ===== */

/* Author bar */
.author-bar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  background: var(--bg-glass); border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm); padding: 14px 20px; margin-bottom: 28px;
}
.author-info { display: flex; flex-direction: column; gap: 2px; }
.author-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.author-name { font-size: 0.9rem; color: var(--text-primary); font-weight: 600; }
.last-updated { font-size: 0.8rem; color: var(--text-muted); }

/* Verdict card */
.verdict-card {
  background: var(--bg-glass); border: 1px solid var(--border-glass);
  border-radius: var(--radius); padding: 28px; margin-bottom: 28px;
}
.verdict-positive {
  border-color: rgba(16,185,129,0.30);
  background: rgba(16,185,129,0.04);
}
.verdict-header {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px;
}
.verdict-icon {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: rgba(16,185,129,0.14); border: 1px solid rgba(16,185,129,0.30);
  display: flex; align-items: center; justify-content: center;
  color: var(--success);
}
.verdict-label {
  font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.06em; font-weight: 600; margin-bottom: 4px;
}
.verdict-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--text-primary);
}
.verdict-card > p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.verdict-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  background: var(--bg-glass); border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm); overflow: hidden;
}
.verdict-stat {
  padding: 14px 16px; text-align: center;
  border-right: 1px solid var(--border-glass);
}
.verdict-stat:last-child { border-right: none; }
.stat-value {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--accent-gold);
}
.stat-unit { font-size: 0.875rem; color: var(--text-muted); font-weight: 400; }
.stat-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; display: block; }

/* Info grid */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 24px 0; }
.info-grid .glass-card { padding: 24px; }
.info-grid .glass-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border-glass);
}

/* Detail, check and cross lists */
.detail-list { display: flex; flex-direction: column; list-style: none; }
.detail-list li {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--border-glass);
  font-size: 0.875rem; gap: 12px;
}
.detail-list li:last-child { border-bottom: none; }
.detail-label { color: var(--text-muted); flex-shrink: 0; min-width: 120px; }
.detail-value { color: var(--text-primary); font-weight: 500; text-align: right; }

.check-list { list-style: none; display: flex; flex-direction: column; }
.check-list li {
  padding: 8px 0 8px 24px; position: relative;
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.6;
  border-bottom: 1px solid var(--border-glass);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; color: var(--success); position: absolute; left: 0; font-weight: 700; }

.cross-list { list-style: none; display: flex; flex-direction: column; }
.cross-list li {
  padding: 8px 0 8px 24px; position: relative;
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.6;
  border-bottom: 1px solid var(--border-glass);
}
.cross-list li:last-child { border-bottom: none; }
.cross-list li::before { content: '✕'; color: var(--danger); position: absolute; left: 0; font-weight: 700; }

/* Pros/Cons card h3 headings */
.pros-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--success); margin-bottom: 14px;
}
.cons-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--danger); margin-bottom: 14px;
}

/* Security grid */
.security-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 24px 0; }
.security-card { padding: 24px; }
.security-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--accent-purple-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-purple-light); margin-bottom: 14px;
}
.security-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px;
}
.security-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* Licence comparison table */
.table-wrapper {
  overflow-x: auto; border-radius: var(--radius-sm); margin: 24px 0;
  border: 1px solid var(--border-glass);
}
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th {
  padding: 12px 16px; text-align: left;
  background: var(--bg-secondary); color: var(--text-muted);
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border-glass);
}
.comparison-table td {
  padding: 12px 16px; font-size: 0.875rem; color: var(--text-muted);
  border-bottom: 1px solid var(--border-glass);
}
.comparison-table tbody tr { background: var(--bg-glass); transition: background var(--transition); }
.comparison-table tbody tr:hover { background: var(--bg-glass-hover); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table td:first-child strong { color: var(--text-primary); }
.comparison-table .highlight-row { background: var(--accent-gold-dim); }
.comparison-table .highlight-row td { color: var(--text-primary); }
.comparison-table .highlight-row:hover { background: rgba(228,185,60,0.2); }

/* Verdict summary */
.verdict-summary { padding: 24px; }
.verdict-summary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.verdict-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: var(--radius-xs);
  background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.15);
}
.verdict-item-icon {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: rgba(16,185,129,0.14); border: 1px solid rgba(16,185,129,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--success);
}
.verdict-item span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

/* CTA block */
.cta-block {
  background: var(--bg-glass); border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm); padding: 24px;
  margin-top: 24px; display: flex; flex-direction: column; gap: 14px;
}
.cta-block p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* Sidebar card link list */
.link-list { list-style: none; display: flex; flex-direction: column; }
.link-list li a {
  display: block; padding: 9px 0; font-size: 0.875rem; color: var(--text-muted);
  border-bottom: 1px solid var(--border-glass); transition: color var(--transition);
}
.link-list li:last-child a { border-bottom: none; }
.link-list li a:hover { color: var(--accent-gold); }

/* Standalone glass-card content blocks (used without modifier classes) */
.section-block .glass-card { padding: 24px; }
.section-block .glass-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border-glass);
}

/* ===== RESPONSIVE — CONTENT LAYOUTS ===== */
@media (max-width: 1024px) {
  .content-layout, .content-grid {
    grid-template-columns: 1fr 280px;
    gap: 28px;
  }
  .quick-facts-grid { grid-template-columns: repeat(4, 1fr); }
  .bonus-detail-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .content-layout, .content-grid {
    grid-template-columns: 1fr;
    padding-top: 32px; padding-bottom: 48px;
  }
  .content-sidebar { position: static; top: auto; }
  .info-cards-grid { grid-template-columns: 1fr; }
  .bonus-cards-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .verdict-summary-grid { grid-template-columns: 1fr; }
  .verdict-stats { grid-template-columns: 1fr; }
  .verdict-stat { border-right: none; border-bottom: 1px solid var(--border-glass); }
  .verdict-stat:last-child { border-bottom: none; }
  .bonus-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-facts-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-fact-item:nth-child(4n) { border-right: inherit; }
  .quick-fact-item:nth-child(2n) { border-right: none; }
  .quick-fact-item:nth-last-child(-n+4) { border-bottom: inherit; }
  .quick-fact-item:nth-last-child(-n+2) { border-bottom: none; }
  .cta-banner-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .vip-tiers-grid { grid-template-columns: 1fr; }
  .bonus-detail-grid { grid-template-columns: repeat(2, 1fr); }
}
