* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #05070d;
    --bg-blue: #0b1630;
    --text: rgba(255, 255, 255, 0.95);
    --text-soft: rgba(255, 255, 255, 0.72);
    --gold-1: #fff3c2;
    --gold-2: #f4d57c;
    --gold-3: #d7a74a;
    --gold-4: #b97a1d;
    --line: rgba(255, 255, 255, 0.10);
    --card: rgba(255, 255, 255, 0.05);
    --card-strong: rgba(255, 255, 255, 0.08);
    --glow: rgba(255, 210, 90, 0.20);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background:
        radial-gradient(circle at top, rgba(18, 42, 74, 0.95), rgba(0, 0, 0, 0.98) 58%),
        #000;
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* CANVAS */
#manaCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* HEADER / NAV */
header {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo-epic {
    font-family: "Cinzel", serif;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 2px;

    background: linear-gradient(
        180deg,
        var(--gold-1) 0%,
        #f4d57c 20%,
        #d7a74a 45%,
        #fffcbc 58%,
        #b97a1d 100%
    );

    background-clip: text; /* 👈 AJOUT ICI */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08),
        0 2px 8px rgba(210, 75, 20, 0.35),
        0 8px 24px rgba(0, 0, 0, 0.55);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.25s ease, opacity 0.25s ease;
}

nav a:hover {
    color: #f7e7b2;
}

/* HERO */
.hero {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px 20px 80px;
    text-align: center;
}

.hero-content {
    max-width: 1100px;
}

.subtitle {
    color: #8fe6ff;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 26px;
    letter-spacing: 1px;
}

.title-epic {
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 28px;
    filter: drop-shadow(0 0 18px rgba(0, 212, 255, 0.18));
}

.title-epic span {
    display: block;
    font-weight: 900;
    letter-spacing: 2px;

    background: linear-gradient(
        180deg,
        var(--gold-1) 0%,
        #f4d57c 20%,
        #d7a74a 45%,
        #fffcbc 58%,
        #b97a1d 100%
    );

    background-clip: text; /* 👈 AJOUT */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.55),
        0 0 12px rgba(255, 220, 120, 0.16);
}

.title-epic .small {
    font-size: clamp(2rem, 3vw, 3.2rem);
    margin-bottom: 4px;
}

.title-epic .big {
    font-size: clamp(3.8rem, 8vw, 8rem);
}

.title-epic .medium {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    margin-top: 4px;
}

.title-epic .biggest {
    font-size: clamp(4.2rem, 9vw, 9rem);
    margin-top: 4px;
}

.volume {
    color: #7fe7ff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 22px;
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.35);
}

.intro {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.45rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

/* SECTIONS */
.content-section {
    position: relative;
    z-index: 2;
    padding: 90px 20px;
    display: flex;
    justify-content: center;
}

.section-box {
    width: min(1000px, 92%);
    background: rgba(8, 20, 36, 0.55);
    border: 1px solid rgba(120, 230, 255, 0.18);
    border-radius: 22px;
    padding: 40px 32px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.08);
}

.section-box h2 {
    font-family: "Cinzel", serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 20px;
    color: #f3d27b;
    text-align: center;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.55),
        0 0 12px rgba(255, 220, 120, 0.16);
}

.section-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    max-width: 850px;
    margin: 0 auto;
}

/* PODCAST */
.podcast-mana {
    position: relative;
    margin-top: 30px;
    padding: 30px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.podcast-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(80, 170, 255, 0.18), transparent 55%);
    pointer-events: none;
}

.podcast-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.podcast-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 8px;
}

.podcast-content h3 {
    font-family: "Cinzel", serif;
    margin-bottom: 12px;
    color: #f7e7b2;
    font-size: 1.8rem;
    text-align: center;
}

.podcast-text {
    margin-bottom: 18px;
    line-height: 1.7;
}

.podcast-player {
    width: 100%;
    max-width: 520px;
}

