/* ===== Casino-3 Clean Professional Theme ===== */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f7f9fc;
    --bg-card: #ffffff;
    --bg-elevated: #f0f4f9;
    --navy: #0a2540;
    --navy-light: #1a3a5f;
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #e6f0ff;
    --text-primary: #0a2540;
    --text-secondary: #4a5568;
    --text-muted: #8a94a6;
    --border: #e4e8ee;
    --border-strong: #cdd5e0;
    --success: #00875a;
    --success-bg: #e3fcef;
    --danger: #de350b;
    --danger-bg: #ffebe6;
    --warning: #ff8b00;
    --shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.04), 0 1px 2px rgba(10, 37, 64, 0.06);
    --shadow: 0 4px 12px rgba(10, 37, 64, 0.06), 0 2px 4px rgba(10, 37, 64, 0.04);
    --shadow-lg: 0 12px 28px rgba(10, 37, 64, 0.1), 0 4px 8px rgba(10, 37, 64, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Lora', 'Georgia', serif;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.35rem); }

a { color: var(--primary); text-decoration: none; transition: color .15s; }
a:hover { color: var(--primary-dark); text-decoration: underline; }

img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0;
}

.logo-svg {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 1.35rem; font-weight: 800; color: var(--navy);
    letter-spacing: -0.01em;
    text-decoration: none;
}
.logo-svg:hover { text-decoration: none; color: var(--navy); }
.logo-svg svg { width: 32px; height: 32px; }
.logo-svg .accent { color: var(--primary); }

/* ===== Casino logos ===== */
.casino-name-row { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.casino-logo-inline {
    width: 40px; height: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 4px;
    object-fit: contain;
    flex-shrink: 0;
}
.casino-logo-inline[src*="betano"],
.casino-logo-inline[src*="solverde"],
.casino-logo-inline[src*="888"],
.casino-logo-inline[src*="lebull"],
.casino-logo-inline[src*="casino-portugal"],
.casino-logo-inline[src*="goldenpark"] {
    background: var(--navy);
    border-color: var(--navy);
}

.review-logo { background: white; padding: 12px; border: 1px solid var(--border); }
.review-logo img { width: 100%; height: 100%; object-fit: contain; }

.nav { display: flex; gap: 8px; align-items: center; }
.nav a {
    color: var(--text-secondary);
    font-size: .93rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all .15s;
}
.nav a:hover { color: var(--navy); background: var(--bg-secondary); text-decoration: none; }
.nav a.active { color: var(--primary); background: var(--primary-light); }

.menu-toggle {
    display: none; background: none; border: none;
    color: var(--navy); cursor: pointer;
}
.menu-toggle .icon { width: 24px; height: 24px; display: block; }

@media (max-width: 880px) {
    .menu-toggle { display: block; }
    .nav {
        position: absolute; top: 100%; left: 0; right: 0;
        background: white;
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        display: none;
    }
    .nav.open { display: flex; }
}

/* ===== Icons ===== */
.icon {
    width: 1em; height: 1em;
    display: inline-block; vertical-align: -0.125em;
    fill: currentColor; flex-shrink: 0;
}
.check-icon { color: var(--success); width: 14px; height: 14px; margin-right: 4px; vertical-align: -2px; }
.stars { display: inline-flex; gap: 1px; }
.stars .icon { width: 16px; height: 16px; color: var(--warning); }
.stars .star-empty { color: var(--border-strong); }

/* ===== Trust bar ===== */
.trust-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    font-size: .82rem;
    color: var(--text-secondary);
}
.trust-bar .container {
    display: flex; justify-content: center; gap: 32px;
    flex-wrap: wrap;
}
.trust-bar span { display: inline-flex; align-items: center; gap: 6px; }
.trust-bar .icon { color: var(--success); }

/* ===== Hero ===== */
.hero {
    padding: 70px 0 60px;
    background: linear-gradient(180deg, var(--bg-secondary), white);
    border-bottom: 1px solid var(--border);
}

.hero .container { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 12px;
    border-radius: 100px;
    background: var(--primary-light);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: .76rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero h1 { margin-bottom: 20px; }
.hero h1 .underline { color: var(--primary); position: relative; white-space: nowrap; }
.hero h1 .underline::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 6px;
    background: var(--primary);
    opacity: 0.18;
    border-radius: 3px;
    z-index: -1;
}

.hero p { color: var(--text-secondary); font-size: 1.1rem; max-width: 540px; margin-bottom: 28px; }

.hero-actions { display: flex; gap: 12px; }

.hero-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-lg);
}

.hero-card-title { font-family: 'Inter', sans-serif; font-size: .82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 16px; font-weight: 600; }

.hero-card-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: .94rem;
}
.hero-card-row:last-child { border-bottom: none; }
.hero-card-row strong { color: var(--navy); }
.hero-card-row .score {
    background: var(--success-bg);
    color: var(--success);
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: .85rem;
}

@media (max-width: 880px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-card { order: -1; }
}

/* ===== Section ===== */
.section { padding: 70px 0; }
.section-alt { background: var(--bg-secondary); }
.section-header { margin-bottom: 48px; text-align: center; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-secondary); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

