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

:root {
    --bg-primary: #0b0b12;
    --bg-secondary: #12121c;
    --bg-card: #1a1a2e;
    --bg-card-hover: #222240;
    --gold: #d4a843;
    --gold-light: #f0c95c;
    --gold-glow: rgba(212, 168, 67, 0.25);
    --accent: #e8b94a;
    --text-primary: #eaeaea;
    --text-secondary: #9a9ab0;
    --text-muted: #6b6b80;
    --border: rgba(212, 168, 67, 0.15);
    --border-strong: rgba(212, 168, 67, 0.35);
    --glass: rgba(26, 26, 46, 0.7);
    --success: #34d399;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 4px 24px rgba(212, 168, 67, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { font-size: 2.75rem; letter-spacing: -0.02em; }
h2 { font-size: 2.1rem; letter-spacing: -0.01em; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== ANIMATED BACKGROUND ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 600px 600px at 20% 10%, rgba(212, 168, 67, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 80% 80%, rgba(100, 60, 200, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ===== MODAL OVERLAY ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-overlay.hidden {
    display: none;
}

.modal-content {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius);
    max-width: 480px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow), var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.modal-content h2 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.modal-buttons {
    margin: 2rem 0 1rem;
}

.responsible-gaming-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.responsible-gaming-text a {
    color: var(--gold);
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #0b0b12;
    padding: 0.85rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.35s ease;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 168, 67, 0.45);
    filter: brightness(1.1);
}

.btn-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #0b0b12;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.35s ease;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.25);
    width: 100%;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 168, 67, 0.45);
    filter: brightness(1.1);
    color: #0b0b12;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    color: var(--text-primary);
    padding: 1.25rem;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-link {
    color: var(--gold);
    text-decoration: underline;
    font-size: 0.9rem;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-left: 0;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* ===== SECTION BACKGROUND IMAGES ===== */
.has-bg-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.has-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 11, 18, 0.92) 0%,
        rgba(11, 11, 18, 0.88) 50%,
        rgba(11, 11, 18, 0.94) 100%
    );
    z-index: 0;
}

.has-bg-image > .container {
    position: relative;
    z-index: 1;
}

/* ===== IMAGE BANNERS ===== */
.image-banner {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.45) saturate(1.1);
    transition: transform 6s ease;
}

.image-banner:hover img {
    transform: scale(1.05);
}

.image-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(
        180deg,
        rgba(11, 11, 18, 0.3) 0%,
        rgba(11, 11, 18, 0.15) 40%,
        rgba(11, 11, 18, 0.3) 100%
    );
    z-index: 1;
}

.image-banner-overlay h2 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.image-banner-overlay p {
    font-size: 1.1rem;
    color: var(--gold);
    margin: 0;
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
}

/* ===== CASINO CARDS SECTION ===== */
.casinos-section {
    padding: 5rem 2rem 4rem;
}

.casinos-section .container::before {
    content: 'Top Casino Picks';
    display: block;
    text-align: center;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.casinos-section .container::after {
    content: 'Handpicked UKGC-licensed casinos with the best welcome bonuses.';
    display: block;
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

/* CASINO CARD */
.casino-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.casino-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(160deg, rgba(212, 168, 67, 0.3), transparent 40%, transparent 60%, rgba(212, 168, 67, 0.1));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.casino-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow), 0 0 40px rgba(212, 168, 67, 0.08);
}

.casino-card:hover::before {
    opacity: 1;
}

.card-header {
    padding: 1.75rem 1.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(212, 168, 67, 0.04) 0%, transparent 100%);
}

.casino-logo {
    width: 140px;
    height: 50px;
    object-fit: contain;
    object-position: left center;
    display: block;
    filter: brightness(1.1);
    flex-shrink: 0;
}

