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

:root {
    --sand-light: #f7f5f0;
    --sand-medium: #ede8df;
    --sand-dark: #d4c7b3;
    --white: #ffffff;
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--sand-light);
    padding: 2rem 1rem;
}

.hoololi-brand {
    font-family: 'Rubik Dirt', cursive;
    font-weight: 400;
    letter-spacing: 0.05em;
    display: inline-block;
    background: linear-gradient(135deg, var(--text-dark), var(--text-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: 800px;
    margin: 4rem auto 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(45, 55, 72, 0.08);
    border: 1px solid var(--sand-medium);
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-medium);
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--text-dark);
}

.back-link::before {
    content: "←";
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

h2 {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--sand-medium);
    padding-bottom: 0.5rem;
}

h2:first-of-type {
    margin-top: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.highlight {
    background: var(--sand-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--text-dark);
}

.contact-info {
    background: var(--sand-medium);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sand-medium);
    color: var(--text-medium);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    body {
        padding: 1rem 0.5rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0.5rem;
    }
    
    .container {
        padding: 1.5rem 1rem;
    }
}

/* Sélecteur de langue - à ajouter dans styles_disclaimers.css */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(45, 55, 72, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 4px;
    display: flex;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lang-btn {
    padding: 8px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
    min-width: 40px;
    text-align: center;
}

.lang-btn.current {
    background: white;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lang-btn:not(.current):hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .language-selector {
        top: 15px;
        right: 15px;
        padding: 3px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
        min-width: 35px;
    }
}