.section-header.left { text-align: left; }
.section-header.left p { margin-left: 0; }

/* ===== Casino Cards (clean, professional) ===== */
.casino-list { display: flex; flex-direction: column; gap: 12px; }

.casino-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 26px;
    display: grid;
    grid-template-columns: 48px 1fr auto auto auto;
    gap: 24px;
    align-items: center;
    transition: all .2s;
}

.casino-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-1px);
}

.casino-rank {
    width: 44px; height: 44px;
    background: var(--bg-elevated);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 800;
    color: var(--navy);
    font-family: 'Lora', serif;
}

.casino-card[data-top="true"] .casino-rank {
    background: var(--primary);
    color: white;
}

.casino-info h3 { margin-bottom: 4px; font-size: 1.15rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.casino-tag { display: inline-block; color: var(--text-muted); font-size: .82rem; margin-right: 12px; }
.casino-license {
    color: var(--success); font-size: .8rem; font-weight: 600;
    display: inline-flex; align-items: center; gap: 4px;
}

.casino-bonus {
    text-align: left;
    padding-left: 24px;
    border-left: 1px solid var(--border);
}

.casino-bonus-amount {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 700;
}

.casino-bonus-label {
    color: var(--text-muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.casino-rating {
    text-align: center;
    padding: 0 16px;
}

.casino-rating .stars { display: flex; justify-content: center; margin-bottom: 4px; }

.rating-num {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

.casino-actions { display: flex; flex-direction: column; gap: 6px; }

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    text-align: center;
    transition: all .15s;
    cursor: pointer;
    border: 1px solid transparent;
    font-family: inherit;
    line-height: 1.4;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    text-decoration: none;
}

.btn-ghost {
    background: white;
    color: var(--navy);
    border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
    background: var(--bg-secondary);
    border-color: var(--text-secondary);
    color: var(--navy);
    text-decoration: none;
}

@media (max-width: 880px) {
    .casino-card {
        grid-template-columns: 44px 1fr;
        gap: 14px;
        padding: 18px;
    }
    .casino-bonus, .casino-rating { grid-column: 1 / -1; border: none; padding: 12px 0 0; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; text-align: left; }
    .casino-actions { grid-column: 1 / -1; flex-direction: row; }
    .casino-actions .btn { flex: 1; }
}

/* ===== Filters ===== */
.filters {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 32px;
}

.filter-btn {
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    font-size: .88rem;
    transition: all .15s;
    font-family: inherit;
    font-weight: 500;
}

.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ===== Feature Grid ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    transition: all .2s;
    text-align: center;
}
.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.feature-icon {
    width: 56px; height: 56px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    margin: 0 auto 16px;
}
.feature-icon .icon { width: 24px; height: 24px; }

.feature-card h3 { margin-bottom: 8px; font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700; }
.feature-card p { color: var(--text-secondary); font-size: .94rem; }

/* ===== Review Page ===== */
.review-hero {
    padding: 50px 0 36px;
    background: white;
    border-bottom: 1px solid var(--border);
}

.review-breadcrumb {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.review-breadcrumb a { color: var(--text-secondary); }

.review-hero-inner {
    display: grid;
    grid-template-columns: 96px 1fr auto;
    gap: 28px;
    align-items: center;
}

.review-logo {
    width: 96px; height: 96px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Lora', serif;
    font-size: 1.9rem;
    color: var(--primary);
    font-weight: 700;
    border: 1px solid var(--border);
}

.review-title h1 { margin-bottom: 8px; }
.review-meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--text-muted); font-size: .9rem; }
.review-meta span { display: inline-flex; align-items: center; gap: 6px; }

.review-score {
    text-align: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 24px;
    min-width: 120px;
}

.review-score-num {
    font-family: 'Lora', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.review-score-label {
    color: var(--success);
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
}

@media (max-width: 720px) {
    .review-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .review-logo { margin: 0 auto; }
}

.review-body {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    padding: 56px 0;
}

.review-content h2 { margin: 36px 0 14px; }
.review-content h2:first-child { margin-top: 0; }
.review-content p { margin-bottom: 16px; color: var(--text-secondary); }
.review-content ul { margin: 12px 0 20px 0; color: var(--text-secondary); }
.review-content li { margin-bottom: 8px; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }

.pros, .cons {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
}
.pros { border-top: 3px solid var(--success); }
.cons { border-top: 3px solid var(--danger); }

.pros h4, .cons h4 { margin-bottom: 12px; font-family: 'Inter', sans-serif; font-size: .9rem; text-transform: uppercase; letter-spacing: 0.08em; }
.pros h4 { color: var(--success); }
.cons h4 { color: var(--danger); }

.pros ul, .cons ul { list-style: none; margin: 0; }
.pros li, .cons li { color: var(--text-secondary); font-size: .92rem; padding-left: 22px; position: relative; }
.pros li::before, .cons li::before {
    position: absolute;
    left: 0; top: 4px;
    width: 16px; height: 16px;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem; font-weight: 700;
    color: white;
}
.pros li::before { content: '+'; background: var(--success); }
.cons li::before { content: '−'; background: var(--danger); }

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.info-table th, .info-table td {
    text-align: left;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
}
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }

.info-table th {
    color: var(--navy);
    font-weight: 600;
    font-size: .88rem;
    background: var(--bg-secondary);
    width: 200px;
    font-family: 'Inter', sans-serif;
}

.info-table td { color: var(--text-secondary); font-size: .94rem; }

.review-sidebar {
    position: sticky;
    top: 88px;
    align-self: start;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.review-sidebar h3 { margin-bottom: 16px; font-family: 'Inter', sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.review-sidebar .bonus-big {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 6px;
}
.review-sidebar .bonus-desc { color: var(--text-secondary); margin-bottom: 22px; font-size: .92rem; }
.review-sidebar .btn { width: 100%; }
.review-sidebar .terms {
    color: var(--text-muted);
    font-size: .76rem;
    margin-top: 16px;
    text-align: center;
    line-height: 1.55;
}

@media (max-width: 880px) {
    .review-body { grid-template-columns: 1fr; }
    .review-sidebar { position: static; }
    .pros-cons { grid-template-columns: 1fr; }
}

/* ===== Content Pages ===== */
.page-hero {
    padding: 60px 0 40px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--text-secondary); max-width: 680px; margin: 0 auto; font-size: 1.05rem; }

.content {
    padding: 50px 0;
    max-width: 820px;
    margin: 0 auto;
}

.content h2 { margin: 36px 0 14px; }
.content h3 { margin: 24px 0 12px; color: var(--navy); font-family: 'Inter', sans-serif; font-weight: 700; }
.content p { margin-bottom: 16px; color: var(--text-secondary); }
.content ul, .content ol { margin: 12px 0 20px 22px; color: var(--text-secondary); }
.content li { margin-bottom: 8px; }

.callout {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    padding: 18px 22px;
    border-radius: 8px;
    margin: 24px 0;
}
.callout strong { color: var(--primary-dark); }

.callout.warning {
    background: #fff8e6;
    border-left-color: var(--warning);
}
.callout.warning strong { color: var(--warning); }

/* ===== Payment & Blog ===== */
.payment-grid, .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.payment-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all .2s;
}
.payment-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.payment-card h4 { color: var(--navy); margin-bottom: 8px; font-size: 1.15rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.payment-card .meta { color: var(--text-muted); font-size: .85rem; margin-bottom: 12px; }
.payment-card p { color: var(--text-secondary); font-size: .92rem; }

.blog-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all .2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card-image {
    height: 160px;
    background: linear-gradient(135deg, var(--navy), var(--primary));
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    overflow: hidden;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: 22px; }
.blog-card-meta { color: var(--text-muted); font-size: .8rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.blog-card-body h3 { margin-bottom: 8px; font-size: 1.15rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.blog-card-body h3 a { color: var(--navy); }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { color: var(--text-secondary); font-size: .92rem; }

/* ===== Footer ===== */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 56px 0 24px;
    margin-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-svg { color: white; }
.footer-brand .accent { color: #66a9ff; }
.footer-brand p { color: rgba(255, 255, 255, 0.6); font-size: .92rem; margin-top: 14px; }

.footer h4 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255, 255, 255, 0.6); font-size: .92rem; }
.footer ul a:hover { color: white; text-decoration: none; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: .85rem;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(222, 53, 11, 0.15);
    border: 1px solid rgba(222, 53, 11, 0.5);
    padding: 5px 12px;
    border-radius: 6px;
    color: #ff6b3d;
    font-weight: 700;
    font-size: .82rem;
}
.age-badge .icon { width: 14px; height: 14px; }

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== Footer badges ===== */
.footer-badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-badges li { display: inline-flex; align-items: center; }
.footer-badges img {
    height: 36px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.75;
    transition: opacity .2s, transform .2s;
}
.footer-badges a { display: inline-block; }
.footer-badges a:hover img,
.footer-badges li:hover img {
    opacity: 1;
    transform: translateY(-2px);
}
@media (max-width: 720px) {
    .footer-badges { gap: 16px; padding: 18px 0; }
    .footer-badges img { height: 28px; }
}

/* ===== FAQ accordion ===== */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow); }
.faq-q {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: color .15s;
}
.faq-q:hover { color: var(--primary); }
.faq-icon {
    width: 18px; height: 18px;
    flex-shrink: 0;
    transition: transform .25s;
    color: var(--primary);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    padding: 0 22px;
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.65;
}
.faq-item.open .faq-a {
    max-height: 600px;
    padding: 0 22px 20px;
}
.faq-a p { margin: 0; }
.faq-a a { color: var(--primary); text-decoration: underline; }
.faq-a code { background: var(--bg-secondary); padding: 1px 6px; border-radius: 4px; font-size: 0.9em; }

/* ===== Footer contacts column ===== */
.footer-contact {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.93rem;
}
.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color .15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-contact a:hover { color: var(--primary); text-decoration: underline; }
.footer-disclaimer {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    text-align: center;
}
