﻿:root {
    --light-blue: #233365;
    --bordeaux: #D5B762; /*Or/beige*/
    --green: #05656D;
    --dark-blue: #0B2A8E;
    --gradient-blue: #F4D758;
    --gradient-green: linear-gradient(180deg, rgba(98,154,93,1) 0%, rgba(33,86,28,1) 100%);
    --firstColor: #004f9f;
}

*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


header {
    background-image: url(Images/header_sans_dates_sans_halo.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 90px;
    min-height: 80px;
    top: 0px;
    position: absolute;
    z-index: 30;
    right: 0;
    left: 0;
    z-index:-5;
}


    header.little {
        background-image: url(Images/header_sans_dates_sans_halo.png);
        min-height: 110px;
    }

html {
    /*overflow: hidden; /* Désactive le défilement pour tout le document */
    height: 100%;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

body {
    font-family: ProximaBold;
    height: 100vh;
    /*background-image: url(Images/blur_background.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: inherit;*/
    background: #105597;
    display: flex;
    flex-direction: column;
    color: var(--firstColor);
    /*overflow: hidden;*/
}

footer {
    position: fixed;
    bottom: 0px;
    right: 0;
    left: 0;
    z-index: 10;
    /*background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);*/
}

.textShadow {
    text-shadow: 0px 2px 0px rgb(130, 174, 255);
}


.modal {
    display: none;
    position: fixed;
    z-index: 999;
    /*padding-top: 250px;*/
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.7);
    animation: backdrop .5s ease normal;
    align-content: center;
}

 .modal:not([style*="display: none"]) ~ .bottom-image-right {
    visibility: hidden !important;
 }

.modal-content {
    margin: auto;
    position: relative;
    background-color: #fefefe;
    overflow-y: auto;
    padding: 20px 10px;
    border-radius: 20px;
    width: 90%;
    color:#000000;
    max-width: 1000px;
    max-height: calc(100vh - 100px);
    animation: scale .5s ease normal;
    overflow:visible;
}

.modal-content2 {
    margin: auto;
    position: relative;
    background-color: #fefefe;
    overflow-y: auto;
    padding: 20px 10px;
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: calc(100vh - 100px);
    animation: scale .5s ease normal;
    align-content: center;
    align-items: center;
    text-align: center;
    color: #000000;
    overflow: visible;
}



/* Image qui dépasse en haut */

.realHowToPlay {
    cursor: pointer;
    width: 100%;
    color: #004f9f;
    text-align: center;
    font-family: ProximaRegular;
    font-size: 0.95rem;
    position: fixed;
    bottom: 7%;
    left: 0;
    text-decoration: underline;
    z-index: 20;
}

/* Pour gérer le contenu à l'intérieur */
.content {
    padding: 10px;
    overflow: scroll;
    height: 100%;
    /*margin-top: 40px;*/ /* Espace pour l'image du haut */
}


.centered {
    height: 10em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-3d {
    background: #004f9f; /* Couleur de base (bleu) */
    border: none;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 20px;
    color: #fcd627;
    outline: 0 !important;
    cursor: pointer;
    margin: 10px;
    box-shadow: 0px 10px 0px #0a3071;
    transition: 0.2s;
    /* Centrage du texte */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    font-family: ProximaBold;
}

    .button-3d:hover {
    }

    .button-3d:active {
        transform: translateY(10px);
        box-shadow: none;
    }
    .button-3d input[type = checkbox] {
        display: none;
    }

.modalTitle {
    font-size: 1.3rem;
    margin-left: 2rem;
    margin-right: 2rem;
    margin-bottom: 1rem;
    color: #1b457b;
    text-align: center;
}

.modalText {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 20px;
    color: #1b457b;
    text-align: center;
}

.close {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #aaaaaa;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.btnModal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}

.modal .btnPink, .modal .btnBorderPink {
    min-width: 60%;
    padding: 10px 15px;
    margin-top: 10px;
}


/* END Modal */
/* Spinner */
.spinner {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

    .spinner div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 64px;
        height: 64px;
        margin: 8px;
        border: 8px solid var(--light-blue);
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: var(--light-blue) transparent transparent transparent;
    }

        .spinner div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .spinner div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .spinner div:nth-child(3) {
            animation-delay: -0.15s;
        }

form {
    flex: 1 0 auto;
}

h1 {
    font-family: ProximaBold;
}

h2 {
    font-family: ProximaRegular;
    font-weight: 500;
}

p {
    font-family: ProximaRegular;
}

.text-main-color {
    color: var(--light-blue);
}

.text-secondary-color {
    color: var(--light-blue);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: auto;
    overflow: hidden; /* Permet de cacher le contenu qui dépasse */
    width: 100%;
    z-index: 5;
    position: absolute;
    overflow:scroll;
}

.divError {
    display: none;
    background: red;
    color: white;
    font-family: ProximaBold;
    font-size: 0.9em;
    margin-top: 15px;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
}

@keyframes lds-ring {
    0% {
         transform: rotate(0deg);
    }
    100% {
         transform: rotate(360deg);
    }
}

.center {
    text-align: center;
}


.triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 25px 0 25px;
    border-color: #fff transparent transparent transparent;
    margin: 15px auto;
}

.fleche-svg {
    margin: 15px auto;
}

.btnCenter {
    display: block;
    margin: auto;
}

.btnMain, .btnSecondary {
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    text-align: center;
    -webkit-appearance: none; /*For Chrome*/
    -moz-appearance: none; /*For Mozilla*/
    appearance: none;
    user-select: none;
    width:90%;
}

.btnMain {
    /*max-width: 250px;*/
    background: linear-gradient(180deg, rgba(203,220,255,1) 0%, rgba(54,72,107,1) 1%, rgba(31,39,55,1) 6%, rgba(0,0,0,1) 100%);
    color: #ffffff;
}
.btn-popup {
    width: 100%;
    bottom: -25px;
    position: absolute;
    align-content: center;
    align-items: center;
    justify-content: center;
    display: flex;
    left: 0;
}
.btnPopup {
    background: linear-gradient(180deg, rgba(255,255,0,1) 0%, rgba(255,213,0,1) 100%);
    color: #000000;
    box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.5), inset 0 0 10px 5px rgba(255, 255, 255, 0.5);
    border-radius: 20px 20px;
    padding: 15px;
    cursor: pointer;
    text-align: center;
    -webkit-appearance: none; /*For Chrome*/
    -moz-appearance: none; /*For Mozilla*/
    appearance: none;
    user-select: none;
    width: 60%;
    border: 3px solid #ffffff;
    font-weight: 600;
}

.pModal {
    text-align: center;
    margin-bottom:20px;
}

.btnMain.fitSize {
    width: fit-content;
    margin: auto;
}

    .btnMain p {
        color: #ffffff;
    }

        .btnMain p a {
            text-decoration: none;
            color: #ffffff;
        }



.btnSecondary {
    background: #b6b7b6;
    color: #fff;
    /*border: 2px solid #a8a8a8;*/
}

.btn-optin {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 25px;
    width: 100%;
}

.champs-obligatoire {
    font-size: 0.7em;
    text-align: left;
    width: 78%;
    color: var(--dark-blue); /*var(--light-blue)*/
    max-width: 800px;
    margin: auto;
}

.champs-obligatoire2 {
    font-size: 0.7em;
    text-align: right;
    width: 97%;
    color: #000000;
    max-width: 800px;
}

.textbox {
    margin-bottom: 5px;
    border-radius: 25px;
    border: 1px solid #1b4582;
    padding: 10px 15px;
    font-size: 15px;
    font-family: ProximaRegular;
    color: #1b4582;
}

.textbox-disabled {
    background: #AAAAAA;
}


/* Modal */



.close {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #aaaaaa;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.btnModal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}

.modal .btnMain, .modal .btnSecondary {
    min-width: 60%;
    padding: 10px 15px;
    margin-top: 10px;
}

.glass-effect {
    background-color: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(5.5px);
    -webkit-backdrop-filter: blur(5.5px);
}

.shadow-inset {
    -webkit-box-shadow: inset 1px 4px 15px 5px #000000;
    box-shadow: inset 0px 3px 6px 2px rgba(0, 0, 0, 0.42);
}
/* END Modal */



/* Home page */

   


.btnHowToPlay {
    width: 200px;
    margin-top: 10px;
    background: none;
    text-decoration: underline;
    color: #000000;
    justify-content: center;
    align-content: center;
    text-align: center;
    padding: 10px 10px;
    font-size: 1.1rem;
    font-family: ProximaRegular;
}



.how-it-works {
    background: linear-gradient(90deg, rgba(200,49,129,1) 0%, rgba(255,78,46,1) 47%, rgba(243,147,57,1) 100%);
    color: #fff;
    text-align: center;
    width: 40%;
    margin: auto;
    padding: 5px 5px;
    border-radius: 3px;
    font-size: 0.85em;
    margin-bottom: 10px;
}

.title-card {
    position: relative;
    color: var(--light-blue);
    text-transform: uppercase;
    width: 90%;
    max-width: 500px;
    padding: 10px 30px 10px 10px;
    text-align: center;
}

    .title-card p {
        font-family: Proximabold;
        color: #ffffff;
    }

    .title-card img {
        position: absolute;
        width: 57px;
        right: 0;
        top: 50%;
        transform: translate(23px, -53%);
    }

.title-infos {
    background: #03113c;
}

.p-infos {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8em;
    color: #000;
}

    .p-infos span {
        font-family: ProximaExtrabold;
        text-transform: uppercase;
        font-size: 1.2em;
    }

.p-infos3 {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8em;
    color: var(--light-blue);
}


/* END Home page */

/* Verification page */

/* END Verification page */

/* Optin page */

.optin-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
    color: var(--light-blue);
    flex:1;
}



.optin-container h1 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--light-blue);
    font-family: ProximaExtrabold
}

