/* PAGE WIKI SUBNAUTICA 1 */

.BodyWiki {
    background-size: cover;
}

.BodyWiki::before {
    content: none;
}

.BodyWiki .btn-wiki {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    flex: 1;
    padding: 50px 35px;
    background: rgb(0 0 0 / 68%);
    border: 1px solid rgb(10 223 237 / 17%);
    border-radius: 12px;
    color: #009688;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-icone {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icone img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(0, 220, 255, 0.6));
}

.btn-content {
    display: flex;
    flex-direction: column;
}

.btn-titre {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-texte {
    margin: 0;
    font-size: 14px;
    color: #d8faff;
}

.BodyWiki .btn-wiki:hover {
    background: rgba(10, 223, 237, 0.17);
    border-color: rgb(255, 255, 255);
    transform: translateY(-3px);
}

.section-accueilwiki {
    min-height: 100vh;
    height: auto;
    padding-bottom: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url("../images/BannerWiki1.png") center/cover no-repeat;
}

.couche-sombrewiki {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgb(0 227 196 / 32%) 0%,
            rgb(0 0 0 / 60%) 40%,
            rgb(16 4 4 / 20%) 70%,
            rgba(0, 0, 0, 0) 100%);
}

.ligne-boutons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 40px;
    width: 90%;
    max-width: 4400px;
}

.nav-creature-wrapper {
    position: fixed;
    top: 550px;
    left: 95%;
    transform: translateX(-50%);
}

.nav-creature-btn {
    background: rgba(0, 200, 255, 0.15);
    border: 1px solid rgba(0, 200, 255, 0.5);
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.25s ease;
    backdrop-filter: blur(6px);
}

.nav-creature-btn:hover {
    background: rgba(0, 200, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.8);
}

.nav-creature-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 10, 20, 0.92);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 10px;
    list-style: none;
    padding: 10px 0;
    min-width: 220px;
    backdrop-filter: blur(10px);
}

.nav-creature-wrapper.ouvert .nav-creature-menu {
    display: block;
}

.nav-creature-menu li a {
    display: block;
    padding: 12px 25px;
    color: #ccc;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    font-size: 15px;
    transition: 0.2s ease;
}

.nav-creature-menu li a:hover {
    background: rgba(0, 200, 255, 0.1);
    color: #00ffff;
}

/* ---- MOBILE (≤ 768px) ---- */
@media (max-width: 768px) {

    .texte-logo {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .image-logo {
        width: 24px;
    }

    .ligne-boutons {
        flex-direction: column;
        width: 95%;
        gap: 16px;
        margin-top: 20px;
    }

    .BodyWiki .btn-wiki {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 14px;
    }

    .btn-icone {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    .btn-icone img {
        width: 54px;
        height: 54px;
    }

    .btn-titre {
        font-size: 16px;
    }

    .btn-texte {
        font-size: 12px;
    }

    .titre-accueil {
        font-size: 2rem;
    }

    .sous-titre-accueil {
        font-size: 0.8rem;
        margin: 10px 16px;
    }

   .contenu-accueil {
    padding: 16px;
    padding-top: 100px;
}

    .nav-creature-wrapper {
        display: none;
    }
}