body {
    min-height: 100vh;
    background: #000;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}



header {
    background: #9c3b33;
}

nav {
    background: #e23636;
    display: flex;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    padding: 15px 20px;
}

nav a {
    margin-right: 20px;
    color: white;
    text-decoration: none;
}

nav ul li a:hover {
    background-color: white;
    color: black;
    padding: 8px 12px;
    border-radius: 4px;
}


main {

    color: white;
    padding: 40px;
    max-width: 1080px;
    margin: 0 auto;
}

p {
    text-align: center;
    color: #ffffff;
}

h1 {
    text-align: center;
}

footer {
    background: #e23636;
    color: white;
    text-align: center;
    padding: 15px;
}


.stanlee-card {
    max-width: 1000px;
    margin: 0 auto 80px;
    display: flex;
    gap: 40px;
    align-items: center;
    background: #111;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 0 25px rgba(226, 54, 54, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stanlee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px #e23636;
}

.stanlee-img img {
    width: 280px;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.stanlee-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #e23636;
    letter-spacing: 2px;
}

.stanlee-text p {
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
}

.marvel-card {
    max-width: 1000px;
    margin: 0 auto 80px;
    display: flex;
    gap: 40px;
    align-items: center;
    background: #111;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 0 25px rgba(226, 54, 54, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.marvel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px #e23636;
}

.marvel-img img {
    width: 320px;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.marvel-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #e23636;
    letter-spacing: 2px;
}

.marvel-text p {
    text-align: left;
    line-height: 1.6;
    color: #ddd;
}



table.dataTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #0d0d0d;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(226, 54, 54, 0.45);
    font-family: Arial, sans-serif;
}


table.dataTable thead {
    background: linear-gradient(90deg, #e23636, #9c3b33);
}

table.dataTable thead th {
    color: #fff;
    padding: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    border: none;
    text-align: center;
}


table.dataTable tbody tr {
    background: #111;
    transition: background 0.3s ease, transform 0.2s ease;
}

table.dataTable tbody tr:nth-child(even) {
    background: #151515;
}

table.dataTable tbody tr:hover {
    background: #1f1f1f;
    transform: scale(1.01);
}

table.dataTable tbody td {
    padding: 12px;
    color: #ddd;
    border-bottom: 1px solid #222;
    font-size: 14px;
    text-align: center;
}


.dataTables_filter {
    margin-bottom: 20px;
}

.dataTables_filter label {
    color: white;
    font-weight: bold;
}

.dataTables_filter input {
    background: #111;
    border: 2px solid #e23636;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    outline: none;
}


.dataTables_length label {
    color: white;
    font-weight: bold;
}

.dataTables_length select {
    background: #111;
    color: white;
    border: 2px solid #e23636;
    border-radius: 6px;
    padding: 5px 8px;
}


.dataTables_wrapper .dataTables_paginate {
    margin-top: 20px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    background: #111 !important;
    color: white !important;
    border: 1px solid #e23636 !important;
    border-radius: 6px;
    padding: 6px 12px;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #e23636 !important;
    color: black !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #e23636 !important;
    color: black !important;
}


.dataTables_info {
    color: #ccc;
    margin-top: 10px;
}


.dt-button {
    background: #e23636 !important;
    color: black !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 8px 14px !important;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.dt-button:hover {
    background: black !important;
    color: #e23636 !important;
    box-shadow: 0 0 15px #e23636;
}


#logo {
    height: 80px;
    width: 200px;
    overflow: hidden;
}

#h2 {
    text-align: center;
}

.film-list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin-top: 20px;
}

.film-list>div {
    background: #1a1a1a;
    border: 2px solid white;
    border-radius: 8px;
    padding: 8px;
    width: 170px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.film-list>div img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
}

.film-list>div h3 {
    margin: 10px 0 5px 0;
    font-size: 15px;
    text-align: center;
}

.film-list>div p {
    font-size: 13px;
    color: #ccc;
    text-align: center;
    margin-top: auto;
}

.film-list>div:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px #e23636;
}

.avengers {
    width: 100%;
    margin-top: 40px;
}

.avengers img {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    border-radius: 8px;
    box-shadow: 0 0 20px #e23636;
    display: flex;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.title-accueil {
    font-size: 4rem;
    letter-spacing: 6px;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInScale 1.2s ease-out forwards;
    text-shadow: 0 0 20px #e23636;
}



#message,
#bouton,
#nom,
#en-tete {
    margin-top: 1.rem;
}

main form {
    display: block;
    width: 350px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px #e23636;
}

main form label {
    display: block;
    margin-bottom: 5px;
    color: white;
    font-weight: bold;
}

main form label span {
    color: #e23636;
}

main form input,
main form textarea {
    width: 95%;
    margin-bottom: 15px;
    padding: 8px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
}

main form textarea {
    height: 100px;
    resize: none;
}

