/* 🎨 DESIGN SYSTEM — "ARCANE OBSIDIAN" */
:root {
    /* Colors */
    --c-obsidian-black: #08090D;
    --c-arcane-blue: #111827;
    --c-royal-sapphire: #2563EB;
    --c-arcane-violet: #6D28D9;
    --c-ancient-gold: #D4AF37;
    --c-crystal-white: #F5F7FA;
    --c-slate-gray: #94A3B8;
    --c-midnight-blue: #0F172A;
    
    /* Surfaces */
    --surface-panel: rgba(255, 255, 255, 0.03);
    --surface-border: rgba(212, 175, 55, 0.15);
    --glass-blur: blur(14px);
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --nav-rail-width: 110px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    background-color: var(--c-obsidian-black);
    color: var(--c-crystal-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(109, 40, 217, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

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

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

/* Utilities */
.section-padding {
    padding: 6rem 5%;
}

.section-title {
    font-size: 2.5rem;
    color: var(--c-ancient-gold);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--c-slate-gray);
    margin-bottom: 3rem;
    font-style: italic;
}

.section-heading-center {
    text-align: center;
    margin-bottom: 4rem;
}

.glass-panel {
    background: var(--surface-panel);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--surface-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.engraved-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-ancient-gold), transparent);
    margin: 1.5rem 0;
    opacity: 0.3;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-crystal-white);
    background: linear-gradient(135deg, var(--c-ancient-gold) 0%, var(--c-royal-sapphire) 100%);
    border-radius: 18px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-ancient-gold);
    background: transparent;
    border: 1px solid var(--c-ancient-gold);
    border-radius: 18px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* Disclaimer Bar */
.disclaimer-bar {
    background-color: #000000;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: var(--c-slate-gray);
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 101;
}

/* Arcane Navigation Rail */
.arcane-nav-rail {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: var(--nav-rail-width);
    height: 720px;
    max-height: 90vh;
    background: var(--surface-panel);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--surface-border);
    border-radius: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.nav-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--c-slate-gray);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.nav-links a svg {
    width: 24px;
    height: 24px;
    transition: var(--transition-smooth);
}

.nav-links a span {
    font-size: 0.75rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    position: absolute;
    transform: translateX(20px);
    pointer-events: none;
    transition: var(--transition-smooth);
    white-space: nowrap;
    background: var(--c-obsidian-black);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid var(--surface-border);
    left: 80px;
}

.nav-links a:hover {
    color: var(--c-ancient-gold);
    opacity: 1;
}

.nav-links a:hover span {
    opacity: 1;
    transform: translateX(0);
}

/* Main Wrapper */
.citadel-wrapper {
    margin-left: calc(var(--nav-rail-width) + 40px);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Top Header */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: relative;
    z-index: 10;
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--c-crystal-white);
}

.logo span {
    color: var(--c-ancient-gold);
}

/* Hero Hall */
.hero-hall {
    position: relative;
    padding: 2rem 5% 6rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--c-obsidian-black) 0%, rgba(8,9,13,0.7) 45%, rgba(8,9,13,0.1) 100%);
    z-index: 0;
}

/* Using pseudo-element for BG to keep HTML clean and path manageable */
.hero-hall::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background-image: url('images/grand_arcane_citadel_hero_architecture.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.75;
    z-index: -1;
    mask-image: linear-gradient(to left, black 20%, transparent);
    -webkit-mask-image: linear-gradient(to left, black 20%, transparent);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 1;
    gap: 4rem;
}

.hero-left {
    flex: 0 0 45%;
    animation: fadeIn 1.5s ease-out;
}

.hero-headline {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--c-crystal-white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--c-slate-gray);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--c-slate-gray);
    font-family: var(--font-heading);
}

.icon-star {
    width: 16px;
    height: 16px;
    fill: var(--c-ancient-gold);
    vertical-align: middle;
    margin-right: 4px;
}

.divider {
    color: rgba(255,255,255,0.2);
}

.age-badge {
    border: 1px solid var(--c-slate-gray);
    padding: 2px 6px;
    border-radius: 4px;
}