/* ROMAN */
.book-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.book-container img {
    width: 340px;
    max-width: 90%;
    border-radius: 14px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.80),
        0 0 25px rgba(255, 200, 80, 0.22);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.book-container img:hover {
    transform: scale(1.04);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 1),
        0 0 40px rgba(255, 220, 90, 0.35);
}

.roman-desc {
    text-align: center;
    font-size: 1.2rem;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.character-card {
    background: linear-gradient(
        180deg,
        rgba(10, 20, 40, 0.70),
        rgba(5, 10, 20, 0.90)
    );
    border: 1px solid rgba(120, 230, 255, 0.20);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.character-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 28px rgba(0, 212, 255, 0.18);
}

.character-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
}

.character-card h3 {
    font-family: "Cinzel", serif;
    font-size: 1.5rem;
    color: #f3d27b;
    margin-bottom: 10px;
}

.character-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

/* CONTACT */
.contact-intro {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-sub {
    text-align: center;
    opacity: 0.75;
    margin: 0 auto 30px;
    font-size: 0.95rem;
    max-width: 760px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-card {
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20);
}

.contact-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 204, 0, 0.08);
    border-color: rgba(255, 204, 0, 0.3);
}

.contact-card h3 {
    font-family: "Cinzel", serif;
    margin-bottom: 10px;
    color: #f3d27b;
}

.contact-card p {
    font-size: 0.95rem;
    opacity: 0.85;
}

.contact-card span {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    opacity: 0.65;
}

/* =========================
   PAGE COMMANDE
   ========================= */

.commande-intro {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.commande-card {
    max-width: 820px;
    margin: 0 auto;
    padding: 12px 0 0;
    text-align: center;
}

.precommande-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 34px 26px 28px;
    border-radius: 24px;
    border: 1px solid rgba(255, 215, 120, 0.22);
    background: linear-gradient(180deg, rgba(16, 18, 30, 0.94) 0%, rgba(10, 12, 22, 0.98) 100%);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.precommande-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 210, 90, 0.10), transparent 45%);
    pointer-events: none;
}

.precommande-badge {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 196, 0, 0.14);
    border: 1px solid rgba(255, 210, 90, 0.35);
    color: #ffd76a;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.precommande-box h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    font-family: "Cinzel", serif;
    font-size: 2rem;
    color: #fff;
}

.precommande-intro {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto 12px;
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.precommande-note {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto 22px;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.74);
}

.precommande-features {
    position: relative;
    z-index: 1;
    margin: 0 auto 24px;
}

.precommande-features p {
    margin: 8px 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.precommande-card {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 540px;
    margin: 0 auto;
    padding: 26px 24px;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid rgba(255, 215, 120, 0.24);
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    box-shadow: 0 12px 30px rgba(0,0,0,0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    color: white;
}

.precommande-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.30);
    border-color: rgba(255, 215, 120, 0.50);
}

.precommande-price-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
}

.precommande-price {
    font-size: 2.7rem;
    font-weight: 900;
    color: #ffcf40;
    line-height: 1;
}

.precommande-shipping {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
}

.precommande-cta {
    display: inline-block;
    padding: 13px 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffd54f 0%, #f1b900 100%);
    color: #1a1405;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 8px 18px rgba(241, 185, 0, 0.28);
}

.secure-note {
    margin-top: 12px;
    font-size: 0.84rem;
    color: #c0c0c0;
    text-align: center;
    opacity: 0.85;
}

.precommande-footer {
    margin: 18px 0 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.70);
}

.commande-small {
    margin-top: 14px;
    font-size: 0.88rem;
    opacity: 0.62;
    line-height: 1.55;
}