main form input[type="submit"] {
    background-color: #f0f0f0;
    color: black;
    font-weight: bold;
    cursor: pointer;
}

main form input[type="submit"]:hover {
    background-color: #e23636;
    color: white;
}

.contactspiderman {
    width: 100%;
    min-height: 100vh;
    background-image: url("../images/endgame.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

.contact-objet {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input {
    display: none;
}

.radio-card span {
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
    background: #111;
    border: 2px solid #333;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 0 0 #e23636;
}

.radio-card:hover span {
    border-color: #e23636;
    box-shadow: 0 0 12px rgba(226, 54, 54, 0.6);
}

.radio-card input:checked+span {
    background: linear-gradient(90deg, #e23636, #9c3b33);
    border-color: #e23636;
    color: black;
    box-shadow: 0 0 18px rgba(226, 54, 54, 0.9);
}






.page-contact main {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    margin: 0 auto;
    padding: 60px 20px;
}




.galerie-grid {
    max-width: 1080px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.galerie-grid img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #e23636;
    box-shadow: 0 0 12px rgba(226, 54, 54, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
       filter: opacity(50%);
}

.galerie-grid img:hover {
    transform: scale(1.07);
    box-shadow: 0 0 25px #e23636;
     filter: opacity(100%);
    
}



.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    width: 90%;
    max-width: 1200px;
    /* 👈 PLUS GRAND */
    background: #000;
    padding: 20px;
    border-radius: 10px;

    border: 2px solid red;
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.9);
}


.modal-flex {
    display: flex;
    gap: 20px;
}

.modal-flex img {
    width: 30%;
    max-width: 300px;
    border-radius: 6px;
}

.modal-flex iframe {
    width: 70%;
    height: 450px;
   
    border: none;
    border-radius: 6px;
}




.close-video {
    color: white;
    font-size: 30px;
    cursor: pointer;
    float: right;
}


@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,600);


.snip1336 {
    font-family: 'Roboto', Arial, sans-serif;
    position: relative;
    overflow: hidden;
    margin: 10px;
    min-width: 230px;
    max-width: 315px;
    width: 100%;
    color: #ffffff;
    text-align: left;
    line-height: 1.4em;
    background-color: #141414;
}


.snip1336 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}


.snip1336 img {
    max-width: 100%;
    vertical-align: top;
    opacity: 0.85;
}


.snip1336 figcaption {
    width: 100%;
    background-color: #141414;
    padding: 25px;
    position: relative;
}


.snip1336 figcaption:before {
    position: absolute;
    content: '';
    bottom: 100%;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 55px 0 0 400px;
    border-color: transparent transparent transparent #141414;
}


.snip1336 figcaption a {
    padding: 5px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 0.7em;
    text-transform: uppercase;
    margin: 10px 0;
    display: inline-block;
    opacity: 0.65;
    width: 47%;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
}


.snip1336 figcaption a:hover {
    opacity: 1;
}


.snip1336 .profile {
    border-radius: 50%;
    position: absolute;
    bottom: 100%;
    left: 25px;
    z-index: 1;
    max-width: 90px;
    opacity: 1;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}


.snip1336 .follow {
    margin-right: 4%;
    border-color: #2980b9;
    color: #2980b9;
}


.snip1336 h2 {
    margin: 0 0 5px;
    font-weight: 300;
}


.snip1336 h2 span {
    display: block;
    font-size: 0.5em;
    color: #2980b9;
}


.snip1336 p {
    margin: 0 0 10px;
    font-size: 0.8em;
    letter-spacing: 1px;
    opacity: 0.8;
}


.partenaires {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1080px;
    margin: 40px auto;
    padding: 0 20px;
    justify-items: center;
}


.snip1336 {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: cardAppear 0.6s ease forwards;
    position: relative;
    overflow: hidden;
}



.snip1336:nth-child(1) {
    animation-delay: 0.1s;
}


.snip1336:nth-child(2) {
    animation-delay: 0.2s;
}


.snip1336:nth-child(3) {
    animation-delay: 0.3s;
}


.snip1336:nth-child(4) {
    animation-delay: 0.4s;
}


@keyframes cardAppear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


.snip1336:hover {
    transform: translateY(-15px);
}


.snip1336:hover img {
    transform: scale(1.1);
    opacity: 1;
}


.snip1336:hover .profile {
    transform: scale(1.15);
}


.snip1336:hover figcaption a {
    transform: translateY(3px);
    opacity: 1;
}


.snip1336 figcaption a {
    transition: all 0.3s ease;
    text-align: center;
}


.btn {
    display: flex;
    justify-content: center;
}


.snip1336 img {
    transition: all 0.4s ease;
}


.snip1336 .profile {
    transition: all 0.4s ease;
}



.titre_partenaires {
    font-family: "Permanent Marker", cursive;
    text-align: center;
    font-size: 45px;
    letter-spacing: 4px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
}




.titre_partenaires::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}




