/* ============================================
   BettingSitesNZ.co.com - Main Stylesheet
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #1a5c2e;
    --primary-dark: #0f3d1d;
    --primary-light: #2a7a42;
    --accent: #f0b90b;
    --accent-dark: #d4a00a;
    --cta: #e63946;
    --cta-hover: #c5303c;
    --bg: #f7f8fa;
    --bg-white: #ffffff;
    --bg-light: #f0f2f5;
    --bg-dark: #1a1d23;
    --text: #2c3e50;
    --text-light: #6b7c93;
    --text-white: #ffffff;
    --border: #e1e5eb;
    --border-light: #f0f2f5;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --gold: #ffd700;
    --silver: #c0c0c0;
    --bronze: #cd7f32;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
    --max-width: 1140px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    color: var(--text);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Header
   ============================================ */
.site-header {
    background: var(--bg-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
    font-weight: 400;
}

.logo:hover {
    color: var(--text-white);
    opacity: 0.9;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
}

.main-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--text-white);
    background: rgba(255,255,255,0.1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   Hero
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: var(--text-white);
    padding: 32px 0 40px;
}

.breadcrumbs {
    font-size: 0.85rem;
    margin-bottom: 16px;
    opacity: 0.8;
}

.breadcrumbs a {
    color: var(--text-white);
    opacity: 0.8;
}

.breadcrumbs a:hover {
    opacity: 1;
    color: var(--text-white);
}

h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.year-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 0.75em;
    padding: 4px 14px;
    border-radius: 20px;
    vertical-align: middle;
    font-weight: 700;
}

.author-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 0;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-name, .author-title {
    display: block;
    font-size: 0.88rem;
}

.author-title {
    opacity: 0.75;
    font-size: 0.8rem;
}

.meta-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-size: 0.85rem;
}

.fact-check {
    opacity: 0.8;
}

.updated-date {
    background: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* TLDR Box */
.tldr-box {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.tldr-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--accent);
}

.tldr-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tldr-box li {
    font-size: 0.92rem;
    padding-left: 20px;
    position: relative;
}

.tldr-box li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.intro-text p {
    font-size: 1.02rem;
    margin-bottom: 14px;
    opacity: 0.95;
}

.intro-text a {
    color: var(--accent);
}

.intro-text a:hover {
    text-decoration: underline;
    color: var(--accent);
}

/* ============================================
   Table of Contents
   ============================================ */
.toc {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 64px;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.toc-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
    list-style: none;
    counter-reset: toc-counter;
    padding: 0;
}

.toc-list li {
    counter-increment: toc-counter;
}

.toc-list a {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 4px 0;
    display: inline-block;
    transition: var(--transition);
}

.toc-list a::before {
    content: counter(toc-counter) ". ";
    font-weight: 600;
    color: var(--primary);
}

.toc-list a:hover {
    color: var(--primary);
}

/* ============================================
   Ranked List / Betting Cards
   ============================================ */
.ranked-list, .comparison-section, .reviews-section,
.methodology-section, .legal-section, .tab-section,
.sports-section, .howto-section, .bonuses-section,
.payments-section, .tax-section, .responsible-section,
.faq-section, .author-section {
    padding: 48px 0;
}

.ranked-list {
    background: var(--bg);
}

section h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text);
}

.section-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 28px;
    max-width: 800px;
}

.betting-card {
    display: flex;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.betting-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    min-width: 64px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    background: var(--primary);
}

