/* ============================================
   Astral Tech - Legal Pages Style
   ============================================ */

.legal-page {
    padding-top: 120px;
    padding-bottom: 80px;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent 400px),
                radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.05), transparent 400px);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.legal-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.legal-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.legal-content {
    color: var(--text-gray);
    line-height: 1.8;
}

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

.legal-section h2 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.legal-section ul {
    list-style: none;
    padding: 0;
}

.legal-section ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.legal-section ul li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.legal-section strong {
    color: var(--white);
    font-weight: 600;
}

.legal-alert {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.legal-alert strong {
    color: #ef4444;
}

.legal-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .legal-card {
        padding: 30px 20px;
    }
    
    .legal-title {
        font-size: 2rem;
    }
}
