html {
    scroll-behavior: smooth;
}

audio {

    &::-webkit-media-controls-enclosure {
        border-radius: 0;
    }

    &::-webkit-media-controls-panel {
        background: #101728;
        transition: all 0.3s;
    }

    &::-webkit-media-controls-time-remaining-display {
        color: #f5e873;
    }

    &::-webkit-media-controls-current-time-display {
        color: rgb(255, 255, 255);
    }

    &::-webkit-media-controls-play-button,
    &::-webkit-media-controls-mute-button {
        cursor: pointer;
        background-color: #ffffff3c;
        transition: all 0.3s;
    }

    &::-webkit-media-controls-timeline,
    &::-webkit-media-controls-volume-slider {
        background-color: #ffffff3c;
        border-radius: 0px;
    }

    &::-webkit-media-controls-timeline {
        margin-left: 5px;
        margin-right: -11px;
    }

    &::-webkit-media-controls-volume-slider {
        padding-left: 11px;
    }


}

audio:hover {
    &::-webkit-media-controls-panel {
        background: #DFC61E;
    }

    &::-webkit-media-controls-timeline,
    &::-webkit-media-controls-volume-slider {
        background-color: #84848400;
    }

    &::-webkit-media-controls-play-button,
    &::-webkit-media-controls-mute-button {
        background-color: #00000000;
    }

    &::-webkit-media-controls-time-remaining-display {
        color: #000000;
    }

    &::-webkit-media-controls-current-time-display {
        color: rgb(0, 0, 0);
    }
}



::-webkit-scrollbar {
    width: 0.6em;
}

::-webkit-scrollbar-track {
    background: #101728;
    border-radius: 100px;
    margin-block: .5em;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(rgb(201, 168, 49), rgb(255, 217, 82), rgb(255, 248, 221));
    border-radius: 100px;
}

body {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 150vh;
    background-color: #101728;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

header {
    height: 100vh;
    width: 100vw;
}

.background {
    z-index: -1;
    opacity: 0.15;
    padding-top: 5px;
    background-image: url(../../IMAGE/QRlod-backlop.png);
    background-size: cover;
    width: 100%;
    height: 100%;
    color: aliceblue;
    background-position: center;
}

.logo img {
    margin-top: 20px;
    width: 350px;
}

.navbar {
    z-index: 999;
    position: absolute;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    align-items: center;

}

.navbar .nav-links ul {
    display: flex;
}

.navbar .nav-links ul li {
    margin: 0 2px;
    list-style-type: none;
}

.nav-links ul a {
    color: white;
    text-decoration: none;
    display: contents;
}

.nav-item {
    -webkit-text-stroke: 9px rgba(255, 255, 255, 0.221);
    font-family: 'Monomaniac One', sans-serif;
    color: white;
    font-size: 25px;
    padding: 29px;
    flex: 1;
}

.recherche {
    border-radius: 30px;
    z-index: 999;
    position: relative;
    margin: 30px;
    height: auto;
    display: flex;
    align-items: center;
    transition: all .5s ease;
}

.qrlod-game {
    background: url(../../IMAGE/trésor.png) no-repeat;
    z-index: 999;
    position: relative;
    background-position: center;
    background-size: cover;
    border-radius: 30px;
    transition: all .5s ease;
    width: 18%;
    height: auto;
}

.gide {
    background: url(../../IMAGE/sup.png) no-repeat;
    z-index: 999;
    position: relative;
    background-position: center;
    background-size: cover;
    border-radius: 30px;
    transition: all .5s ease;
    width: 18%;
    height: auto;
}

.dicord {
    background: url(../../IMAGE/discord.png) no-repeat;
    z-index: 999;
    position: relative;
    background-position: center;
    background-size: cover;
    border-radius: 30px;
    transition: all .5s ease;
    width: 18%;
    height: auto;
}

.adult {
    background: url(../../IMAGE/Moins18.png) no-repeat;
    z-index: 999;
    position: relative;
    background-position: center;
    background-size: cover;
    border-radius: 30px;
    transition: all .5s ease;
    width: 18%;
    height: auto;
}

.navbar .nav-links ul li:hover {
    transform: translate(0, -8px);
    box-shadow: 10px 10px 40px 5px rgba(255, 238, 155, 0.758);
}

.menu {
    z-index: 999;
    display: none;
    position: absolute;
    width: 40px;
    top: 50px;
    right: 50px;
}


@media screen and (max-width: 900px) {
    .navbar {
        padding: 0;
    }

    .navbar .menu {
        display: block;
    }

    .nav-links {
        z-index: 2;
        top: 0;
        left: 0;
        position: absolute;
        background-color: rgba(0, 0, 0, 0.491);
        backdrop-filter: blur(3px);
        width: 100%;
        height: 130vh;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease;
    }

    #nav-links {
        margin-left: -100%;
    }

    #nav-links.show {
        margin-left: 0;
    }

    .nav-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar .nav-links ul li {
        margin: 2px 0;
        font-size: 35px;
    }

    .gide,
    .adult,
    .dicord,
    .qrlod-game {
        width: 100px;
        max-width: 200px;
        min-height: 60px;
    }
}


.big {
    position: absolute;
    z-index: 3;
    /* background-color: rgba(0, 0, 0, 0.263); */
    color: white;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 220px;
}

.bloc-shap {
    width: 100%;
    position: absolute;
    z-index: 1;
    height: auto;
    display: flex;
    justify-content: center;
    margin-top: 180px;
}

.shap {
    width: 100%;
    height: auto;
    padding: 0;
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 140px;
}





