:root {
    ---rgba-primary: 61, 221, 219;
    ---rgba-primary-dark: 49, 177, 175;
    ---rgba-primary-light: 73, 245, 243;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background-color: black;
}

*::-webkit-scrollbar-thumb {
    background-color: #3ddddb;
    border-radius: 6px;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: rgba(var(---rgba-primary-light));
}

a {
    text-decoration: none;
    width: 100%;
    cursor: pointer;
}

body {
    background: #000000 url('https://dr71dvn7kc6me.cloudfront.net/Oris+Gaming/favicon.png') no-repeat center center fixed;
    background-size: cover;
    color: rgb(27, 27, 27);
    position: relative;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    min-height: 100vh;
}

/* Overlay gelap di atas background untuk kontras */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

svg {
    width: 35px;
    stroke: #ffffff;
}

.container {
    width: 1200px;
    margin: auto;
}

header {
    background: rgba(221, 61, 61, 0.9);
    box-shadow: 0 5px 10px #1a1919ad;
    position: sticky;
    top: 0;
    width: 100%;
    margin-bottom: 10px;
    z-index: 99;
}

.grp_navbar {
    background: radial-gradient(circle, rgba(221, 61, 61, 0.1) 0%, #111111 100%);
    background-color: #111111;
    box-shadow: 0px -5px 5px #b5b1b1, inset 0 -1px rgba(221, 61, 61, 0.3);
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 0 0 20px 20px;
    position: relative;
}

.grp_navbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.grp_navbar a:hover>img {
    box-shadow: 0 5px 10px #b13131cb, 0 -5px 10px rgb(245, 73, 73), inset 0 1px rgba(221, 61, 61, 0.6);
    animation: none;
}

.grp_navbar p {
    z-index: 1;
    text-align: center;
    padding: 3px;
    position: absolute;
    bottom: 10px;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0px 5px 5px #b13131;
}

.menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    bottom: -20px;
}

.menu a {
    width: 170px;
    text-align: center;
    padding: 5px;
    border-radius: 6px;
    background: #00000066;
    border: 1px solid rgba(221, 61, 61, 0.3);
    box-shadow: 0 0px 0px #8e1f1fcb, 0 0px 0px rgba(221, 61, 61, 0.3);
    color: #c5c5c5;
    letter-spacing: 0.5px;
    font-weight: 700;
    font-size: 12px;
    animation: menumuncul 0.5s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    transition: all 0.3s ease;
}

.menu a:hover {
    box-shadow: 0 2px 2px #b13131, 0 -2px 7px rgba(221, 61, 61, 0.1);
    background: rgba(221, 61, 61, 0.7);
}

@keyframes menumuncul {
    0% {
        box-shadow: 0 0px 0px #8e1f1f, 0 0px 0px rgba(221, 61, 61, 0.3);
    }

    100% {
        box-shadow: 0 5px 5px #b13131, 0 -5px 10px rgba(221, 61, 61, 0.3);
    }
}

.navkiri,
.navkanan {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.logo_img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    padding: 2px;
    border: 5px solid rgba(221, 61, 61, 0.2);
    box-shadow: 0 0px 0px #8e1f1fea, 0 0px 0px rgba(221, 61, 61, 0.3), inset 0 0px rgba(221, 61, 61, 0.6);
    z-index: 0;
    animation: profilemuncul 0.5s;
    animation-fill-mode: forwards;
    transition: all 0.3s ease;
}

@keyframes profilemuncul {
    0% {
        box-shadow: 0 0px 0px #8e1f1f, 0 0px 0px rgba(221, 61, 61, 0.3), inset 0 0px rgba(221, 61, 61, 0.6);
    }

    100% {
        box-shadow: 0 5px 10px #dd3d3d, 0 -5px 10px rgba(221, 61, 61, 0.3), inset 0 1px rgba(221, 61, 61, 0.6);
    }
}

.promo_sec {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo_sec img {
    width: 100%;
    border-radius: 3px 3px 0 0;
}

.promo_sec a {
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    padding: 5px;
    border: 1px solid rgba(221, 61, 61, 0.3);
    border-radius: 0 0 3px 3px;
    transition: all 0.3s ease;
    animation: btnin 1.0s linear infinite;
}

.promo_sec a:hover {
    background: #dd3d3d;
    color: #b13131;
    animation: none;
}

@keyframes btnin {
    0% {
        background: transparent;
    }

    50% {
        background: rgba(221, 61, 61, 0.4);
    }

    100% {
        background: transparent;
    }
}

.menu_mobile {
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 0;
    background: radial-gradient(circle, rgba(var(---rgba-primary), 0.1) 0%, #111111 100%), #b5b1b1;
    box-shadow: 0 -5px 8px #181818;
    position: relative;
}

.menu_mobile a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu_mobile svg {
    width: 25px;
}

.menu_mobile p {
    color: white;
    font-size: 10px;
    text-transform: uppercase;
}

.logo_mobile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 5px;
    border: 2px solid rgba(221, 61, 61, 0.3);
}

.mobile_stick {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
}

@media screen and (max-width: 768px) {
    .list_grd1 a {
        font-size: 12px;
    }

    .list_grd1 span {
        font-size: 12px;
    }

    .grd1 p {
        font-size: 10px;
    }

    .titles {
        width: 100%;
    }

    .line2ss {
        right: -280px;
    }

    .spotss {
        width: 20px;
    }

    .menu_mobile {
        display: flex;
    }

    header {
        display: none;
    }

    .container {
        width: 100%;
        margin-bottom: 80px;
    } 
}