* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary-purple: #9333ea;
    --secondary-purple: #a855f7;
    --light-purple: #c084fc;
    --dark-bg: #0a0e1a;
    --card-bg: #141824;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f35 100%);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.politique-container {
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.politique-header {
    text-align: center;
    margin-bottom: 3rem;
}

.politique-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.politique-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Tabs */
.tabs-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(147, 51, 234, 0.2);
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tab-btn:hover { color: var(--primary-purple); }

.tab-btn.active {
    color: var(--primary-purple);
    border-bottom-color: var(--primary-purple);
}

/* Tab content */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.legal-section {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.legal-section h2 {
    font-size: 1.3rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.legal-section h3 {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin: 1.2rem 0 0.5rem;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.legal-section ul {
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.legal-section ul li { margin-bottom: 0.3rem; }

.legal-section a {
    color: var(--primary-purple);
    text-decoration: none;
}

.legal-section a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .politique-container { padding: 2rem 1rem; }
    .politique-header h1 { font-size: 1.8rem; }
    .tab-btn { padding: 0.6rem 1rem; font-size: 0.9rem; }
    .legal-section { padding: 1.5rem; }
}