.dropdown {
    width: auto;
    height: 33.28px;
    border-radius: 5px;
    color: white;
    background: #0b685770;
    transition: height 0.4s ease-in-out;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.bloc-top {
    padding: 7px;
    gap: 10px;
    padding-right: 20px;
    padding-left: 20px;
    display: block;
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #00021e82;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
}

.bloc-top:hover {
    background: #9496a482;
}

.bloc-top img {
    width: 20px;
}

.bloc-links {
    padding: 5px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bloc-links ul {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}

.bloc-links li {
    text-decoration: none;
    list-style-type: none;
    padding: 5px 0;
    height: auto;
}

.bloc-links li a {
    font-size: 15px;
    color: white;
}

.bloc-links li:last-child {
    padding-bottom: 25px;
}

.mouv {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 97%;
}

.mouv-plus button {
    margin: 5px;
    border-radius: 4px;
    height: 26px;
    width: 90px;
    border: none;
    background: #101728;
    color: white;
    transition: all 0.3s ease;
    font: small-caps bold 14px/1 sans-serif;
}

.mouv-plus button:hover {
    background: #DFC61E;
    transform: scale(1.06);
}


.remoot {
    margin: 0px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remonte {
    z-index: 4;
    border-radius: 4px;
    height: 35px;
    width: 100%;
    border: none;
    background: #101728;
    transition: all 0.3s ease;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 20px;
}

.remonte img {
    width: 30px;
}

.remonte:hover {
    background: #DFC61E;
    transform: scale(1.06);
}

@media screen and (max-width: 470px) {
    .mouv {
        width: 88%;
    }

    .bloc-shap {
        margin-top: 280px;
    }


}

.chatforum {
    background: linear-gradient(200deg, #DFC61E, #fff197);
    border: 2px solid #f5de46;
    border-radius: 20px;
    height: auto;
    width: auto;
    padding: 17px;
    margin: 20px;
    color: #542108;
    font: small-caps bold 15px/1 sans-serif;
    transition: all 0.3s ease;
}

.chatforum:hover {
    background: linear-gradient(100deg, #DFC61E, #fff197);
    transform: scale(1.04);
}


.serie-button {
    cursor: pointer;
    background-color: initial;
    color: black;
}

.serie-button.disabled {
    padding: 10px;
    cursor: not-allowed;
    background-color: rgba(0, 0, 0, 0.879);
    border-radius: 20px;
}

.serie-button a {
    text-decoration: none;
    color: inherit;
}
























#POTIN {
    width: 100%;
    display: none;
    justify-content: center;
    position: absolute;
    z-index: 99;
    top: 0px;
    padding-bottom: 400px;
}

.giga {
    position: absolute;
    z-index: 99999999999999999999999999999999999999999999;
    border-radius: 5px;
    background-color: rgb(0, 0, 0);
    color: white;
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 220px;
}


.adult {
    z-index: 999;
    position: relative;
    background: url(../image/opal.png) no-repeat;
    background-position: center;
    background-size: 100%;
    border-radius: 30px;
    transition: all .5s ease;
}

.tap {
    position: relative;
    z-index: 3;
    background-color: rgb(0, 0, 0);
    color: white;
    width: 90%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    top: 120px;
    border-radius: 20px;
    gap: 50px;
}

.comal {
    position: relative;
    z-index: 3;
    background-color: rgb(0, 0, 0);
    color: white;
    width: 90%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    top: 120px;
    border-radius: 20px;
    gap: 50px;
    padding-bottom: 200px;
}


.molotof {
    display: flex;
    flex-direction: column;
    width: 85%;
}

.imat {
    border-radius: 10px;
    width: 370px;
    height: 500px;
    background-image: url(https://raw.githubusercontent.com/nzao70/authorview/refs/heads/main/Sans%20titre%201193_20240923212750.jpg);
    background-position: center;
    background-size: 100%;
    margin-left: 10px;
}



.synop {
    width: 400px;
    margin-left: 40px;
    padding: 20px;
}

.inform {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 40px;
}

@media screen and (max-width: 700px) {

    .inform {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}

@media screen and (max-width: 672px) {
    .synop {
        width: 350px;
    }
}

@media screen and (max-width: 572px) {
    .synop {
        width: 290px;
    }
}

.inform table {
    padding: 20px;
    font-size: 22px;
}

.inform table a {
    color: rgb(245, 92, 225);
    text-decoration-line: none;
}



.linkslide {
    display: contents;
}



.card {
    border-radius: 10px;
    width: 170px;
    background: rgba(1, 4, 27, 0.45);
    transition: all 0.3s ease;
}

.card:hover {
    background: rgba(10, 23, 126, 0.45);
    transform: scale(1.06);
}

.card .image {
    height: 210px;
    width: 170px;
}

.card .image img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.name {
    margin-left: 10px;
}

.card button {
    border-radius: 4px;
    height: 25px;
    width: 140px;
    border: none;
    background: #101728;
    color: white;
    transition: all 0.3s ease;
    font: small-caps bold 14px/1 sans-serif;
}

.card button:hover {
    background: #DFC61E;
    transform: scale(1.06);
}


.retourinfo {
    border-radius: 4px;
    height: 25px;
    width: 140px;
    border: none;
    background: #101728;
    color: white;
    transition: all 0.3s ease;
    font: small-caps bold 14px/1 sans-serif;
    margin-bottom: 30px;

}

.retourinfo:hover {
    background: #DFC61E;
    transform: scale(1.06);
}

.c-bread {
    position: relative;
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.263);
    width: 80%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    top: 120px;
    border-radius: 20px;
    gap: 50px;
}

