/* ============================================
   DairyNZ Schools — Casino Affiliate Site
   Dark Forest + Gold Accent Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #0f1923;
  --bg-secondary: #141f2e;
  --bg-card: #1a2738;
  --bg-card-hover: #1f3045;
  --bg-table-row: #162235;
  --bg-table-row-alt: #1a2738;
  --border-subtle: rgba(56, 152, 236, 0.12);
  --border-accent: rgba(56, 152, 236, 0.30);
  --green-deep: #1a6dd4;
  --green-mid: #3b8ef5;
  --green-light: #5aabff;
  --green-glow: rgba(90, 171, 255, 0.10);
  --gold: #f0b429;
  --gold-light: #ffd04a;
  --gold-dark: #d49e1a;
  --gold-glow: rgba(240, 180, 41, 0.18);
  --text-primary: #e4eaf0;
  --text-secondary: #9bafc4;
  --text-muted: #5f7a92;
  --text-heading: #f2f6fa;
  --red-soft: #f06060;
  --red-bg: rgba(240, 96, 96, 0.08);
  --star-color: #f0b429;
  --pro-color: #34d399;
  --con-color: #f06060;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 2px 12px rgba(0,0,0,0.35), 0 0 0 1px var(--border-subtle);
  --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 1px var(--border-accent);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Subtle grain 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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

a { color: var(--green-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

/* ---- HEADER / NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 13, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 32px; list-style: none; }

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-heading);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-secondary); margin: 5px 0; transition: var(--transition); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 16px 24px;
    gap: 12px;
  }
  .nav-links.open { display: flex; }
}

/* ---- HERO ---- */
.hero {
  padding: 36px 24px 14px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.75;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--green-light);
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTION ---- */
.section {
  padding: 10px 0 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 600px;
}

/* ---- AFFILIATE TABLE ---- */
.affiliate-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 64px;
}

.affiliate-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  font-size: 0.93rem;
}

.affiliate-table thead {
  background: var(--bg-card);
  border-bottom: 2px solid var(--border-accent);
}

.affiliate-table th {
  padding: 16px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  white-space: nowrap;
}

.affiliate-table th:first-child { padding-left: 24px; }

.affiliate-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}

.affiliate-table td:first-child { padding-left: 24px; }

.affiliate-table tbody tr { background: var(--bg-table-row); transition: background var(--transition); }
.affiliate-table tbody tr:nth-child(even) { background: var(--bg-table-row-alt); }
.affiliate-table tbody tr:hover { background: var(--bg-card-hover); }

.table-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--green-light);
  font-weight: 700;
  font-size: 0.85rem;
}

.table-rank.top-3 {
  background: var(--gold-dark);
  color: #fff;
}

.table-casino-name {
  font-weight: 600;
  color: var(--text-heading);
}

.table-casino-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-casino-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 6px;
  flex-shrink: 0;
}

/* CTA cell — centered with T&Cs */
.table-cta-cell {
  text-align: center;
  vertical-align: middle;
}

.table-cta-cell .btn-visit {
  display: block;
  margin: 0 auto 6px;
  text-align: center;
  padding: 11px 24px;
  font-size: 0.85rem;
  box-shadow: 0 2px 12px var(--gold-glow);
}

.table-tcs {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted) !important;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.table-tcs:hover {
  color: var(--text-secondary) !important;
  text-decoration: underline;
}

.table-award {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.table-bonus {
  color: var(--gold-light);
  font-weight: 600;
}

.table-payout {
  font-weight: 600;
  color: var(--green-light);
}

.table-rating { display: flex; gap: 2px; }

.table-rating .star {
  color: var(--star-color);
  font-size: 0.95rem;
}

.table-rating .star.empty { color: var(--text-muted); opacity: 0.3; }

.btn-visit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0a0f0d;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-visit:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0f0d;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--gold-glow);
}

/* ---- REVIEW CARDS ---- */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 28px;
  transition: all var(--transition);
}

.review-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.review-header-left { flex: 1; min-width: 250px; }

.review-rank-name {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.review-rank {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.review-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
}

.review-bonus-inline {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
  padding-left: 14px;
  border-left: 2px solid var(--border-accent);
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.review-meta-item { display: flex; align-items: center; gap: 6px; }
.review-meta-label { color: var(--text-muted); }
.review-meta-value { font-weight: 600; color: var(--text-primary); }
.review-meta-value.gold { color: var(--gold-light); }
.review-meta-value.green { color: var(--green-light); }

/* Review tag bar */
.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.review-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.review-tag-label {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.review-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.review-rating-big {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.review-rating-big span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.review-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .review-body { grid-template-columns: 1fr; }
}

.review-pros, .review-cons {
  padding: 20px;
  border-radius: var(--radius-md);
}

.review-pros {
  background: rgba(62, 189, 122, 0.06);
  border: 1px solid rgba(62, 189, 122, 0.15);
}

.review-cons {
  background: var(--red-bg);
  border: 1px solid rgba(224, 92, 92, 0.15);
}

.review-pros h4, .review-cons h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-weight: 700;
}

.review-pros h4 { color: var(--pro-color); }
.review-cons h4 { color: var(--con-color); }

.review-pros ul, .review-cons ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-pros li, .review-cons li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.review-pros li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--pro-color);
  font-weight: 700;
}

