/* ============================================================
   Maxim88 Malaysia — Main Stylesheet
   Design: Premium casino, deep black + forest green + gold CI
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --color-primary:      #c9a227;   /* gold — prizes, highlights */
  --color-accent:       #f5c518;   /* bright gold — button hover, badges */
  --color-green:        #4caf50;   /* active/hover green */
  --color-green-dark:   #0d3d2b;   /* navbar / header bg */
  --color-surface:      #112d1f;   /* card background */
  --color-surface-2:    #0d3d2b;   /* darker card / table header */
  --color-body:         #0a0a0a;   /* body background */
  --color-border:       #1e4d35;   /* subtle border */
  --color-border-active:#4caf50;   /* active border */
  --color-text:         #ffffff;   /* primary text */
  --color-text-muted:   #cccccc;   /* secondary text */
  --color-promo:        #c9a227;   /* promo / alert — gold */
  --color-danger:       #f87171;   /* lightened red — passes on dark bg (4.9:1) */
  --color-inactive:     #555f58;   /* disabled — muted green-grey */

  /* Legacy aliases for backward compat */
  --color-secondary:    #0a0a0a;
  --color-warning:      #c9a227;   /* gold, not orange */
  --color-success:      #4caf50;

  --font-display:       'Playfair Display', Georgia, serif;
  --font-body:          'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.5);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.6);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.7);
  --shadow-glow: 0 0 20px rgba(201,162,39,0.3);

  --container-max: 1100px;
  --header-h:      70px;
}

/* ── Skip Navigation Link ── */
.skip-link {
  position: absolute;
  top: -48px;
  left: 0;
  background: var(--color-primary);
  color: #000000;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) 0;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--color-body);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-accent); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Utility ── */
.text-center { text-align: center; }
.text-gold   { color: var(--color-accent); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  line-height: 1;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  background: var(--color-accent);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,197,24,0.4);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid var(--color-green);
}
.btn-outline:hover {
  background: var(--color-green);
  color: #000000;
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: 0.875rem; }

/* ── Header & Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,61,43,0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-h);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: block;
  padding: 8px 12px;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  background: rgba(201,162,39,0.12);
  color: var(--color-primary);
}

/* Dropdown */
.dropdown .sub-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: var(--shadow-md);
  z-index: 200;
}

.dropdown:hover .sub-menu,
.dropdown:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li a {
  display: block;
  padding: 10px 16px;
  color: var(--color-text);
  font-size: 0.875rem;
  transition: background 0.15s, color 0.15s;
}
.sub-menu li a:hover {
  background: rgba(201,162,39,0.1);
  color: var(--color-primary);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ── Hero Section ── */
.hero {
  background: #112d1f;
  padding: 72px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,162,39,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(201,162,39,0.5);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  margin-bottom: 20px;
  color: #fff;
}

.hero-title span { color: var(--color-accent); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.badge {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  color: #ffffff;
  white-space: nowrap;
}

.badge-gold {
  background: rgba(0,0,0,0.55);
  border-color: rgba(201,162,39,0.5);
  color: var(--color-primary);
}

/* ── Section Alternating Tint ── */
.section-alt { background: rgba(17,45,31,0.5); }

/* ── Section Spacing ── */
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 80px 0; }

.section-header { margin-bottom: 40px; }
.section-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 12px auto 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 8px;
}

/* ── Cards ── */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.card-hover {
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-green);
}

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── USP Cards ── */
.usp-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(76,175,80,0.12);
  border: 1px solid rgba(76,175,80,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.usp-card h3 { margin-bottom: 8px; font-size: 1rem; }
.usp-card p  { color: var(--color-text-muted); font-size: 0.9rem; margin: 0; }

/* ── Stars ── */
.stars {
  color: var(--color-accent);
  font-size: 1.2rem;
  letter-spacing: 2px;
  display: inline-block;
}
.rating-score {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-display);
  line-height: 1;
}
.rating-count { color: var(--color-text-muted); font-size: 0.85rem; }

/* ── Pros / Cons ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }

.pros-list li::before { content: '✓'; color: var(--color-success); font-weight: 700; flex-shrink: 0; }
.cons-list li::before { content: '✗'; color: var(--color-danger); font-weight: 700; flex-shrink: 0; }

/* ── Tables ── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th {
  background: var(--color-surface-2);
  color: var(--color-primary);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
}

tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.02); }

/* ── FAQ ── */
details.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 4px 0;
}

details.faq-item:last-child { border-bottom: none; }

details.faq-item summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-green);
  flex-shrink: 0;
  transition: transform 0.2s;
  font-weight: 300;
}

details.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 0 16px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── Steps ── */
.steps { display: flex; flex-direction: column; gap: 16px; }

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-green);
  color: #000000;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-body h4 { margin-bottom: 4px; font-size: 0.95rem; }
.step-body p  { color: var(--color-text-muted); font-size: 0.875rem; margin: 0; }

/* ── Tip / Info Box ── */
.tip-box {
  background: rgba(201,162,39,0.08);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 16px;
}
.tip-box strong { color: var(--color-primary); }