.hero-right {
    flex: 0 0 55%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 2s ease-out;
}

/* Game Frame Design */
.game-relic-chamber {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
}

.relic-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.8);
    border-radius: 32px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 0 50px rgba(37, 99, 235, 0.15),
        inset 0 0 30px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

/* Ancient Gold Corners */
.crystal-corners {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--c-ancient-gold);
    z-index: 3;
    pointer-events: none;
}
.corner-tl { top: 0; left: 0; border-right: none; border-bottom: none; border-top-left-radius: 32px; }
.corner-tr { top: 0; right: 0; border-left: none; border-bottom: none; border-top-right-radius: 32px; }
.corner-bl { bottom: 0; left: 0; border-right: none; border-top: none; border-bottom-left-radius: 32px; }
.corner-br { bottom: 0; right: 0; border-left: none; border-top: none; border-bottom-right-radius: 32px; }

.floating-pedestal {
    position: absolute;
    bottom: -30px;
    left: 10%;
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.4) 0%, transparent 70%);
    filter: blur(10px);
    z-index: 1;
}

/* Featured Spell Chamber */
.large-panel {
    max-width: 1200px;
    margin: 0 auto;
}

.chamber-header {
    text-align: center;
    margin-bottom: 3rem;
}

.chamber-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.chamber-info h4 {
    color: var(--c-royal-sapphire);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.chamber-info p {
    color: var(--c-slate-gray);
    font-size: 0.95rem;
}

/* Magic Schools */
.schools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.school-panel {
    background: var(--surface-panel);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    backdrop-filter: var(--glass-blur);
}

.school-panel:hover {
    transform: translateY(-5px);
    border-color: var(--c-ancient-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.school-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.school-panel h4 {
    color: var(--c-crystal-white);
    font-size: 1.4rem;
}

.school-panel p {
    color: var(--c-slate-gray);
    font-size: 0.95rem;
}

/* Spell Library */
.editorial-row {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 6rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.editorial-row:last-child {
    margin-bottom: 0;
}

.editorial-row.reverse {
    flex-direction: row-reverse;
}

.editorial-content {
    flex: 1;
}

.editorial-content p {
    margin-bottom: 1.5rem;
    color: var(--c-slate-gray);
    font-size: 1.1rem;
}

.editorial-image {
    flex: 1.3;
    position: relative;
}

.library-img {
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(37, 99, 235, 0.15);
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    background: #111; /* Fallback for missing img */
    transition: var(--transition-smooth);
}

.library-img:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.7), 0 0 40px rgba(37, 99, 235, 0.3);
}

.image-border {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--c-ancient-gold);
    border-radius: 12px;
    z-index: 1;
    opacity: 0.85;
}

.reverse .image-border {
    left: -20px;
}

/* Council Timeline */
.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 3rem;
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--c-ancient-gold), var(--c-royal-sapphire));
    opacity: 0.5;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -3.4rem;
    top: 1.5rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--c-obsidian-black);
    border: 2px solid var(--c-ancient-gold);
    z-index: 2;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.timeline-content {
    padding: 1.5rem 2rem;
}

.timeline-content h4 {
    color: var(--c-crystal-white);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--c-slate-gray);
    margin: 0;
}

/* Player Reviews (Notice Board) */
.notice-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(17, 24, 39, 0.4);
    border: 10px solid #1a1a24;
    border-radius: 8px;
    padding: 4rem;
    position: relative;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}

.parchment-note {
    background: #e8e2d2;
    color: #2c2720;
    padding: 2rem;
    position: relative;
    box-shadow: 3px 5px 15px rgba(0,0,0,0.4);
    border-radius: 2px 10px 3px 8px;
    transform: rotate(-1deg);
    transition: var(--transition-smooth);
}

.parchment-note:nth-child(2) {
    transform: rotate(2deg);
    background: #e1dac6;
}

.parchment-note:nth-child(3) {
    transform: rotate(-2deg);
    background: #ece7da;
}

.parchment-note:hover {
    transform: scale(1.02) rotate(0deg);
    z-index: 10;
}