.review-cons li::before {
  content: '\2212';
  position: absolute;
  left: 0;
  color: var(--con-color);
  font-weight: 700;
}

.review-payout {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.payout-bar-wrapper { flex: 1; }

.payout-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.payout-bar {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}

.payout-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green-deep), var(--green-light));
  transition: width 0.8s ease;
}

.payout-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-light);
  white-space: nowrap;
}

/* ---- CONTENT PAGES ---- */
.page-hero {
  padding: 60px 24px 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-heading);
}

.page-hero p {
  color: var(--text-secondary);
  margin-top: 12px;
  font-size: 1.05rem;
}

.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.content-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 40px 0 16px;
}

.content-section h2:first-child { margin-top: 0; }

.content-section h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-heading);
  margin: 28px 0 12px;
}

.content-section p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-section ul, .content-section ol {
  color: var(--text-secondary);
  margin: 0 0 16px 24px;
  line-height: 1.8;
}

.content-section li { margin-bottom: 6px; }

.content-section a { color: var(--green-light); text-decoration: underline; text-underline-offset: 3px; }
.content-section a:hover { color: var(--gold-light); }

/* Contact form */
.contact-form { max-width: 560px; margin: 0 auto; }

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition);
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--green-glow);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 48px 24px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

.footer-brand .nav-logo { margin-bottom: 12px; }

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 380px;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 16px 20px;
  background: rgba(224, 92, 92, 0.05);
  border: 1px solid rgba(224, 92, 92, 0.12);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- 18+ BADGE ---- */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--red-soft);
  color: var(--red-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

/* ---- REVIEW NARRATIVE ---- */
.review-narrative {
  padding: 0 0 20px;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.8;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

/* ---- WITHDRAWAL PROOF TABLE ---- */
.proof-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 12px 0;
}

.proof-table th {
  background: var(--bg-card);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border-accent);
}

.proof-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.proof-table tbody tr { background: var(--bg-table-row); }
.proof-table tbody tr:nth-child(even) { background: var(--bg-table-row-alt); }

.proof-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-light);
  font-weight: 600;
  font-size: 0.85rem;
}

.proof-status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
}

/* ---- CONTENT BLOCKS (info sections) ---- */
.info-section {
  padding: 16px 0;
  border-top: 1px solid var(--border-subtle);
}

.info-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 20px;
}

.info-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 800px;
}

.info-section ul {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0 0 16px 20px;
}

.info-section li { margin-bottom: 6px; }

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
  cursor: pointer;
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 800px;
}

/* ---- AUTHOR BIO ---- */
.author-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
}

/* Author strip — full-width bar below hero */
.author-strip {
  background: #0c1420;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 24px;
}

.author-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.author-strip .author-avatar {
  width: 32px;
  height: 32px;
  font-size: 0.7rem;
}

.author-strip .author-info {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.author-strip .author-info h3 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0;
}

.author-strip .author-info .author-title {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  margin: 0;
}

.author-strip .author-info .author-title::before {
  content: ' · ';
  color: var(--text-muted);
}

.author-strip-sep {
  width: 1px;
  height: 20px;
  background: var(--border-accent);
  flex-shrink: 0;
}

.author-strip-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .author-strip-sep { display: none; }
  .author-strip-detail { width: 100%; padding-left: 44px; margin-top: -4px; }
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-light);
  flex-shrink: 0;
}

.author-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.author-info .author-title {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Review logo icon before name */
.review-rank-name img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 5px;
}

@media (max-width: 640px) {
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .proof-table { font-size: 0.78rem; }
  .proof-table th, .proof-table td { padding: 8px 10px; }
}

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---- MOBILE TABLE ---- */
@media (max-width: 768px) {
  .affiliate-table { min-width: 0; font-size: 0.82rem; }
  .affiliate-table th,
  .affiliate-table td { padding: 10px 8px; }
  .affiliate-table th:first-child,
  .affiliate-table td:first-child { padding-left: 10px; }

  /* Hide payout, award, rating on mobile — keep #, casino, bonus, CTA */
  .affiliate-table th:nth-child(4),
  .affiliate-table td:nth-child(4),
  .affiliate-table th:nth-child(5),
  .affiliate-table td:nth-child(5),
  .affiliate-table th:nth-child(6),
  .affiliate-table td:nth-child(6) { display: none; }

  .table-casino-logo img { width: 48px; height: 48px; padding: 3px; }

  .table-cta-cell .btn-visit { padding: 8px 14px; font-size: 0.72rem; margin-bottom: 4px; }
  .table-tcs { font-size: 0.58rem; }

  .affiliate-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  .hero { padding: 36px 16px 18px; }
  .hero h1 { font-size: 1.4rem; line-height: 1.25; }
  .hero p { font-size: 0.95rem; margin-bottom: 16px; }
  .hero-badge { margin-bottom: 16px; font-size: 0.78rem; }
  .section { padding: 16px 0 48px; }
}