.optin-container .textbox, .optin-container .champs-obligatoire {
    max-width: 600px;
}

.optin-container .text-optin {
    width: 100%;
    max-width: 800px;
    margin: 15px auto 0;
    color: var(--light-blue);
    font-size: 0.9em;
}

.optin-container .btnMain, .optin-container .btnSecondary {
    border-radius: 10px;
}

.textbox-optin-container .textbox {
    margin-top: 20px;
    width: 95%;
}

.textbox-optin-container .champs-obligatoire {
    width: 95%;
}

.btn-optin .btnMain, .btn-optin .btnSecondary {
    background: #004f9f;
    border: none;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    font-size: 24px;
    color: #fcd627;
    cursor: pointer;
    margin: 10px;
    box-shadow: 0px 10px 0px #0a3071;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    position: relative;
}

.btn-optin .btnSecondary {
    background: #afafaf;
    border: none;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    margin: 10px;
    box-shadow: 0px 10px 0px #929292;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    position: relative;
}

    .btn-optin .btnMain:active, .btn-optin .btnSecondary:active {
        transform: translateY(10px);
        box-shadow: none;
    }

.titleOptin2 > h1 {
    color: #fff;
    font-size: 20px;
}

.titleOptin2 > p {
    color: #fff;
    font-size: 15px;
}
/* END optin page */

