/* ================================================================
   PILOTLEAGUE - STYLES PAGES LÉGALES (Privacy & Terms)
   ================================================================ */

.legal-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
.legal-header {
    padding: 1rem 0 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-small {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
}

.logo-text span {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Content */
.legal-content {
    flex: 1;
}

.legal-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #d4af37;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content section {
    margin-bottom: 1.5rem;
}

.legal-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content li {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    position: relative;
}

.legal-content li::marker {
    color: #d4af37;
}

.contact-email {
    text-align: center;
    margin: 1.5rem 0;
}

.contact-email a {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border: 2px solid #d4af37;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-email a:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a2e;
}

/* Footer */
.legal-footer {
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 3rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal-footer a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-footer a:hover {
    color: #f4d03f;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-container {
        padding: 1rem;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
    }
    
    .legal-content h2 {
        font-size: 1.2rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .legal-footer {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-separator {
        display: none;
    }
}
