/* ============================================
   ASAP STUDIO - PAGES LÉGALES - FUTURISTIC
   ============================================ */

/* ===========================================
   CONTAINER NARROW
   =========================================== */
.container--narrow {
    max-width: 800px;
}

/* ===========================================
   LEGAL PAGE
   =========================================== */
.legal-page {
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xxl);
    background: var(--color-bg);
    position: relative;
}

.legal-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 136, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 136, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.legal-header {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(0, 255, 136, 0.15);
    position: relative;
}

.legal-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.6), transparent);
}

.legal-title {
    font-size: var(--fs-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.legal-updated {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

/* ===========================================
   LEGAL CONTENT
   =========================================== */
.legal-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.legal-section {
    position: relative;
    padding: var(--space-lg);
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.3) 0%, rgba(13, 13, 13, 0.5) 100%);
    border: 1px solid rgba(0, 255, 136, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.legal-section:hover {
    border-color: rgba(0, 255, 136, 0.2);
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
}

.legal-section h2 {
    font-size: var(--fs-lg);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-accent);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.legal-section h3 {
    font-size: var(--fs-md);
    font-weight: 600;
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
}

.legal-section p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section strong {
    color: var(--color-text);
}

.legal-section ul {
    margin: var(--space-sm) 0;
    padding-left: var(--space-lg);
}

.legal-section li {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-xs);
    position: relative;
}

.legal-section li::before {
    content: '→';
    position: absolute;
    left: calc(-1 * var(--space-md));
    color: var(--color-accent);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.legal-section a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: all var(--transition-fast);
}

.legal-section a:hover {
    color: var(--color-text);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}
