:root {
    --bg-dark: #12140e;
    --bg-card: rgba(35, 43, 25, 0.7);
    --bg-nav: rgba(58, 68, 41, 0.85);
    --gold: #d4af37;
    --gold-hover: #f3e5ab;
    --text-light: #f5f5f5;
    --text-muted: #b0b5a5;
    --accent-red: #8b0000;
}

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1a1f12 0%, #0d0f0a 100%);
    background-attachment: fixed;
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.saga_entière {
    background: var(--bg-nav);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: sticky;
    top: 20px;
    z-index: 10;
    margin: 0 auto;
    width: 60%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.saga_entière:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.15);
}

.lien_nav {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.lien_nav::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.lien_nav:hover {
    color: var(--gold);
}

.lien_nav:hover::after {
    width: 100%;
}

.Titre_Accueil, .contact_titre {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 90px;
    letter-spacing: 8px;
    text-align: center;
    color: var(--gold);
    margin: 60px auto 40px;
    text-shadow: 3px 6px 12px rgba(0, 0, 0, 0.7);
    background: linear-gradient(to bottom, #ffffff 30%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Titre_protagoniste, .auteur_grand_titre {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 45px;
    letter-spacing: 2px;
    text-align: center;
    color: var(--gold);
    margin-top: 50px;
    margin-bottom: 30px;
}

.contenu {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.banniere {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    margin-top: 20px;
}

.image_gladiator_accueil {
    display: block;
    margin: 40px auto;
    border-radius: 15px;
    max-width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.section_personnage {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    background: var(--bg-card);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 5px solid var(--gold);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section_personnage:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
}

.image_personnage {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid var(--gold);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.nom_personnage {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    color: var(--gold);
}

.texte_personnage {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    color: var(--text-muted);
    text-align: justify;
}

.filmss_ {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.filmss_ > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 4px solid var(--gold);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.filmss_ > div:hover {
    transform: translateY(-8px);
}

.film_titre {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    letter-spacing: 1px;
    color: var(--gold);
    margin-top: 0;
    margin-bottom: 15px;
}

.film_annee {
    font-size: 22px;
    color: var(--text-light);
    opacity: 0.6;
}

.film_affiche {
    width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.film_affiche:hover {
    transform: scale(1.03);
}

.film_texte {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    text-align: justify;
    margin-bottom: 15px;
}

.film_casting {
    font-size: 14px;
    color: var(--text-light);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 15px;
    margin-top: auto;
    width: 100%;
}

.citations_section {
    background: linear-gradient(135deg, rgba(58, 68, 41, 0.4) 0%, rgba(20, 25, 15, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.citations_intro {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 2px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 20px;
}

blockquote.citation {
    font-size: 22px;
    font-style: italic;
    font-weight: 500;
    text-align: center;
    margin: 30px auto;
    padding: 0 20px;
    border-left: none;
    color: var(--text-light);
    position: relative;
}

blockquote.citation::before {
    content: "“";
    font-size: 60px;
    color: rgba(212, 175, 55, 0.3);
    position: absolute;
    top: -30px;
    left: 10px;
}

.contenu_histoire {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.histoire_section_titre {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
    color: var(--gold);
    margin: 50px 0 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 8px;
}

.histoire_texte {
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.video_container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 40px;
    background: #000;
}

.video_lenght {
    width: 100%;
    display: block;
}

.nav_side {
    position: fixed;
    top: 120px;
    right: 20px;
    width: 260px;
    background: rgba(20, 25, 15, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    z-index: 5;
}

.nav_side_titre {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--gold);
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 5px;
}

.anecdotes {
    margin: 0;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.anecdotes li {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-muted);
}

.personnages_cles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.personnage_cle_card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.personnage_cle_card:hover {
    transform: translateX(5px);
    background: rgba(58, 68, 41, 0.3);
}

.personnage_cle_nom {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--gold);
    letter-spacing: 1px;
}

.personnage_cle_role {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-top: 5px;
}

.formulaire_simple {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 50px;
    max-width: 600px;
    margin: 40px auto 100px auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.label_simple {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--gold);
    display: block;
    margin: 20px 0 8px 0;
    text-align: left;
}

.input_simple, textarea {
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    font-size: 15px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.input_simple:focus, textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    background-color: rgba(0, 0, 0, 0.5);
}

.label_simple_check {
    color: var(--text-muted);
    display: inline;
    font-size: 14px;
    font-style: italic;
}

.label_simple_check input {
    margin-right: 10px;
}

.bouton_simple {
    background: linear-gradient(135deg, var(--gold) 0%, #aa8416 100%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    color: #000;
    font-weight: bold;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    width: auto;
    display: inline-block;
}

.bouton_simple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold) 100%);
}

.auteur_profil {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    gap: 40px;
}

.auteur_photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.auteur_info_titre {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--gold);
    margin-top: 0;
    margin-bottom: 10px;
}

.auteur_bio {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

.auteur_deux_colonnes {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.auteur_deux_colonnes > div {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.auteur_section_titre {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--gold);
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.auteur_texte {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
    text-align: justify;
}

.auteur_liste {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.auteur_item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 30px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auteur_item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(58, 68, 41, 0.2);
    transform: translateX(5px);
}

.auteur_item_titre {
    font-weight: bold;
    font-size: 18px;
    color: var(--gold);
    margin: 0;
}

.auteur_item_texte {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
}

.footer {
    background: #090a07;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 100px;
    padding: 40px 20px 20px 20px;
}

.footer_contenu {
    max-width: 1000px;
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_texte {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--text-muted);
    margin: 0;
    letter-spacing: 1px;
}

.footer_bouton {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid var(--gold);
    padding: 8px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.footer_bouton:hover {
    background-color: var(--gold);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.footer_bas {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.footer_auteur {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.footer_lien_auteur {
    font-size: 14px;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_lien_auteur:hover {
    color: var(--gold-hover);
    text-decoration: underline;
}

@media screen and (max-width: 1200px) {
    .nav_side {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 30px;
    }
    .saga_entière {
        width: 80%;
    }
}

@media screen and (max-width: 768px) {
    .saga_entière {
        flex-direction: column;
        height: auto;
        gap: 12px;
        padding: 20px;
        width: 90%;
        border-radius: 20px;
    }
    
    .Titre_Accueil, .contact_titre {
        font-size: 55px;
        letter-spacing: 4px;
    }

    .filmss_, .auteur_deux_colonnes, .personnages_cles {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section_personnage {
        flex-direction: column;
        text-align: center;
    }

    .auteur_profil {
        flex-direction: column;
        text-align: center;
    }

    .footer_contenu {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .auteur_item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}