/* ==============================================
   LEGAL PAGES
   ============================================== */

.legal-page {
    background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
}

.legal-updated {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 3rem;
    /* padding-bottom: 2rem; */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    font-family: var(--font-secondary);
}

.legal-section {
    margin-bottom: 3rem;
    color: #e0e0e0;
    font-family: var(--font-secondary);
    line-height: 1.8;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    font-family: var(--font-primary);
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f5f5f5;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-family: var(--font-secondary);
}

.legal-section p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #d0d0d0;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.legal-section ul li {
    margin-left: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1.05rem;
    color: #d0d0d0;
    list-style: disc;
}

.legal-section ul li::marker {
    color: #888;
}

/* Links in Legal Content */
.legal-section a {
    color: #5eb3f6;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.legal-section a:hover {
    color: #8cceff;
    border-bottom-color: #8cceff;
}

.legal-section strong {
    color: #fff;
    font-weight: 600;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.legal-footer p {
    font-size: 0.95rem;
    font-family: var(--font-tertiary);
    color: var(--text-muted);
    opacity: 0.6;
    line-height: 1.6;
    margin: 0 auto;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-section p,
    .legal-section ul li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
}