.info-box {
  background: rgba(13,61,43,0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

/* ── Responsible Gambling Banner ── */
.rg-banner {
  background: rgba(185,28,28,0.15);
  border: 1px solid rgba(248,113,113,0.3);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 0.85rem;
  text-align: center;
  color: var(--color-text-muted);
}
.rg-banner a { color: var(--color-danger); }

/* ── Age Badge ── */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #b91c1c;   /* dark crimson — white text = 5.9:1 ✅ */
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── Bonus Card ── */
.bonus-card {
  background: linear-gradient(135deg, var(--color-surface) 0%, #0d3d2b 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(201,162,39,0.07);
}

.bonus-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.bonus-label {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.bonus-tcs {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 16px;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding: 16px 0;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: var(--color-text); }

/* ── Review Meta ── */
.review-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding: 16px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin: 20px 0;
}

.review-meta strong { color: var(--color-text); }

/* ── Author Bio ── */
.author-bio {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 40px;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-green), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: #000000;
  font-weight: 700;
  font-family: var(--font-display);
}

.author-bio h4 { margin-bottom: 2px; }
.author-bio p { font-size: 0.875rem; color: var(--color-text-muted); margin: 4px 0 0; }

/* ── Blog Cards ── */
.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-body { padding: 24px; }

.blog-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--color-text); }
.blog-card h3 a:hover { color: var(--color-accent); }

.blog-meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 14px;
}

/* ── Related Posts ── */
.related-posts { margin-top: 48px; }
.related-posts h3 { margin-bottom: 20px; }

/* ── Game Category Cards ── */
.game-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-align: center;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-green);
}

.game-card-icon {
  font-size: 3rem;
  padding: 28px 20px 16px;
  display: block;
}

.game-card-body { padding: 0 20px 24px; }
.game-card h3 { font-size: 1rem; margin-bottom: 8px; }
.game-card p  { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 16px; }

/* ── Provider Grid ── */
.provider-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.provider-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 8px 18px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.provider-pill:hover {
  background: rgba(76,175,80,0.1);
  border-color: var(--color-green);
  color: var(--color-text);
}

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--color-surface) 0%, #0d3d2b 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 52px 32px;
  text-align: center;
}

.cta-section h2 { margin-bottom: 12px; }
.cta-section p  { color: var(--color-text-muted); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── Footer ── */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--color-border);
  padding: 56px 0 24px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.footer-col h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--color-text); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
}

.footer-bottom a { color: var(--color-text-muted); text-decoration: underline; }
.footer-bottom a:hover { color: var(--color-text); }

.footer-rg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.8rem;
}
.footer-links a { color: var(--color-text-muted); }
.footer-links a:hover { color: var(--color-text); }

/* ── Misc page-level ── */
.page-hero {
  background: #112d1f;
  padding: 52px 0 40px;
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 { margin-bottom: 12px; }
.page-hero p  { color: var(--color-text-muted); font-size: 1.05rem; max-width: 640px; }

.article-body h2 { margin: 36px 0 16px; padding-top: 36px; border-top: 1px solid var(--color-border); }
.article-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.article-body h3 { margin: 24px 0 12px; }
.article-body ul, .article-body ol { padding-left: 20px; margin-bottom: 16px; }
.article-body ul li, .article-body ol li { margin-bottom: 6px; font-size: 0.95rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

.score-breakdown { display: flex; flex-direction: column; gap: 12px; }

.score-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.score-label { min-width: 140px; color: var(--color-text-muted); }

.score-bar {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-green), var(--color-primary));
  border-radius: 4px;
}

.score-val { min-width: 32px; text-align: right; color: var(--color-accent); font-weight: 600; }

/* ── Pill list ── */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}
.pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ── Quick Summary Table ── */
.summary-table td:first-child {
  color: var(--color-text-muted);
  font-weight: 500;
  width: 38%;
}
.summary-table td:last-child {
  color: var(--color-text);
  font-weight: 600;
}

/* ── Reading time / post meta ── */
.post-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  align-items: center;
  margin-bottom: 24px;
}
.post-meta span { display: flex; align-items: center; gap: 4px; }

/* ── Verdict Box ── */
.verdict-box {
  background: linear-gradient(135deg, rgba(201,162,39,0.08), rgba(13,61,43,0.4));
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
}
.verdict-box .verdict-score {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-accent);
  line-height: 1;
}
.verdict-box h3 { margin-bottom: 12px; }

/* ── Self-assessment quiz ── */
.quiz-form { display: flex; flex-direction: column; gap: 20px; }
.quiz-question { font-weight: 600; margin-bottom: 10px; font-size: 0.95rem; }
.quiz-options { display: flex; flex-direction: column; gap: 8px; }
.quiz-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.quiz-options label:hover { background: rgba(255,255,255,0.04); color: var(--color-text); }
.quiz-options input[type="radio"] { accent-color: var(--color-green); }
.quiz-result { display: none; padding: 20px; border-radius: var(--radius-md); margin-top: 8px; }
.quiz-result.safe    { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); }
.quiz-result.caution { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); }
.quiz-result.risk    { background: rgba(248,113,113,0.1);  border: 1px solid rgba(248,113,113,0.3); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-col { text-align: center; }
  .footer-col ul li { text-align: center; }
  .footer-col ul li a { display: block; text-align: center; }
  .footer-col p { text-align: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--color-green-dark);
    border-bottom: 1px solid var(--color-border);
    padding: 16px;
    gap: 2px;
    z-index: 99;
  }
  .nav-links.open .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding-left: 12px;
    margin-top: 4px;
  }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
  .section { padding: 44px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col { text-align: center; }
  .footer-col ul li { text-align: center; }
  .footer-col ul li a { display: block; text-align: center; }
  .footer-col p { text-align: center; }
  .footer-links { gap: 10px; }
  .review-meta { gap: 12px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col { text-align: center; }
  .footer-col ul li { text-align: center; }
  .footer-col ul li a { display: block; text-align: center; }
  .footer-col p { text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; }
  .bonus-card { padding: 24px 16px; }
  .cta-section { padding: 36px 20px; }
  .author-bio { flex-direction: column; }
}
