/* ===================== */
/* Reset & Body          */
/* ===================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-900: #0b1626;
    --navy-800: #0e1c30;
    --navy-700: #17253f;
    --teal: #10a094;
    --teal-dark: #0c7d73;
    --teal-light: #17c2b3;
    --text: #f0f4f8;
    --text-muted: #b6c2d1;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--navy-900);
    color: var(--text);
    width: 100%;
    min-height: 100vh;
}

/* Verrou de scroll tant que le modal bloque l'utilisateur */
body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* ===================== */
/* Hero (premier 100vh)  */
/* ===================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#HeroBack {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    z-index: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 22, 38, 0.6);
    z-index: 1;
}

/* ===================== */
/* Navbar                */
/* ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    z-index: 50;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-crown {
    color: var(--teal-light);
    font-size: 1.2rem;
    margin-right: 4px;
}

.nav-zamba {
    color: var(--teal);
}

.nav-mysie {
    color: #fff;
}

.nav-login {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-login:hover {
    color: var(--teal-light);
}

/* ===================== */
/* Disclaimer Modal      */
/* ===================== */
#Disclaimer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 16, 28, 0.75);
    backdrop-filter: blur(4px);
    z-index: 100;
    padding: 20px;
}

#Disclaimer.hidden {
    display: none;
}

.disc-content {
    background: linear-gradient(160deg, #17253f 0%, #123047 45%, #0c7d73 100%);
    border: 1px solid rgba(23, 194, 179, 0.35);
    border-radius: 16px;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.55),
        0 0 60px rgba(16, 160, 148, 0.18);
    padding: 44px 40px 36px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    animation: popIn 0.4s ease-out;
}

.disc-lead {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disc-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 26px;
    line-height: 1.6;
}

.disc-question {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.disc-confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.disc-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(23, 194, 179, 0.45);
}

.disc-confirm .arrow {
    font-size: 1.3rem;
}

.disc-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================== */
/* Animation             */
/* ===================== */
@keyframes popIn {
    0%   { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

/* ===================== */
/* Contenu (sous le fold)*/
/* ===================== */
.content {
    position: relative;
    z-index: 5;
    background: var(--navy-900);
}

article {
    max-width: 820px;
    margin: 0 auto;
    padding: 64px 22px 80px;
    line-height: 1.8;
}

article h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--teal-light), #7fe9df);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

article h2 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    color: var(--teal-light);
}

article h3 {
    font-size: 1.2rem;
    margin: 24px 0 12px;
    color: #8fe3da;
}

article p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

article a {
    color: var(--teal-light);
}

article ul, article ol {
    margin: 16px 0;
    padding-left: 24px;
}

article li {
    margin-bottom: 8px;
    color: var(--text-muted);
}

article blockquote {
    border-left: 3px solid var(--teal);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(16, 160, 148, 0.07);
    border-radius: 0 8px 8px 0;
    color: var(--text);
}

article table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

article th, article td {
    padding: 12px;
    border: 1px solid #24405c;
    text-align: left;
}

article th {
    background: var(--navy-700);
    color: #fff;
}

article td {
    color: var(--text-muted);
}

/* CTA inline dans le contenu */
.content-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 12px 0 8px;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.content-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(23, 194, 179, 0.4);
}

/* ===================== */
/* Responsive            */
/* ===================== */
@media screen and (max-width: 600px) {
    .navbar { padding: 12px 16px; }
    .nav-logo { font-size: 1.1rem; }

    .disc-content { padding: 32px 22px 28px; }
    .disc-lead { font-size: 1.25rem; }
    .disc-text { font-size: 0.85rem; margin-bottom: 20px; }
    .disc-confirm { padding: 14px 0; font-size: 1rem; }

    article { padding: 48px 18px 64px; }
    article h1 { font-size: 1.6rem; }
}