/* Responsive mobile pour la page commande */
@media (max-width: 768px) {
    .commande-intro {
        font-size: 0.98rem;
        margin-bottom: 18px;
    }

    .precommande-box {
        padding: 24px 16px 22px;
        border-radius: 18px;
    }

    .precommande-box h3 {
        font-size: 1.45rem;
    }

    .precommande-intro,
    .precommande-note,
    .precommande-features p,
    .precommande-footer,
    .commande-small {
        font-size: 0.94rem;
        line-height: 1.6;
    }

    .precommande-card {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .precommande-price {
        font-size: 2.15rem;
    }

    .precommande-cta {
        width: 100%;
        text-align: center;
        font-size: 0.95rem;
        padding: 12px 16px;
    }

    .secure-note {
        font-size: 0.8rem;
    }
}

/* PAGES MERCI / ECHEC */
.payment-status-box {
    max-width: 760px;
    margin: 0 auto;
    padding: 38px 28px;
    border-radius: 22px;
    text-align: center;
    background: rgba(8, 20, 36, 0.60);
    border: 1px solid rgba(120, 230, 255, 0.18);
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.08);
}

.payment-status-box p {
    margin-top: 14px;
}

.payment-status-box .commande-btn {
    margin-top: 24px;
}

/* FOOTER */
.site-footer {
    margin-top: 60px;
    padding: 25px 10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.60);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    position: relative;
    z-index: 2;
}

.footer-sub {
    margin-top: 4px;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 780px) {
    .logo-epic {
        font-size: 1.2rem;
    }

    nav {
        flex-direction: column;
        gap: 18px;
    }

    nav ul {
        justify-content: center;
        gap: 18px;
    }

    .volume {
        font-size: 1.5rem;
    }

    .intro {
        font-size: 1.05rem;
    }

    .content-section {
        padding: 70px 16px;
    }

    .section-box {
        padding: 28px 20px;
    }

    .section-box p {
        font-size: 1.05rem;
    }

    .character-card img {
        height: 280px;
    }

    .commande-card,
    .precommande-box,
    .payment-status-box {
        padding: 24px 18px;
    }
}
.legal-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top, rgba(18, 42, 74, 0.65), rgba(0, 0, 0, 0.96) 58%),
        #03050a;
    color: rgba(255, 255, 255, 0.92);
}

.legal-shell {
    width: 100%;
    padding: 70px 20px;
    display: flex;
    justify-content: center;
}

.legal-card {
    width: min(760px, 100%);
    padding: 42px 38px 34px;
    border-radius: 22px;
    background: rgba(10, 16, 28, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
}

.legal-kicker {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: rgba(255, 215, 120, 0.78);
    margin-bottom: 12px;
}

.legal-card h1 {
    text-align: center;
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #f6df9b;
}

.legal-lead {
    text-align: center;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}

.legal-divider {
    width: 72px;
    height: 1px;
    margin: 26px auto 30px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 120, 0.75), transparent);
}

.legal-block + .legal-block {
    margin-top: 22px;
}

.legal-block h2 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #f3d27b;
    letter-spacing: 0.02em;
}

.legal-block p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.84);
}

.legal-mail {
    color: #9fe8ff;
    text-decoration: none;
}

.legal-mail:hover {
    text-decoration: underline;
}

.legal-seller {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.legal-seller p {
    text-align: center;
    font-size: 0.72rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.48);
}