/* Game page */


/* END Game page */

/* Scratching Game page */


/* END Game page*/
/* Win page */


.default-choice, bigdotation-choice {
    margin-top: 5px;
    padding: 15px 0;
    border-radius: 10px;
    width: 100%;
}

    .default-choice > p, .bigdotation-choice > p {
        font-family: ProximaRegular;
    }

.group-choice {
    display: flex;
    flex-direction:row;
    justify-content: center;
    align-items: end;
    width:100%;
    margin-top:10px;
}

.cbChoice {
    display: flex;
    background: linear-gradient(180deg, rgba(203,220,255,1) 0%, rgba(54,72,107,1) 1%, rgba(31,39,55,1) 6%, rgba(0,0,0,1) 100%);
    width: 50%;
    min-width: 100px;
    max-width: 200px;
    /*height: 30px;*/
    border-radius: 10px;
    transition: background 0.3s ease;
    margin: 7px 0px;
    color: #ffffff;
}

    .cbChoice.disabled {
        background: #929292;
        color: #ffffff;
    }

    .cbChoice input[type = checkbox] {
        display: none;
    }

    .cbChoice input + label {
        font-size: 0.91rem;
        width: 100%;
        display: flex;
        justify-content: center;
        border-radius: 10px;
        align-items: center;
        transition: .1s all;
        padding: 11px 10px;
        cursor: pointer;
        z-index: 1 !important;
        webkit-user-select: none; /* Safari */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* IE10+/Edge */
        user-select: none; /* Standard */
        /*border: 2px solid #fff;*/
    }

        .cbChoice input + label p {
            font-family: ProximaBold;
        }