.card-rank.rank-gold {
    background: linear-gradient(135deg, #b8860b, #ffd700);
}

.card-rank.rank-silver {
    background: linear-gradient(135deg, #808080, #c0c0c0);
}

.card-rank.rank-bronze {
    background: linear-gradient(135deg, #8b4513, #cd7f32);
}

.card-body {
    flex: 1;
    padding: 20px 24px;
}

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}

.card-brand h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.card-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 6px;
}

.badge-best {
    background: var(--accent);
    color: var(--bg-dark);
}

.badge-bonus {
    background: var(--success);
    color: white;
}

.badge-racing {
    background: #8b4513;
    color: white;
}

.card-category {
    display: block;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 4px;
}

.card-rating {
    display: flex;
    align-items: baseline;
    background: var(--primary);
    color: white;
    padding: 8px 14px;
    border-radius: var(--radius);
}

.rating-score {
    font-size: 1.6rem;
    font-weight: 800;
}

.rating-label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-left: 2px;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.card-bonus {
    background: var(--bg-light);
    padding: 10px 16px;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
}

.bonus-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.bonus-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature {
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.feature.yes {
    background: #e8f5e9;
    color: #2e7d32;
}

.feature.yes::before {
    content: "\2713 ";
}

.feature.no {
    background: #fce4ec;
    color: #c62828;
}

.feature.no::before {
    content: "\2717 ";
}

.card-payments {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.payment-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.payment-icon {
    font-size: 0.72rem;
    background: var(--bg-light);
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--text-light);
    border: 1px solid var(--border);
}

.card-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-block;
    background: var(--cta);
    color: var(--text-white);
    padding: 12px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-cta:hover {
    background: var(--cta-hover);
    color: var(--text-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230,57,70,0.3);
}

.btn-cta-sm {
    display: inline-block;
    background: var(--cta);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition);
}

.btn-cta-sm:hover {
    background: var(--cta-hover);
    color: var(--text-white);
}

.cta-tc {
    font-size: 0.72rem;
    color: var(--text-light);
}

/* ============================================
   Comparison Table
   ============================================ */
.comparison-section {
    background: var(--bg-white);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding: 0 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table th {
    background: var(--primary-dark);
    color: var(--text-white);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 12px;
    text-align: left;
    white-space: nowrap;
}

.comparison-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    vertical-align: middle;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.rank-cell {
    font-weight: 800;
    color: var(--primary);
    text-align: center;
}

.site-cell {
    white-space: nowrap;
}

.table-rating {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
}

.check {
    color: var(--success);
    font-weight: 600;
}

.cross {
    color: var(--danger);
    font-weight: 600;
}

.btn-table-cta {
    display: inline-block;
    background: var(--cta);
    color: var(--text-white);
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.82rem;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-table-cta:hover {
    background: var(--cta-hover);
    color: var(--text-white);
}

.highlight-cell {
    color: var(--success);
    font-weight: 600;
}

.tab-table td:first-child {
    font-weight: 600;
    white-space: nowrap;
}

/* ============================================
   Reviews
   ============================================ */
.reviews-section {
    background: var(--bg);
}

.review-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--text-white);
}

.review-header h3 {
    font-size: 1.25rem;
    color: var(--text-white);
    margin: 0;
}

.review-score {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 6px 16px;
    border-radius: var(--radius);
    white-space: nowrap;
}

.review-body {
    padding: 24px;
}

.review-bonus-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: var(--bg-light);
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    border-left: 4px solid var(--accent);
}

.review-bonus-bar span {
    font-size: 0.95rem;
}

.review-body > p {
    margin-bottom: 14px;
    font-size: 0.98rem;
}

/* Pros / Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0;
}

.pros, .cons {
    padding: 18px;
    border-radius: var(--radius);
}

.pros {
    background: #e8f5e9;
    border-left: 4px solid var(--success);
}

.cons {
    background: #fce4ec;
    border-left: 4px solid var(--danger);
}

.pros h4, .cons h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pros h4 {
    color: #2e7d32;
}

.cons h4 {
    color: #c62828;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li, .cons li {
    font-size: 0.88rem;
    padding: 4px 0 4px 20px;
    position: relative;
}

.pros li::before {
    content: "+";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #2e7d32;
}

.cons li::before {
    content: "\2212";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #c62828;
}

/* Rating Bars */
.review-ratings {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-cat {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    min-width: 130px;
}

.bar {
    flex: 1;
    height: 24px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-white);
    transition: width 1s ease;
}

/* ============================================
   How We Rate / Criteria
   ============================================ */
