/* LEGAL (TERMS & PRIVACY) STYLES */

.legal-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 2rem 1.5rem 8rem;
    font-family: var(--font-body);
    color: #ccc;
    animation: legalFadeIn 0.5s ease-out;
}

@keyframes legalFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal-container h1 {
    font-family: var(--font-title);
    color: var(--gold);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
    text-transform: uppercase;
}

.legal-update-tag {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    color: #666;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-family: var(--font-title);
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.legal-section p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #aaa;
}

.legal-footer-action {
    text-align: center;
    margin-top: 5rem;
}

.btn-return-shadow {
    color: var(--gold);
    font-family: var(--font-title);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: 0.3s;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-return-shadow:hover {
    border-color: var(--gold);
    text-shadow: 0 0 10px rgba(200, 170, 110, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .legal-container {
        margin-top: 3rem;
    }

    .legal-section h2 {
        font-size: 1.2rem;
    }
}