/* END Win page */


/* NoCard */
#NoCardFound {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    /*padding: 0 10px;*/
    text-align: center;
    flex: 1;
    z-index: 5;
}

    #NoCardFound .title-card {
        padding: 10px 31px;
    }

.title-nocard {
    background: #fff;
    /*margin: 10px 0;*/
}

#NoCardFound .title {
    margin: 10px;
    font-size: 20px;
}

#NoCardFound h1 {
    margin: 5px 0px 5px 0px;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-family: ProximaBold;
}
#NoCardFound p {
    font-size: 1rem;
    line-height: 1rem;
}

    #NoCardFound .btnMain > p {
        font-family: ProximaBold;
    }

    
/* END NoCard */
.footer__text {
    text-align: center;
    color: #ffffff;
    font-size: clamp(10px, 2vw, 15px);
    padding: 0 10px;
    flex-shrink: 0;
    /*background-color: #fff;*/
}

    .footer__text a {
        color: #ffffff;
        margin: 3px;
        text-decoration: none;
        cursor: pointer;
    }

#creditModal .content-code {
    padding: 0 20px;
    color: black;
}

.title-infos + .p-infos {
    color: #000;
}

#creditModal h1 {
    text-align: center;
    margin: auto;
    font-size: 60px;
    color: var(--dark-blue);
    font-family: ProximaExtrabold;
}

#creditModal h2 {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 5px;
    color: var(--dark-blue);
    font-family: ProximaBold;
}

#creditModal p {
    font-size: 15px;
}

#creditModal .btnMain {
    width: 50%;
    border-radius: 10px;
    margin: 25px auto 0;
}



@media screen and (min-width: 640px) {
    header {
        height: 100px;
    }

}
/*@media screen and (min-width: 360px) {
    .bottom-image-right {
        position: absolute;
        bottom: 10%;
        left: 62%;
        max-width: 60px;*/ /* Ajustez selon vos besoins */
        /*z-index: 3;
        transform: rotate(10deg);
        width: 16%;
    }
}*/



/* Fonts */

@font-face {
    font-family: "ProximaRegular";
    src: url("../Content/Fonts/Proxima_Nova_Regular.otf") format('opentype');
}

@font-face {
    font-family: "ProximaBold";
    src: url("../Content/Fonts/Proxima_Nova_Bold.otf") format("opentype");
}

@font-face {
    font-family: "ProximaExtrabold";
    src: url("../Content/Fonts/Proxima_Nova_Extrabold.otf") format("opentype");
}

@font-face {
    font-family: "GoboldRegular";
    src: url("../Content/Fonts/Gobold_Regular.otf") format("opentype");
}
@font-face {
    font-family: "GoboldBold";
    src: url("../Content/Fonts/Gobold_Bold.otf") format("opentype");
}
@font-face {
    font-family: "GoboldBoldCondensed";
    font-stretch: extra-condensed;
    src: url("../Content/Fonts/Gobold_High_Bold.otf") format("opentype");
}
@font-face {
    font-family: "GoboldThin";
    src: url("../Content/Fonts/Gobold_Thin.otf") format("opentype");
}
@font-face {
    font-family: "GoboldCondensed";
    font-stretch: extra-condensed;
    src: url("../Content/Fonts/Gobold_High.otf") format("opentype");
}



.laBase {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    align-content: center;
    justify-content:center;
}

.image-Icon {
    width: 80px;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    animation: wiggle 3s ease-in-out infinite;
    z-index: 2;
}
.title {
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 1.4rem;
    text-align: center;
    font-weight: bold;
    font-family: ProximaBold;
    text-shadow: 0px 2px 0px rgb(127, 176, 255);
}