@media (max-width: 640px) {
    .legal-card {
        padding: 30px 22px 26px;
        border-radius: 18px;
    }

    .legal-card h1 {
        font-size: 1.45rem;
    }

    .legal-block p,
    .legal-lead {
        font-size: 0.9rem;
    }
}
/* FOOTER GLOBAL */
.site-footer {
    margin-top: 60px;
    padding: 30px 10px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* TEXTE PRINCIPAL */
.site-footer p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* MENTIONS LÉGALES (style argent discret) */
.footer-legal {
    margin-top: 6px;
    font-size: 0.75rem;
    text-align: center; /* 👈 centré */
}

.footer-legal a {
    color: #c0c0c0 !important; /* argent */
    text-decoration: none;
    letter-spacing: 0.05em;
}

.footer-legal a:visited {
    color: #c0c0c0 !important; /* enlève le violet */
}

.footer-legal a:hover {
    color: #e5e5e5 !important; /* léger éclaircissement */
}
.secure-note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #c0c0c0;
    text-align: center;
    opacity: 0.8;
}
/* =========================
   RESPONSIVE SMARTPHONE
   ========================= */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    header {
        padding: 0;
    }

    nav {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 14px;
        padding: 18px 16px;
        text-align: center;
    }

    .logo-epic {
        font-size: 1.2rem;
        letter-spacing: 1px;
        text-align: center;
    }

    nav ul {
        justify-content: center;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
        padding: 0;
    }

    nav a {
        font-size: 0.95rem;
    }

    .hero {
        min-height: auto;
        padding: 50px 16px 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .subtitle {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .title-epic .small {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .title-epic .big {
        font-size: clamp(2.2rem, 11vw, 3.5rem);
    }

    .title-epic .medium {
        font-size: clamp(1.8rem, 8vw, 2.7rem);
    }

    .title-epic .biggest {
        font-size: clamp(2.4rem, 12vw, 4rem);
    }

    .volume {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .intro {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 6px;
    }

    .content-section {
        padding: 50px 14px;
    }

    .section-box {
        width: 100%;
        padding: 24px 18px;
        border-radius: 18px;
    }

    .section-box h2 {
        font-size: 1.7rem;
        margin-bottom: 16px;
    }

    .section-box h3 {
        font-size: 1.25rem;
    }

    .section-box p {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .book-container {
        margin: 24px 0 18px;
    }

    .book-container img {
        width: 100%;
        max-width: 260px;
    }

    .roman-desc {
        font-size: 1rem;
        line-height: 1.65;
    }

    .characters-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 24px;
    }

    .character-card {
        padding: 16px;
    }

    .character-card img {
        height: auto;
        max-height: 320px;
    }

    .character-card h3 {
        font-size: 1.25rem;
    }

    .character-card p {
        font-size: 0.95rem;
    }

    .podcast-mana {
        padding: 22px 16px;
    }

    .podcast-content h3 {
        font-size: 1.3rem;
    }

    .podcast-text {
        font-size: 0.95rem;
    }

    .podcast-player {
        width: 100%;
    }

    .commande-intro,
    .commande-text,
    .commande-warning,
    .precommande-note,
    .precommande-footer,
    .commande-small {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .commande-card {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .commande-card h3 {
        font-size: 1.4rem;
    }

    .commande-btn,
    .form-btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 14px 18px;
        font-size: 0.98rem;
    }

    .precommande-box {
        margin-top: 24px;
        padding: 22px 16px;
        border-radius: 18px;
    }

    .precommande-badge {
        font-size: 0.72rem;
        padding: 7px 12px;
    }

    .precommande-box h4 {
        font-size: 1.4rem;
    }

    .precommande-intro {
        font-size: 1rem;
    }

    .precommande-card {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .precommande-price {
        font-size: 2rem;
    }

    .precommande-shipping {
        font-size: 0.9rem;
    }

    .precommande-cta {
        width: 100%;
        text-align: center;
        font-size: 0.95rem;
        padding: 12px 16px;
    }

    .secure-note {
        font-size: 0.82rem;
        margin-top: 10px;
        text-align: center;
    }

    .contact-intro,
    .contact-sub {
        font-size: 0.95rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card {
        padding: 18px 16px;
    }

    .contact-card h3 {
        font-size: 1.15rem;
    }

    .contact-card p,
    .contact-card span {
        font-size: 0.92rem;
    }

    .legal-shell {
        padding: 40px 14px;
    }

    .legal-card,
    .legal-container {
        width: 100%;
        padding: 24px 18px;
        border-radius: 16px;
    }

    .legal-card h1,
    .legal-container h1 {
        font-size: 1.35rem;
        line-height: 1.25;
    }

    .legal-card h2,
    .legal-container h2 {
        font-size: 1rem;
    }

    .legal-card p,
    .legal-container p,
    .legal-lead {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .site-footer {
        padding: 22px 12px;
    }

    .site-footer p {
        font-size: 0.82rem;
        text-align: center;
    }

    .footer-sub {
        font-size: 0.75rem;
    }

    .footer-legal {
        margin-top: 8px;
        font-size: 0.72rem;
        text-align: center;
    }

    .footer-legal a,
    .footer-legal a:visited {
        color: #c0c0c0 !important;
    }
}