/* ============================================
   NordCast Games - Frost & Ice Theme
   ============================================ */

:root {
    --bg-dark: #0a1525;
    --bg-card: #0e1c33;
    --bg-card-hover: #132440;
    --bg-header: rgba(10, 21, 37, 0.88);
    --accent: #7ec8e3;
    --accent-hover: #5bb8d9;
    --accent-glow: rgba(126, 200, 227, 0.2);
    --text-main: #e8f0f8;
    --text-muted: #8aa4be;
    --text-dark: #0a1525;
    --border: rgba(126, 200, 227, 0.15);
    --border-card: rgba(126, 200, 227, 0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    --container: 1140px;
    --transition: 0.3s ease;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* Section titles */
.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title em {
    font-style: italic;
    color: var(--accent);
}

.section-title-center { text-align: center; }

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin-bottom: 48px;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-inner { max-width: var(--container); margin: 0 auto; }

.cookie-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--accent);
}
.cookie-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.cookie-body a { color: var(--accent); text-decoration: underline; }

.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-cookie-yes { background: var(--accent); color: var(--text-dark); }
.btn-cookie-yes:hover { background: var(--accent-hover); }
.btn-cookie-no { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-cookie-no:hover { border-color: var(--accent); color: var(--text-main); }
.btn-cookie-settings { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-cookie-settings:hover { border-color: var(--accent); color: var(--text-main); }

.cookie-settings { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.cookie-opt { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; cursor: pointer; }
.cookie-opt input { accent-color: var(--accent); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
}
.site-header.scrolled {
    background: var(--bg-header);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-main);
}
.logo-icon { color: var(--accent); font-size: 1.4rem; }
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
}
.nav-link:hover { color: var(--text-main); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }

.nav-cta {
    background: var(--accent);
    color: var(--text-dark) !important;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}
.nav-cta:hover { background: var(--accent-hover); }
.nav-cta::after { display: none; }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 21, 37, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav li { margin-bottom: 24px; }
.mob-link {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-main);
    text-decoration: none;
}
.mob-link:hover { color: var(--accent); }
.mob-cta { color: var(--accent) !important; }

@media (max-width: 768px) {
    .main-nav { display: none; }
    .burger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(14, 28, 51, 0.8), transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(126, 200, 227, 0.05), transparent 50%);
    z-index: 0;
}

.hero-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-main);
}
.hero-title em { font-style: italic; color: var(--accent); }

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-buttons { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}
.btn-primary { background: var(--accent); color: var(--text-dark); }
.btn-primary:hover { background: var(--accent-hover); color: var(--text-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text-main); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-full { width: 100%; justify-content: center; }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }
.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.hero-visual { display: flex; justify-content: center; }
.hero-img-wrap {
    width: 320px;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--accent-glow);
    border: 2px solid var(--border-card);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
    .hero { padding: 100px 0 60px; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-img-wrap { width: 220px; height: 220px; }
}

/* ============================================
   THE GAME
   ============================================ */
.game-section {
    padding: 100px 0;
    position: relative;
}

.game-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.game-images { position: relative; min-height: 400px; }

.game-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    border: 1px solid var(--border-card);
}
.game-img img { width: 100%; height: auto; }
.game-img-1 { position: relative; z-index: 1; }
.game-img-2 {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 65%;
    z-index: 2;
    border: 3px solid var(--bg-dark);
}

.game-text .lead {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 500;
}
.game-text p { color: var(--text-muted); margin-bottom: 16px; }

.game-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag {
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .game-grid { grid-template-columns: 1fr; }
    .game-images { min-height: auto; }
    .game-img-2 { position: relative; bottom: auto; right: auto; width: 100%; margin-top: 16px; }
}

/* ============================================
   MEDIA SHOWCASE
   ============================================ */
.media-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(14,28,51,0.3) 50%, transparent 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 16px;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-card);
    transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(10,21,37,0.9));
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-main);
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition);
}
.gallery-card:hover .gallery-label { opacity: 1; transform: translateY(0); }

