body {
    background: rgb(0, 0, 0);
    text-align: center;

    margin: 0;
}
@font-face {
    font-family: "buran";
    src: url(/fonts/buran.ttf);
}
@font-face {
    font-family: "clean";
    src: url(/fonts/georgiab.ttf);
}
.container {
    background: #c0d4ff;
    width: 600px;
    margin: 40px auto;
    padding: 30px;

    border: 2px solid rgb(255, 255, 255);
    box-shadow: 0 0 20px rgb(176, 208, 255);
    text-align: center;
}
.containerp {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #0a6927;
    width: min(1800px, 95%);
    margin: 65px auto;
    padding: 20px;
    border: 2px solid rgb(248, 253, 168);
    box-shadow: 0 0 20px rgb(176, 208, 255);
}
.containerp a {
    font-size: 38px;
    font-weight: bolder;
    color: rgb(241, 218, 88);
    text-decoration: none;

    -webkit-text-stroke: 2px black;
    text-shadow: 0 0 6px rgb(0, 0, 0);
}
.containerp a.active {
    color: #0a6927;
    padding: 5px 10px;
    background-color: rgb(0, 0, 0);
}

.nav-right {
    display: flex;
    transform:translateX(-100px);
    font-family: "buran";
    gap: 140px;
}

.nav-left {
    display: flex;
    transform:translateX(100px);
    font-family: "buran";
    gap:140px;
}

.navbar {
    position: absolute;
    bottom: 45px;     
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 300px;

    font-size: 38px;
    font-weight: bolder;
    font-family: "clean";
   -webkit-text-stroke: 2px black;
    color: #0a6927;
    text-shadow: 0 0 6px #000000;
}

.mobile-nav {
    display: none;
}

.mobile-nav a.active {
    color: #0a6927;
    background: url(image/Zipper.png);
    padding: 5px 10px;
    background-color: rgb(0, 0, 0);
}

.pillar {
    position: fixed;
    top: 0;
    width: 300px;
    height: 100vh;

    background: url("/image/pillar.jpg") no-repeat center;
    background-size: cover;

    pointer-events: none; 
    z-index: -1;
}

.pillar.left {
    left: 0;
}

.pillar.right {
    right: 0;
    transform: scaleX(-1);
}

body {
    opacity: 1;
    transition: opacity 0.6s ease;
}

body.fade-out {
    opacity: 0;
}

#status {
    margin-top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: rgb(129, 128, 194);
    text-shadow:
        0 0 5px rgb(72, 55, 99),
        2px 2px 2px black;
    letter-spacing: 2px;
}
#warning {
    font-size: 24px;
    font-weight: bolder;
    color:rgb(241, 218, 88);
}
#warning2 {
    font-size: 22px;
    font-weight: bolder;
}
.header {
    position:relative;
    text-align: center;
    font-size: 50px;
    font-weight: bolder;
   -webkit-text-stroke: 1px black;
    color:rgb(241, 218, 88);
}

.rendbox1 {
    display: flex;
    justify-content: space-between;
    align-items: center;

    max-width: 900px;
    width: 95%;
    margin: 40px auto;
    padding: 20px;

    background: #111;
    border: 3px solid white;
    box-shadow: 0 0 20px rgb(176, 208, 255);
    border-radius: 10px;
}

#rend {
    width: 500px;
    height: auto;
}

#jukebox {
    cursor: pointer;
    height: clamp(180px, 30vh, 400px);
    width: auto;
    transition: transform 0.2s;
    margin-left: 50px;
}
.juketext {
    transform: translateX(-40px);
     font-size: 30px;
    font-family: "buran";
    letter-spacing: 6px;
    color: rgb(200, 220, 255);
   -webkit-text-stroke: 1px black;
}

#jukebox:hover {
    transform: scale(1.05);
}

#jukebox:active {
    transform: scale(0.98);
}

.advert {
    position: fixed;
    right: 120px;
    top: 560px;
}

.ryu {
    position: fixed;
    left: 120px;
    width: 300px;
    height: 64vh;
    top: 560px;
}

.floatingAd {
    animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(calc(-50% - 8px));
    }
}

body {
    opacity: 0;
    transition: opacity 0.8s ease;
}

body.fade-in {
    opacity: 1;
}

@media (max-width: 768px) {
    .nav-left,
    .nav-right {
        transform: none;
        gap: 20px;
    }
   
    .containerp {
        display: none;
    }

    .mobile-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 60px;

        justify-content: space-evenly;
        align-items: center;
        border: 2px solid white;
        box-shadow: 0 0 20px rgb(248, 253, 168);
        background: #0a6927;
        border-top: 2px solid rgb(0, 0, 0);

        font-family: "buran";
        font-size: 26px;
        font-weight: bolder;
        color: rgb(241, 218, 88);
        text-decoration: none;

        -webkit-text-stroke: 2px black;
        text-shadow: 0 0 6px rgb(0, 0, 0);

        z-index: 1000;
    }

    .mobile-nav a {
        color: rgb(255, 255, 255);
        text-decoration: none;
        font-family: "buran";
    }

     .advert {
       display: none;
    }
    .ryu {
        position: fixed;
        bottom: 10px;
        top: auto;
        left: 0;
        width: 100%;
        height: 10%;
    }

     .rendbox1 {
        flex-direction: column;
        width: 95%;
    }

    #rend {
        width: 100%;
    }

    #jukebox {
        margin: 20px 0 0;
        height: auto;
        width: 60%;
        transform: translateX(20px);
    }

}