.pin {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle at 30% 30%, #a8a8a8, #333);
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 1px 2px 3px rgba(0,0,0,0.5);
}

.note-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.note-author {
    font-weight: 600;
    text-align: right;
    font-size: 0.9rem;
}

/* Responsible Gaming */
.rg-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.rg-content p {
    color: var(--c-slate-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.rg-content p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h4 {
    color: var(--c-ancient-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-intro {
    color: var(--c-slate-gray);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.support-details {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.support-item svg {
    width: 24px;
    height: 24px;
    color: var(--c-ancient-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.support-item div {
    display: flex;
    flex-direction: column;
}

.support-item strong {
    color: var(--c-crystal-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.support-item span, .support-item a {
    color: var(--c-slate-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.support-item a:hover {
    color: var(--c-ancient-gold);
}

.faq-section {
    margin-top: 2.5rem;
}

.faq-section h4 {
    color: var(--c-crystal-white);
    margin-bottom: 1.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item strong {
    display: block;
    color: var(--c-royal-sapphire);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--c-slate-gray);
    font-size: 0.95rem;
}

/* Glass Form */
.contact-form-wrapper {
    border-radius: 24px;
    padding: 3rem;
    height: fit-content;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--c-crystal-white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(8, 9, 13, 0.6);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 1rem;
    color: var(--c-crystal-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-ancient-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    background: rgba(8, 9, 13, 0.8);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-obsidian-black);
    background: linear-gradient(135deg, #FDE047 0%, #D4AF37 100%);
    border-radius: 18px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
    width: 100%;
    margin-top: 1rem;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.form-footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--c-slate-gray);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Footer */
.citadel-footer {
    background: var(--c-arcane-blue);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 4rem 5% 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 3rem;
}

.footer-brand h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand span {
    color: var(--c-ancient-gold);
}

.footer-brand p {
    color: var(--c-slate-gray);
    font-family: var(--font-heading);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group h4 {
    color: var(--c-crystal-white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.link-group a {
    display: block;
    color: var(--c-slate-gray);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.link-group a:hover {
    color: var(--c-ancient-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-headline { font-size: 3rem; }
    .hero-content { gap: 2rem; }
}

@media (max-width: 992px) {
    .citadel-wrapper {
        margin-left: 0;
    }
    
    .arcane-nav-rail {
        display: none; /* Hide on mobile, could be replaced with hamburger menu */
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-hall::before {
        width: 100%;
        mask-image: linear-gradient(to bottom, black, transparent);
        -webkit-mask-image: linear-gradient(to bottom, black, transparent);
    }

    .hero-left, .hero-right {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .hero-description {
        margin: 0 auto 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }

    .editorial-row, .editorial-row.reverse {
        flex-direction: column;
        gap: 3rem;
    }

    .chamber-content {
        grid-template-columns: 1fr;
    }
    
    .notice-board {
        padding: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 5%;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Legal Documents */
.legal-header {
    text-align: center;
    padding: 6rem 5% 2rem;
}

.legal-header h2 {
    font-size: 3.5rem;
    color: var(--c-ancient-gold);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.legal-header p {
    color: var(--c-slate-gray);
    font-size: 1.1rem;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto 6rem;
    padding: 3rem 4rem;
}

.legal-content h2 {
    color: var(--c-crystal-white);
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--surface-border);
    padding-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.legal-content h2:first-of-type {
    margin-top: 2rem;
}

.legal-content h3 {
    color: var(--c-royal-sapphire);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.legal-content p {
    color: var(--c-slate-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-content ul {
    color: var(--c-slate-gray);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--c-ancient-gold);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: var(--transition-smooth);
}

.legal-content a:hover {
    text-decoration-color: var(--c-ancient-gold);
}

.legal-content strong {
    color: var(--c-crystal-white);
}

@media (max-width: 768px) {
    .legal-document {
        padding: 2rem;
    }
    .legal-header h2 {
        font-size: 2.5rem;
    }
    .legal-content h2 {
        font-size: 1.5rem;
    }
}