@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gallery-card { height: 220px; }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-bg { position: absolute; inset: 0; background: rgba(0,0,0,0.9); }
.lightbox-body { position: relative; max-width: 90vw; max-height: 90vh; }
.lb-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); object-fit: contain; }
.lb-close, .lb-prev, .lb-next {
    position: absolute;
    background: rgba(10,31,10,0.8);
    color: var(--text-main);
    border: 1px solid var(--border);
    cursor: pointer;
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--accent); color: var(--text-dark); border-color: var(--accent); }
.lb-close { top: -20px; right: -20px; }
.lb-prev { left: -56px; top: 50%; transform: translateY(-50%); }
.lb-next { right: -56px; top: 50%; transform: translateY(-50%); }
.lb-counter { text-align: center; margin-top: 12px; color: var(--text-muted); font-size: 0.85rem; }

@media (max-width: 768px) {
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
    .lb-close { top: 8px; right: 8px; }
}

/* ============================================
   FEATURES
   ============================================ */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all var(--transition);
}
.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--accent);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* ============================================
   EXPEDITION REPORTS
   ============================================ */
.reports-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(14,28,51,0.3) 50%, transparent 100%);
}

.reports-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 16px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.reports-track::-webkit-scrollbar { display: none; }

.report-card {
    min-width: 320px;
    max-width: 360px;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    scroll-snap-align: start;
}

.report-stars { color: var(--accent); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }

.report-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.report-name { display: block; font-weight: 600; color: var(--text-main); font-size: 0.9rem; }
.report-location { display: block; color: var(--text-muted); font-size: 0.8rem; }

.reports-nav { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }
.rpt-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-main);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.rpt-btn:hover { background: var(--accent); color: var(--text-dark); border-color: var(--accent); }

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    padding: 100px 0;
}

.faq-list { max-width: 760px; margin-top: 40px; }

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
    transition: color var(--transition);
}
.faq-q:hover { color: var(--accent); }

.faq-icon {
    font-size: 1.4rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

.faq-a p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.faq-a a { color: var(--accent); text-decoration: underline; }

/* ============================================
   REGISTER
   ============================================ */
.register-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(14,28,51,0.4), transparent);
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.register-info p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.register-note { font-size: 0.85rem !important; font-style: italic; }

.trust-badges { display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.trust-badge svg { width: 20px; height: 20px; color: var(--accent); }

.register-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 36px;
}

.register-form .form-group { margin-bottom: 20px; }

.register-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
}
.optional { color: var(--text-muted); font-weight: 400; }

.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 21, 37, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}
.register-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.register-form input::placeholder { color: var(--text-muted); opacity: 0.5; }

.form-check { display: flex; align-items: flex-start; gap: 4px; }
.form-check label {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}
.form-check input[type="checkbox"] { accent-color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.form-check a { color: var(--accent); text-decoration: underline; }

.field-error {
    display: block;
    font-size: 0.8rem;
    color: #e74c3c;
    margin-top: 4px;
    min-height: 1em;
}

.form-success {
    text-align: center;
    padding: 32px;
    color: var(--accent);
    font-size: 1.05rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .register-grid { grid-template-columns: 1fr; }
}

/* ============================================
   TRUST
   ============================================ */
.trust-section { padding: 80px 0; }

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

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 28px 24px;
}
.trust-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--accent);
}
.trust-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.trust-card a { color: var(--accent); text-decoration: underline; }

@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .trust-grid { grid-template-columns: 1fr; } }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--border);
    background: rgba(10, 21, 37, 0.5);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-main);
    margin-bottom: 12px;
}
.footer-logo .logo-text { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; }

.footer-brand p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.6; }
.footer-address { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a, .footer-col li { font-size: 0.88rem; color: var(--text-muted); text-decoration: none; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; }
.footer-legal { font-size: 0.75rem; }

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

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    padding: 140px 0 80px;
}
.legal-page .container { max-width: 800px; }
.legal-page h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--accent);
    margin-bottom: 8px;
}
.legal-page .legal-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-main);
    margin-top: 36px;
    margin-bottom: 12px;
}
.legal-page h3 {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-top: 24px;
    margin-bottom: 8px;
}
.legal-page p {
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
}
.legal-page ul, .legal-page ol {
    color: var(--text-muted);
    margin-bottom: 12px;
    padding-left: 24px;
    line-height: 1.7;
}
.legal-page a { color: var(--accent); text-decoration: underline; }