.bordoBox {
    border-radius: 35px 35px 65px 65px;
    background: linear-gradient(14deg,rgba(199, 128, 2, 1) 0%, rgba(255, 235, 145, 1) 35%, rgba(255, 235, 145, 1) 65%, rgba(199, 128, 2, 1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    align-content: center;
    justify-content: center;
    color: #1b4582;
    padding: 10px 0px 0 0px;
    width: 85%;
    position: relative;
    /*margin-bottom: 40%;*/
    max-width: 450px;
    z-index: 10;
}

.whiteBox {
    border-radius: 65px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    align-content: center;
    justify-content: center;
    color: #1b4582;
    padding: 15px 10px 0 10px;
    margin-top: 10px;
    width: 100%;
}

.fondAfter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
    background-image: url('Images/GameIg/fond.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/*au 3b */
.fondBefore {  
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
    background-image: url('Images/fond_optin.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.teddyBear {
    width: 40%;
    position: relative;
    margin-top: 10px;
    margin-bottom: -50%;
}

.canvas-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20; /* Derrière le contenu pour ne pas être cliquable */
    pointer-events: none; /* Empêche les interactions */
}

.zoom-in-transition {
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zoom-in-complete {
    transform: scale(1);
    opacity: 1;
}

/* NOUVEL EFFET LUMINEUX EN X */
.light-container {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 120%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden
}

.light-beam {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.1) 20%, rgba(255, 215, 0, 0.8) 50%, rgba(255, 215, 0, 0.1) 80%, transparent 100%);
    filter: blur(2px);
}

/* Faisceau principal diagonal (/) */
.light-beam-1 {
    width: 200%;
    height: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    animation: pulse-beam-1 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Faisceau principal diagonal (\) */
.light-beam-2 {
    width: 200%;
    height: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    animation: pulse-beam-2 3s ease-in-out infinite 0.5s;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Faisceaux secondaires pour l'effet de rayonnement */
.light-beam-3 {
    width: 150%;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(30deg);
    animation: pulse-beam-3 4s ease-in-out infinite 1s;
    opacity: 0.7;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.light-beam-4 {
    width: 150%;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    animation: pulse-beam-4 4s ease-in-out infinite 1.5s;
    opacity: 0.7;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.light-beam-5 {
    width: 150%;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(60deg);
    animation: pulse-beam-5 3.5s ease-in-out infinite 2s;
    opacity: 0.6;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.light-beam-6 {
    width: 150%;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-60deg);
    animation: pulse-beam-6 3.5s ease-in-out infinite 2.5s;
    opacity: 0.6;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Halo central */
.light-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(255, 215, 0, 0.4) 40%, transparent 70%);
    border-radius: 50%;
    animation: center-glow 2s ease-in-out infinite alternate;
    filter: blur(3px);
}

/* Animations */
@keyframes pulse-beam-1 {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) rotate(45deg) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(45deg) scale(1.1);
    }
}

@keyframes pulse-beam-2 {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) rotate(-45deg) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(-45deg) scale(1.1);
    }
}

@keyframes pulse-beam-3 {
    0%, 100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) rotate(30deg) scale(0.9);
    }

    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) rotate(30deg) scale(1.05);
    }
}

@keyframes pulse-beam-4 {
    0%, 100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) rotate(-30deg) scale(0.9);
    }

    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) rotate(-30deg) scale(1.05);
    }
}

@keyframes pulse-beam-5 {
    0%, 100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) rotate(60deg) scale(0.85);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) rotate(60deg) scale(1);
    }
}

@keyframes pulse-beam-6 {
    0%, 100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) rotate(-60deg) scale(0.85);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) rotate(-60deg) scale(1);
    }
}

@keyframes center-glow {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.6);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.4);
    }
}

@keyframes backdrop {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



.shrink {
    cursor: pointer;
    display: inline-block;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent; /* Supprime le highlight bleu sur iOS/Android */
    -webkit-touch-callout: none; /* Désactive le menu contextuel iOS */
    -webkit-user-select: none; /* Empêche la sélection sur Safari */
    -moz-user-select: none; /* Empêche la sélection sur Firefox */
    -ms-user-select: none; /* Empêche la sélection sur IE/Edge */
    user-select: none; /* Empêche la sélection */
}
    .shrink img {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        pointer-events: none; /* L'image ne capture pas les événements */
        -webkit-user-drag: none; /* Empêche le drag sur Safari */
        -webkit-touch-callout: none;
    }

    .shrink:active {
        animation: shrinkBounce 0.3s ease;
    }

@keyframes shrinkBounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.85);
    }

    100% {
        transform: scale(1);
    }
}