/* Feuille partagee — extraite de 2 pages le 2026-07-25.
   Modifier ICI, plus dans chaque page. */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --navy: #0a1628; --navy-light: #111d35; --navy-card: #152040;
            --gold: #c69749; --gold-light: #d8bd83;
            --white: #f0f0f5; --white-dim: #b0b3c0; --white-muted: #848899;
            --glass-border: rgba(198,151,73, 0.15);
            --gradient-gold: linear-gradient(135deg, #c69749 0%, #d8bd83 50%, #c69749 100%);
            --radius: 16px; --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--navy); color: var(--white); line-height: 1.7; overflow-x: hidden;
        }
        .container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            padding: 16px 0; background: rgba(10, 22, 40, 0.92);
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
        }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        .nav-logo { font-size: 1.3rem; font-weight: 800; text-decoration: none; color: var(--white); }
        .nav-logo .logo-accent { color: var(--gold); }
        .nav-back { text-decoration: none; color: var(--gold); font-size: 0.9rem; font-weight: 500; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
        .nav-back:hover { color: var(--gold-light); }
        .legal-hero {
            padding: 140px 0 60px; text-align: center;
            background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
        }
        .legal-hero h1 {
            font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px;
            background: linear-gradient(135deg, var(--white) 0%, var(--white-dim) 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .legal-hero p { color: var(--white-muted); font-size: 1rem; }
        .legal-content { padding: 60px 0 100px; }
        .legal-content h2 {
            font-size: 1.4rem; font-weight: 700; color: var(--gold); margin: 40px 0 16px;
            padding-bottom: 8px; border-bottom: 1px solid var(--glass-border);
        }
        .legal-content h2:first-child { margin-top: 0; }
        .legal-content p { color: var(--white-dim); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.8; }
        .legal-content ul { list-style: none; margin-bottom: 16px; padding-left: 0; }
        .legal-content ul li {
            color: var(--white-dim); font-size: 0.95rem; padding: 6px 0; padding-left: 20px; position: relative;
        }
        .legal-content ul li::before { content: '•'; color: var(--gold); position: absolute; left: 0; font-weight: 700; }

        .disclosure-box {
            background: var(--navy-card); border: 1px solid var(--glass-border);
            border-radius: var(--radius); padding: 32px; margin: 32px 0;
            border-left: 4px solid var(--gold);
        }
        .disclosure-box h3 { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
        .disclosure-box p { color: var(--white-dim); font-size: 0.95rem; line-height: 1.8; margin-bottom: 0; }

        .footer {
            background: var(--navy); border-top: 1px solid rgba(198,151,73, 0.1); padding: 40px 0;
        }
        .footer-inner {
            display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
            max-width: 1200px; margin: 0 auto; padding: 0 24px;
        }
        .footer-text { font-size: 0.85rem; color: var(--white-muted); }
        .footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
        .footer-links a { text-decoration: none; color: var(--white-muted); font-size: 0.85rem; transition: var(--transition); }
        .footer-links a:hover { color: var(--gold); }
        @media (max-width: 600px) {
            .footer-inner { flex-direction: column; text-align: center; }
            .legal-hero { padding: 120px 0 40px; }
        }
