/* Styles spécifiques à la page legal.html */

/* Système d'onglets */
.tab-button {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem 0.5rem 0 0;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.tab-button.active {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: transparent;
    color: #D141FF;
    border-color: rgba(209, 65, 255, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contenu juridique */
.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    color: #ffffff;
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(209, 65, 255, 0.3);
}

.legal-content h3 {
    color: #e2e8f0;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.legal-content ul, .legal-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: #ffffff;
    font-weight: 600;
}

.legal-content .article {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid rgba(209, 65, 255, 0.5);
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-radius: 0.25rem;
}
