/* Legal Pages CSS - Privacy, Terms */

.legal-page-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    padding: 120px 0 80px;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-updated {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 60px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #a78bfa;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.legal-section ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.legal-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #a78bfa;
    font-weight: 600;
}

.legal-section a {
    color: #a78bfa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-section a:hover {
    color: #c4b5fd;
}

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

/* Responsive */
@media (max-width: 768px) {
    .legal-page-container {
        padding: 100px 0 60px;
    }

    .legal-header h1 {
        font-size: 32px;
    }

    .legal-content {
        padding: 32px 24px;
    }

    .legal-section h2 {
        font-size: 24px;
    }

    .legal-section h3 {
        font-size: 18px;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 15px;
    }
}