.casino-rating {
    text-align: center;
    background: rgba(212, 168, 67, 0.08);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.rating-score {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.rating-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.card-body {
    padding: 0.5rem 1.75rem 1rem;
    flex: 1;
}

.card-body h3 {
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    font-size: 1.3rem;
}

.casino-tagline {
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
    font-style: normal;
    font-size: 0.95rem;
}

.bonus-info {
    background: rgba(212, 168, 67, 0.05);
    padding: 1rem 1.15rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.bonus-info h4 {
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.bonus-info p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.card-footer {
    padding: 1.25rem 1.75rem 1.75rem;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
    position: relative;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.how-it-works-section h2 {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 3.5rem;
    font-size: 1.05rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-gold);
}

.step-number {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-primary);
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.3);
}

.step-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.step-card p {
    font-size: 0.92rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-us-section {
    padding: 5rem 2rem;
    background: var(--bg-primary);
    position: relative;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.why-us-section h2 {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    text-align: left;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.08);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.about-section h2 {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.about-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.about-item:hover {
    border-color: var(--border-strong);
}

.about-item h3 {
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.about-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-item ul {
    margin-left: 1.25rem;
    margin-top: 0.5rem;
}

.about-item li {
    margin-bottom: 0.4rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-column h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.footer-column p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.footer-column li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: var(--text-muted);
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--gold);
}

.responsible-gaming-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.responsible-gaming-links a {
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid var(--border);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.responsible-gaming-links a:hover {
    background: rgba(212, 168, 67, 0.2);
    border-color: var(--border-strong);
}

/* Footer Banners */
.footer-banners {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    flex-wrap: nowrap;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.footer-banner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    width: 150px;
    height: 80px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-banner-link:hover {
    border-color: var(--border-strong);
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.banner-no-link {
    cursor: default;
}

.banner-no-link:hover {
    transform: none;
}

.footer-banner-img {
    max-height: 44px;
    max-width: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-banner-img.banner-white {
    filter: brightness(0) invert(1);
}

.footer-bottom {
    border-top: none;
    padding-top: 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--gold);
    border: 1px solid var(--border-strong);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: all 0.35s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-card,
.step-card,
.feature-card,
.about-item {
    animation: fadeInUp 0.6s ease both;
}

.casino-card:nth-child(1) { animation-delay: 0.05s; }
.casino-card:nth-child(2) { animation-delay: 0.12s; }
.casino-card:nth-child(3) { animation-delay: 0.19s; }
.casino-card:nth-child(4) { animation-delay: 0.26s; }

.step-card:nth-child(1) { animation-delay: 0.05s; }
.step-card:nth-child(2) { animation-delay: 0.12s; }
.step-card:nth-child(3) { animation-delay: 0.19s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .casinos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.65rem; }

    .casinos-section,
    .how-it-works-section,
    .why-us-section,
    .about-section {
        padding: 3.5rem 1.25rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .main-content {
        padding-top: 0;
    }

    .image-banner {
        height: 200px;
    }

    .image-banner-overlay h2 {
        font-size: 1.5rem;
    }

    .image-banner-overlay p {
        font-size: 0.95rem;
    }

    .has-bg-image {
        background-attachment: scroll;
    }

    .footer-banners {
        display: grid;
        grid-template-columns: repeat(2, 150px);
        justify-content: center;
        justify-items: center;
        gap: 0.75rem;
    }

    .footer-banners .footer-banner-link:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .back-to-top {
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 1.75rem;
        margin: 1rem;
    }

    .card-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .casino-logo {
        width: 120px;
        height: 44px;
        object-position: center center;
    }

    .card-body, .card-footer, .card-header {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.hidden {
    display: none !important;
}

.current-year {
    font-weight: normal;
}

/* ===== FOCUS STATES ===== */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* ===== LOADING ===== */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(212, 168, 67, 0.3);
    color: var(--text-primary);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    background: var(--bg-primary);
}

.legal-content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-content h1 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.legal-content h2 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--gold);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.last-updated {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

.support-organizations {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.support-org {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--gold);
}

.support-org h3 {
    color: var(--gold);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.support-org p {
    margin-bottom: 0.5rem;
}

.back-link {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.back-link a {
    color: var(--gold);
    font-weight: 600;
}

.back-link a:hover {
    text-decoration: underline;
    color: var(--gold-light);
}

/* ===== PRINT ===== */
@media print {
    .cookie-banner,
    .back-to-top,
    .modal-overlay {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .main-content {
        margin-left: 0;
    }

    .legal-content {
        padding: 1rem;
    }
}
