:root {
    --primary-rgba: 255, 255, 255;
    --primary-color: #ffffff;
    --primary-color-light: #ffffff;
    --primary-color-dark: #e6e6e6;
    --background: #3b4148;
    --section: #bab9b9;
    --border: #3b4148;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
*::-webkit-scrollbar {
    width: 5px;
}
*::-webkit-scrollbar-track {
    background-color: rgba(var(--primary-rgba), 0.3);
}
*::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 6px;
}
*::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-color-light);
}
a {
    text-decoration: none;
    width: 100%;
    cursor: pointer;
}
body {
    background: var(--background);
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
section {
    background: var(--section);
    box-shadow: 0 0 10px rgba(var(--primary-rgba), 0.5);
    width: 425px;
    height: 100vh;
    margin: auto;
    padding: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
}
.logo {
    width: 200px;
    filter: drop-shadow(0px 5px 5px #00000060);
    z-index: 1;
}
section h1 {
    position: relative;
    top: 5px;
    letter-spacing: 2px;
    font-size: 15px;
    width: 100%;
    text-align: center;
    text-shadow: 0 1px 1px black;
    z-index: 1;
}
section .detailtt {
    text-transform: capitalize;
    font-size: 10px;
    color: var(--background);
    font-weight: 500;
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(var(--primary-rgba), 0.8);
    z-index: 1;
}
svg {
    width: 30px;
    stroke: var(--primary-color);
}
.grp_button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
}
.list_button {
    width: 75%;
    display: flex;
    align-items: center;
    padding: 10px 35px;
    border-radius: 6px;
    background: var(--section);
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px #00000060;
    gap: 20px;
    transition: all 0.3s ease;
}
.list_button:hover {
    animation: none;
    border: 1px solid rgba(var(--primary-rgba));
    box-shadow: 0 0 10px var(--primary-color-light), inset 0 0 10px var(--primary-color-light);
}
.list_button:hover > p {
    color: white;
}
.list_button p {
    width: 100%;
    color: var(--background);
    font-size: 17px;
    text-align: center;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer p {
    width: 100%;
    font-size: 10px;
    text-align: center;
    background: var(--background);
    padding: 5px 0;
}
.bgshot {
    position: absolute;
    width: 120%;
    z-index: 0;
    opacity: 0.15;
    filter: drop-shadow(3px 5px 5px black);
}
.bgshot.satu {
    top: -50px;
    left: 250px;
}
.bgshot.dua {
    bottom: -50px;
    left: -250px;
    transform: rotateY(180deg);
}
.list_button.cek {
    cursor: pointer;
    text-align: center;
    animation: warnasatu 1s linear infinite;
}
.list_button.cek p {
    margin-left: 0px;
    text-align: center;
    color: var(--background);
}
@keyframes warnasatu {
    0% {
        border: 1px solid var(--border);
    }
    50% {
        border: 1px solid rgba(var(--primary-rgba));
        box-shadow: 0 0 10px var(--primary-color-light), inset 0 0 10px var(--primary-color-light);
    }
    100% {
        border: 1px solid var(--border);
    }
}
.icon-tabler-brand-whatsapp {
    stroke: #25d366;
}
.icon-tabler-messages {
    stroke: #fe5000;
}
.group_down {
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 50px;
}
.animasict {
    position: absolute;
    bottom: -20px;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--background);
}
.atur {
    text-transform: lowercase;
}
.set_kosong {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.set_kosong span {
    font-size: 20px;
    color: var(--background);
}
.set_kosong p {
    text-align: center;
    font-size: 13px;
    color: var(--background);
}
@media screen and (max-width: 768px) {
    section {
        width: 100%;
    }
    .list_button  {
        width: 85%;
    }
    .list_button p {
    }
}
@media screen and (max-width: 389px) {
    .list_button {
        width: 100%;
    }
    .list_button p {
        font-size: 15px;
    }
    .set_kosong p {
        font-size: 10px;
    }
}