.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 8rem;
    letter-spacing: 10px;
    text-shadow: 0 0 25px #e23636;
    margin-bottom: 30px;
}

.hero-content button {
    padding: 15px 50px;
    font-size: 1.2rem;
    text-transform: uppercase;
    border: none;
    background: #e23636;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-content button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #e23636;
}

/* =====================================================
   SECTION BOUTONS PDF
   ===================================================== */
.pdf-section {
    margin-top: 50px;
    padding: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 108px;
}


.animated-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 36px;
    border: 4px solid;
    border-color: transparent;
    background-color: black;
    font-size: 16px;
    border-radius: 100px;
    font-weight: 600;
    color: white;
    box-shadow: 0 0 0 2px #ffffff;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}


.animated-button svg {
    position: absolute;
    width: 24px;
    fill: rgb(255, 255, 255);
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}


.animated-button .arr-1 {
    right: 16px;
}


.animated-button .arr-2 {
    left: -25%;
}


.animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}


.animated-button .text {
    font-family: 'Roboto', Arial, sans-serif;
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}


.animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #212121;
    border-radius: 12px;
}


.animated-button:hover .arr-1 {
    right: -25%;
}


.animated-button:hover .arr-2 {
    left: 16px;
}


.animated-button:hover .text {
    transform: translateX(12px);
}


.animated-button:hover svg {
    fill: #1f387e;
}


.animated-button:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px #1f387e;
}


.animated-button:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
}


.docs {
    text-decoration: none;
    color: white;
}

section.card3 {
    position: relative;
    margin: 0 auto;
    margin-top: 20px;
    width: 500px;
    font-family: "Roboto", sans-serif;
    height: 200px;
    background-image: url(../images/partner_back.jpg);
    background-repeat: no-repeat;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card3 svg {
    fill: #333;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 3px;
}

.card3:hover {
    transform: scale(1.05);
    color: #ffffff;
}


.card__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #000000;
    transform: rotateX(-90deg);
    transform-origin: bottom;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.card3:hover .card__content {
    transform: rotateX(0deg);
}


.card__title {
    margin: 0 auto;
    text-align: center;
    text-decoration: underline;
    padding-left: 5px;
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
}


.card3:hover svg {
    scale: 0;
}


.card__description {
    margin: 10px 0 0;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.4;
}


main form {
    background: linear-gradient(145deg, #0b0b0b, #111);
    border: 2px solid #e23636;
    box-shadow:
        0 0 20px rgba(226, 54, 54, 0.6),
        inset 0 0 15px rgba(226, 54, 54, 0.3);
}


main form input[type="file"] {
    display: none;
}


main form label[for="image"] {
    display: block;
    margin: 20px auto;
    padding: 14px 30px;
    width: fit-content;

    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;

    color: white;
    background: linear-gradient(90deg, #9c3b33, #e23636);
    border-radius: 50px;
    cursor: pointer;

    box-shadow:
        0 0 12px rgba(226, 54, 54, 0.7),
        0 0 30px rgba(226, 54, 54, 0.9);

    transition: all 0.3s ease;
}


main form label[for="image"]:hover {
    transform: scale(1.1);
    box-shadow:
        0 0 20px rgba(226, 54, 54, 1),
        0 0 50px rgba(226, 54, 54, 1);
}


main form input[type="submit"] {
    display: block;
    margin: 25px auto 0;
    padding: 14px 40px;

    background: black;
    color: #e23636;
    border: 2px solid #e23636;
    border-radius: 50px;

    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;

    cursor: pointer;
    box-shadow: 0 0 18px rgba(226, 54, 54, 0.7);
    transition: all 0.3s ease;
}

main form input[type="submit"]:hover {
    background: #e23636;
    color: black;
    transform: scale(1.1);
    box-shadow:
        0 0 25px rgba(226, 54, 54, 1),
        0 0 60px rgba(226, 54, 54, 0.9);
}


main form label[for="image"] {
    position: relative;
    overflow: hidden;
}


main form label[for="image"]::after {
    content: "🕸️";
    position: absolute;
    font-size: 40px;
    top: -20px;
    right: -20px;
    opacity: 0;
    transform: rotate(-20deg) scale(0.5);
    transition: all 0.3s ease;
}


main form label[for="image"]:hover::after {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}


main form label[for="image"]:hover {
    animation: spidey-shake 0.15s infinite alternate;
}

@keyframes spidey-shake {
    0% {
        transform: translateX(0) scale(1.1);
    }

    50% {
        transform: translateX(-2px) scale(1.1);
    }

    100% {
        transform: translateX(2px) scale(1.1);
    }
}


.affiches-auteurs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.affiche-card {
    position: relative;
    width: 150px;
    height: 225px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(226, 54, 54, 0.6);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.affiche-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.affiche-card:hover img {
    transform: scale(1.1);
}

.affiche-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #e23636;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 8px;
    padding: 10px;
}

.affiche-card:hover .overlay {
    opacity: 1;
}