@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900cover;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+Thai:wght@100..900&display=swap');

a,
a:hover {
    text-decoration: none;
}

:root {
    --bs-primary: #f8ab16;
}

.ci-primary {
    color: var(--bs-primary);
}

body {
    font-family: "Kanit", sans-serif;
    background: #000;
}

.mainLayoutBt {
    position: relative;

    width: 100%;
    min-height: 100dvh;
    padding: 20px;
    padding-top: 60px;

    background: url("https://img.gnjoy.in.th/2025/13/ROBattlePassSpecialWebsite_BG.png");
    background-position: top center;
    background-size: cover;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    color: #fff;
}

button:focus {
    outline: 0px auto -webkit-focus-ring-color;
}

/* ===== Scrollbar Minimal Style ===== */
::-webkit-scrollbar {
    width: 5px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transition: background-color 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

* {
    scrollbar-width: thin;
    scrollbar-color: #6b7aff4d transparent;
}



/* modal  */
.modal-content {
    padding: 30px;

    background: #000;
    border: 3px solid #f8ab16;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    box-shadow: 0 0 10px rgba(248, 171, 22, 0.6);
    animation: glowPulse 2.5s infinite alternate;
}

.modal_note {
    color: #e50000;
    font-weight: 600;
    line-height: 17px;
}