/* Legal Pages Styles */

.legal-page {
    padding: 5rem 0;
    background: #0a0a0a;
    min-height: 60vh;
}

.legal-page .container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-page h1 {
    color: #2563eb;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-page h2 {
    color: #2563eb;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(37, 99, 235, 0.3);
}

.legal-page h2:first-of-type {
    margin-top: 0;
}

.legal-page p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.legal-page strong {
    color: white;
    font-weight: 600;
}

/* Error Page */
.error-page {
    padding: 8rem 0;
    background: #0a0a0a;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.error-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.error-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (max-width: 768px) {
    .legal-page .container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .legal-page h2 {
        font-size: 1.3rem;
    }
    
    .error-code {
        font-size: 5rem;
    }
    
    .error-content {
        padding: 2rem;
        margin: 0 1rem;
    }
}