@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    cursor: crosshair;
}

a, button, .btn-radar, .btn-filtre, input[type="submit"], input[type="file"], .doc-link, .team-link {
    cursor: pointer;
}

::selection {
    background: #f5d142;
    color: #000;
}

::-moz-selection {
    background: #f5d142;
    color: #000;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    min-width: 1200px;
    overflow-x: auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

h2 {
    color: #f5d142;
    font-size: 1.8rem;
    text-transform: uppercase;
}

p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.ligne-jaune {
    border: none;
    height: 3px;
    background: #f5d142;
    width: 80px;
    margin: 0 0 30px 0;
}

.text-center { text-align: center; }
.marge-haut-50 { margin-top: 50px; }
.marge-bas-60 { margin-bottom: 60px; }
.marge-bas-100 { margin-bottom: 100px; }
.marge-nulle { margin: 0 !important; }

.ligne-jaune-courte { margin: 0 auto 10px auto; }
.ligne-jaune-centre { margin: 0 auto 30px auto; }

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f5d142;
}

header {
    background-color: #000;
    border-bottom: 3px solid #f5d142;
    position: relative;
    z-index: 1000;
    width: 100%;
    height: 70px;
}

nav {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul, .coin-droit {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 50px;
    justify-content: center;
}

.coin-droit {
    gap: 30px;
}

nav a, .coin-droit a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav a:hover, .coin-droit a:hover {
    color: #f5d142;
}

.btn-radar {
    background: transparent !important;
    border: 1px solid #333;
    color: #ccc;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 8px 15px;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-radar:hover {
    border-color: #f5d142;
    color: #fff;
    background: rgba(245, 209, 66, 0.1) !important;
}

.banniere {
    height: 92vh;
    background-color: black;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 3px solid #f5d142;
}

.video-fond {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.5;
}

.contenu-banniere {
    position: relative;
    z-index: 1;
}

.contenu-banniere h1 {
    font-size: 5rem;
    margin: 0;
    color: #f5d142;
    letter-spacing: 10px;
    text-shadow: 0 0 20px black;
    transition: 0.2s;
}

.contenu-banniere h1:hover {
    text-shadow: -4px 0 red, 4px 0 cyan;
    letter-spacing: 15px;
    cursor: default;
}

.contenu-banniere p, .subtitle {
    font-size: 1.2rem;
    font-style: italic;
    color: #ddd;
    margin-top: 10px;
    text-shadow: 0 0 10px black;
    text-align: center !important;
    width: 100%;
    display: block;
}

.indicateur-scroll {
    position: absolute;
    bottom: 20px;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    color: #f5d142;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    animation: rebond 2s infinite;
}

.lien-sans-deco {
    text-decoration: none;
}

@keyframes rebond {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.conteneur-accueil {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px;
    background-color: #121212;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
    border-left: 1px solid #222;
    border-right: 1px solid #222;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
}

.conteneur-principal {
    width: 100%;
    margin: 0;
    padding: 30px;
    background-color: transparent;
    text-align: center;
}

.conteneur-1080 {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.bloc-compact {
    margin: 0 0 20px 0 !important;
    padding: 20px !important;
}

.bloc-compact h2 {
    font-size: 1.5rem !important;
    margin-bottom: 10px !important;
}

.bloc-compact hr.ligne-jaune {
    margin: 0 auto 15px auto !important;
}

.section-profil {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    padding: 30px;
    background-color: #1a1a1a;
    border-radius: 10px;
    border: 1px solid #333;
}

.section-profil.inverse {
    flex-direction: row-reverse;
}

.texte-profil { flex: 1; }
.image-profil { flex: 0 0 300px; }

.image-profil img {
    width: 100%;
    border-radius: 5px;
    border: 2px solid #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: all 0.5s ease;
    filter: grayscale(100%);
}

.image-profil img:hover {
    border-color: #f5d142;
    filter: grayscale(0%);
}

.titre-role {
    color: #888;
    font-size: 1.1rem;
    margin-top: -15px;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 400;
}

.cycles-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cycle-bloc {
    flex: 1;
    background-color: #252525;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: transform 0.3s;
    min-width: 200px;
}

.cycle-bloc:hover {
    border-color: #f5d142;
    transform: translateY(-5px);
}

.cycle-date {
    color: #f5d142;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 0 10px 0;
    letter-spacing: 3px;
}

.cycle-desc {
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.cycle-arrow {
    font-size: 2rem;
    color: #555;
    font-weight: bold;
}

.citation-centre {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    opacity: 0.8;
}

.citation-doree {
    font-style: italic;
    color: #f5d142;
}

.iframe-spotify {
    border-radius: 12px;
}

.conteneur-boutons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bouton-action {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid #f5d142;
    color: #f5d142;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.bouton-action:hover {
    background-color: #f5d142;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(245, 209, 66, 0.3);
}

.contact-header { text-align: center; }
.contact-header .ligne-jaune { margin: 0 auto 30px auto; width: 100px; }

.formulaire-contact {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    background-color: #1a1a1a;
    padding: 30px;
    border: 1px solid #333;
    border-radius: 8px;
}

.en-tete {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.en-tete .groupe-input { width: 50%; }
.groupe-input { margin-bottom: 20px; }

.groupe-input label, label {
    display: block;
    margin-bottom: 8px;
    color: #f5d142;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.groupe-input label span, label span {
    color: #ff4444;
}

input[type="text"], input[type="email"], textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    background-color: #000;
    border: 1px solid #444;
    color: #fff;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: 0.3s;
}

input:focus, textarea:focus {
    border-color: #f5d142;
    outline: none;
    box-shadow: 0 0 8px rgba(245, 209, 66, 0.3);
}

.submit-box {
    text-align: center;
    margin-top: 10px;
}

.formulaire-contact button[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: transparent;
    border: 2px solid #f5d142;
    color: #f5d142;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.formulaire-contact button[type="submit"]:hover {
    background-color: #f5d142;
    color: #000;
    box-shadow: 0 0 15px #f5d142;
}

.note-obligatoire {
    font-size: 0.8rem;
    color: #666;
    margin-top: 20px;
    text-align: center;
    font-style: italic;
}

.radio-container {
    border: 1px solid #333;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    background-color: #1a1a1a;
}

.radio-label-titre {
    margin-bottom: 10px;
    display: block;
    color: #f5d142;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.radio-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.radio-item input[type="radio"] {
    margin: 0;
    cursor: pointer;
    accent-color: #f5d142;
}

.radio-item label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
    color: #fff;
    text-transform: none;
}

.radio-item:hover label {
    color: #f5d142;
}

.zone-upload {
    background: #1a1a1a;
    padding: 20px;
    border: 1px solid #333;
    margin-bottom: 30px;
    text-align: center;
}

.zone-upload h3 {
    color: #f5d142;
    margin-top: 0;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.zone-upload input[type="file"] {
    color: #888;
    background: #000;
    padding: 8px;
    border: 1px solid #444;
    margin-right: 10px;
    cursor: pointer;
}

.galerie-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.carte-image {
    width: 230px;
    background: #1a1a1a;
    padding: 10px;
    border: 1px solid #333;
    transition: 0.3s;
}

.carte-image:hover {
    border-color: #f5d142;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.carte-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #333;
    margin-bottom: 10px;
    display: block;
    transition: all 0.5s ease;
}

.carte-image:hover img {
    filter: grayscale(100%);
}

.carte-image span {
    display: block;
    font-size: 0.75rem;
    color: #666;
    word-break: break-all;
    text-transform: lowercase;
}

.form-suppression {
    margin-top: 10px;
}

.btn-suppression {
    background-color: #c0392b;
    color: white;
    border: 1px solid #e74c3c;
    padding: 5px 10px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.btn-suppression:hover {
    background-color: #e74c3c;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
    transform: scale(1.05);
}

.texte-source {
    font-size: 0.85rem;
    margin-bottom: 20px;
    font-style: italic;
    color: #ccc;
}

.grille-credits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.item-credit {
    width: 150px;
    background: #1a1a1a;
    padding: 5px;
    border: 1px solid #333;
    text-align: center;
    transition: 0.3s;
}

.item-credit:hover {
    border-color: #f5d142;
    transform: translateY(-3px);
}

.item-credit img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    filter: grayscale(100%);
    margin-bottom: 5px;
    transition: 0.3s;
}

.item-credit:hover img {
    filter: grayscale(0%);
}

.item-credit span {
    display: block;
    color: #888;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: bold;
}

.compteur-archives {
    border: 1px dashed #444;
    padding: 10px;
    background: #1a1a1a;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.titre-archives { text-align: left; }
.titre-archives h2 { margin: 0; font-size: 20px; color: #fff; }
.icone-archives { font-size: 30px; }

.zone-filtres { margin-bottom: 20px; text-align: center; }
.label-filtre { margin-right: 10px; color: #888; font-size: 12px; font-weight: bold; }

.btn-filtre {
    background-color: transparent;
    border: 1px solid #555;
    color: #ccc;
    padding: 8px 15px;
    margin: 5px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-filtre:hover {
    border-color: #f5d142;
    color: #000;
    background-color: #f5d142;
    box-shadow: 0 0 10px rgba(245, 209, 66, 0.5);
}

.erreur-fichier { color: red; font-weight: bold; }
.table-full-width { width: 100% !important; }

table.dataTable {
    width: 100%;
    border-collapse: collapse;
    background-color: #252525;
    margin-top: 20px;
}

table.dataTable thead th {
    background-color: #000;
    color: #f5d142;
    padding: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #f5d142;
    text-align: center !important;
}

table.dataTable tbody td {
    padding: 12px;
    border-bottom: 1px solid #333;
    color: #ddd;
    text-align: center !important;
}

table.dataTable tbody tr:hover {
    background-color: #333 !important;
}

table.dataTable tbody td:nth-child(1) { font-weight: bold; color: #666; }
table.dataTable tbody td:nth-child(2) { font-weight: 700; color: #fff; }
table.dataTable tbody td:nth-child(6) { color: #f5d142; font-weight: 600; }
table.dataTable tbody td:nth-child(8) { text-align: left !important; font-size: 0.9rem; }

.table-compacte th, .table-compacte td { padding: 8px !important; }

.dataTables_wrapper { color: #bbb; padding-bottom: 20px; }

.dataTables_wrapper input, .dataTables_wrapper select {
    background-color: #121212;
    border: 1px solid #444;
    color: #fff;
    padding: 5px;
    border-radius: 4px;
    text-align: center;
}

.dataTables_wrapper .paginate_button.current {
    background: #f5d142 !important;
    color: #000 !important;
    border: none;
    border-radius: 4px;
    font-weight: bold;
}

.dataTables_wrapper .paginate_button { color: #fff !important; }

.signature-mystere {
    font-style: italic;
    color: #f5d142;
    font-size: 0.9rem;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1080px;
    margin: 40px auto;
    padding: 0 20px;
}

.team-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: #f5d142;
    box-shadow: 0 10px 30px rgba(245, 209, 66, 0.15);
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #000;
    border-bottom: 1px solid #333;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.team-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay { opacity: 1; }

.team-overlay .team-role {
    color: #f5d142;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.team-name {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.team-role-subtitle {
    color: #f5d142;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.team-description {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 25px 0;
    text-align: justify;
    flex: 1;
}

/* Bouton Link */
.team-link {
    display: inline-block;
    color: #f5d142;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border: 1px solid #f5d142;
    border-radius: 4px;
    align-self: flex-start;
    background: transparent;
}

.team-link:hover {
    background-color: #f5d142;
    color: #000;
    transform: translateX(5px);
}

.message-flash {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.msg-succes { background-color: #2ecc71; border-left: 5px solid #27ae60; }
.msg-erreur { background-color: #e74c3c; border-left: 5px solid #c0392b; }
.msg-info { background-color: #e67e22; border-left: 5px solid #d35400; }

.body-succes {
    background: #121212;
    color: #fff;
    font-family: 'Courier New', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.box-succes {
    background: #1e1e1e;
    padding: 40px;
    border: 2px solid #f5d142;
    text-align: center;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0 0 30px rgba(0,0,0,0.7);
}

.titre-succes {
    color: #f5d142;
    margin-bottom: 20px;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.msg-confirmation {
    color: #2ecc71;
    font-weight: bold;
    margin: 20px 0;
    font-size: 1.2rem;
}

.lien-retour {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #f5d142;
    transition: 0.3s;
    margin-top: 20px;
    display: inline-block;
}

.lien-retour:hover { color: #f5d142; }

.box-erreur {
    background: #000;
    color: #e74c3c;
    padding: 30px;
    text-align: center;
    border: 1px solid #e74c3c;
    margin: 50px auto;
    max-width: 500px;
    font-family: 'Inter', sans-serif;
}

#ecran-chargement {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.contenu-chargement {
    text-align: center;
    color: #f5d142;
    font-family: 'Courier New', monospace;
    transition: opacity 0.5s ease-out;
}

.icone-radioactive {
    font-size: 8rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: rotation 3s linear infinite;
    text-shadow: 0 0 20px #f5d142;
}

.contenu-chargement p {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 3px;
    margin: 0;
    animation: pulsation 1.5s infinite;
}

.sous-texte {
    font-size: 0.9rem !important;
    opacity: 0.7;
    margin-top: 10px !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.cache {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.cache .contenu-chargement { opacity: 0; }

@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulsation {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.pied-de-page-style {
    background-color: #050505;
    border-top: 2px solid #f5d142;
    color: #cccccc;
    padding: 30px 0 10px 0;
    margin-top: 0 !important;
    font-family: sans-serif;
}

.conteneur-global {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
}

.partie-gauche { max-width: 45%; }

.partie-gauche h3 {
    color: #f5d142;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partie-gauche .sous-titre {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.partie-gauche .citation {
    font-style: italic;
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.4;
}

.partie-droite { text-align: right; }

.partie-droite h3 {
    font-size: 13px;
    color: #888;
    margin-top: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.liste-liens {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.liste-liens li { margin-bottom: 6px; }

.liste-liens a {
    text-decoration: none !important;
    color: #ffffff !important;
    font-size: 14px;
    transition: 0.3s;
}

.liste-liens a:hover {
    color: #f5d142 !important;
    padding-right: 5px;
}

.bas-de-page {
    width: 100%;
    display: block !important;
    text-align: center !important;
    margin-top: 30px;
    padding-bottom: 10px;
    color: #444;
    font-size: 11px;
}

.bas-de-page p { margin: 0; text-align: center !important; }

.texte-jaune {
    color: #f5d142;
    font-weight: bold;
}

.lien-discret {
    color: #888 !important;
    transition: 0.3s;
}

.lien-discret:hover { color: #f5d142 !important; }

.conteneur-traduction {
    margin-top: 10px;
    display: inline-block;
}

.doc-section {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px;
    margin: 60px auto;
    max-width: 1080px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.doc-item {
    background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 30px 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.doc-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #f5d142;
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.doc-item:hover::before { transform: scaleY(1); }

.doc-item:hover {
    border-color: #f5d142;
    box-shadow: 0 8px 24px rgba(245, 209, 66, 0.15);
    transform: translateY(-5px);
}

.doc-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 0 10px rgba(245, 209, 66, 0.3);
}

.doc-title {
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: block;
}

.doc-description {
    color: #ccc;
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 25px;
    display: block;
    flex: 1;
    text-align: justify;
}

.doc-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f5d142;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border: 1px solid #f5d142;
    border-radius: 6px;
    margin-top: auto;
    background: transparent;
}

.doc-link:hover {
    background-color: #f5d142;
    color: #000000;
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(245, 209, 66, 0.4);
}

.doc-link::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.doc-link:hover::after {
    margin-left: 12px;
}