.methodology-section {
    background: var(--bg-white);
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.criterion {
    background: var(--bg-light);
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.criterion:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.criterion-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.criterion h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.criterion p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Legal Section
   ============================================ */
.legal-section {
    background: var(--bg);
}

.legal-content p {
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.legal-callout {
    background: var(--bg-white);
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 24px 0;
    box-shadow: var(--shadow);
}

.legal-callout h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.legal-callout ul {
    padding-left: 20px;
}

.legal-callout li {
    font-size: 0.92rem;
    margin-bottom: 8px;
}

/* ============================================
   TAB Section
   ============================================ */
.tab-section {
    background: var(--bg-white);
}

/* ============================================
   Sports Section
   ============================================ */
.sports-section {
    background: var(--bg);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sport-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.sport-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.sport-card p {
    font-size: 0.92rem;
    margin-bottom: 10px;
    color: var(--text);
}

.sport-card p:last-child {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.88rem;
}

/* ============================================
   How To
   ============================================ */
.howto-section {
    background: var(--bg-white);
}

.steps-list {
    max-width: 760px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.92rem;
    color: var(--text-light);
}

/* ============================================
   Bonuses Section
   ============================================ */
.bonuses-section {
    background: var(--bg);
}

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

.bonus-type {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.bonus-type h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.bonus-type p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   Payments Section
   ============================================ */
.payments-section {
    background: var(--bg-white);
}

.payments-table td:first-child {
    white-space: nowrap;
}

/* ============================================
   Tax Section
   ============================================ */
.tax-section {
    background: var(--bg);
}

.tax-content p {
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.tax-callout {
    background: var(--bg-white);
    padding: 20px 24px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    border-left: 4px solid var(--success);
    box-shadow: var(--shadow);
}

.tax-callout.tax-warning {
    border-left-color: var(--warning);
}

.tax-callout h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.tax-callout p {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ============================================
   Responsible Gambling
   ============================================ */
.responsible-section {
    background: var(--bg-white);
}

.responsible-content p {
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.responsible-tips {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 28px;
}

.responsible-tips h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.responsible-tips ul {
    padding-left: 20px;
}

.responsible-tips li {
    font-size: 0.92rem;
    margin-bottom: 8px;
}

.helplines h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.helpline-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.helpline {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
}

.helpline strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--primary);
}

.helpline p {
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: var(--text-light);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    background: var(--bg);
}

.faq-list {
    max-width: 800px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius);
    margin-bottom: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: 16px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.faq-icon::before {
    top: 50%;
    left: 4px;
    right: 4px;
    height: 2px;
    transform: translateY(-50%);
}

.faq-icon::after {
    left: 50%;
    top: 4px;
    bottom: 4px;
    width: 2px;
    transform: translateX(-50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 16px;
    font-size: 0.94rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Author Bio
   ============================================ */
.author-section {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
}

.author-bio {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.author-bio-avatar {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-bio-content h3 {
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.author-bio-title {
    font-size: 0.88rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 10px;
}

.author-bio-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.fact-checker-bio .author-bio-avatar {
    background: var(--accent);
    color: var(--bg-dark);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.badge-18, .badge-responsible {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
}

.badge-18 {
    background: var(--cta);
    color: var(--text-white);
}

.badge-responsible {
    background: var(--accent);
    color: var(--bg-dark);
}

.footer-disclaimer {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    max-width: 800px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .criteria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 1.75rem;
    }

    section h2 {
        font-size: 1.45rem;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        padding: 16px 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav a {
        display: block;
        padding: 12px 16px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .author-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .meta-info {
        align-items: flex-start;
    }

    .toc {
        position: static;
    }

    .toc-list {
        flex-direction: column;
        gap: 2px;
    }

    .betting-card {
        flex-direction: column;
    }

    .card-rank {
        width: 100%;
        min-width: auto;
        padding: 8px;
        font-size: 1rem;
    }

    .card-header {
        flex-direction: column;
        gap: 12px;
    }

    .card-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .review-header {
        flex-direction: column;
        gap: 12px;
    }

    .review-bonus-bar {
        flex-direction: column;
        text-align: center;
    }

    .sports-grid {
        grid-template-columns: 1fr;
    }

    .criteria-grid {
        grid-template-columns: 1fr;
    }

    .helpline-cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rating-cat {
        min-width: 90px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .card-body {
        padding: 16px;
    }

    .review-body {
        padding: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        gap: 12px;
    }
}

/* ============================================
   Animations
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .betting-card,
    .review-card,
    .sport-card,
    .criterion,
    .bonus-type {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .betting-card:nth-child(1) { animation-delay: 0.05s; }
    .betting-card:nth-child(2) { animation-delay: 0.1s; }
    .betting-card:nth-child(3) { animation-delay: 0.15s; }
    .betting-card:nth-child(4) { animation-delay: 0.2s; }
    .betting-card:nth-child(5) { animation-delay: 0.25s; }
    .betting-card:nth-child(6) { animation-delay: 0.3s; }
    .betting-card:nth-child(7) { animation-delay: 0.35s; }
    .betting-card:nth-child(8) { animation-delay: 0.4s; }
    .betting-card:nth-child(9) { animation-delay: 0.45s; }
    .betting-card:nth-child(10) { animation-delay: 0.5s; }
}

/* Print styles */
@media print {
    .site-header, .toc, .card-cta, .btn-cta, .btn-cta-sm,
    .btn-table-cta, .mobile-toggle, .footer-grid {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        background: none;
        color: black;
        padding: 20px 0;
    }

    .betting-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
