@font-face {
    font-family: 'Ghotam';
    src: url('../fonts/Gotham-Medium.otf'),
}

@font-face {
    font-family: 'Din Alternate';
    src: url('../fonts/DINAlternate-Bold.woff') format('woff')
}

@font-face {
    font-family: 'Cooldex';
    src: url('../fonts/Cooldex.ttf') format('truetype'),
        url('../fonts/Cooldex.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root {
    --scrollbar-bg: #4b3833;
    --scrollbar-thumb: #5e2f23;
    --scrollbar-thumb-hover: #662515;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 15px;
    background-color: var(--scrollbar-bg);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-thumb-hover);
}

::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb);
}

/* max-width: 1920px;
    width: 100vw;
    position: absolute;
    margin-top: 0vw; */

.mfp-bg.mfp-fade.mfp-ready {
    height: 100% !important;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
    border: 0 !important;
    border-radius: 0px !important;
}

html,
body {
    /* background-color: rgb(54, 53, 53); */
    /* background: url(../images/teaser/rcc/b.jpg)no-repeat center top; */
    background-size: cover;
    position: relative;
    display: block;
    margin: 0 auto;
    overflow-x: hidden;
    min-height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: 'Ghotam';
    padding: unset !important;
}

.fog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
}

.fog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: clearFog 2.5s ease-out forwards;
}

.floating-banner {
    position: absolute;
    display: block;
    top: 1.5%;
    left: 2%;
    z-index: 99;
}

.floating-banner img {
    width: 15vw;
    animation: animationBannerFloat 2s ease-in-out infinite;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.floating-banner img:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    cursor: pointer;
}

@keyframes animationBannerFloat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 768px) {

    .floating-banner {
        display: none;
    }
}

@keyframes clearFog {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap;

}

.nav-brand>img {
    width: 9vw;
}

.nav-left,
.nav-right {
    flex: 1;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* display: flex !important; */
    flex-direction: row;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar.custom-navbar {
    position: fixed;
    max-width: 100vw;
    width: 100%;
    z-index: 1030;
    /* pastikan di atas elemen lain */
    /* ganti sesuai kebutuhan, pastikan tidak transparan penuh */
    /* efek glassmorphism opsional */
}

.nav-link {
    margin: 0 42px;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    transition-duration: 0.3s;

}

.nav-link:hover {
    color: #5e2f23;
    text-shadow: 1px 1px 1px #000000;
}

.nav-side {
    border: rgb(255, 255, 255) 2px solid;
    border-radius: 40px;
    transition: color 0.3s ease;

}


/* Dua sisi background fill: kiri dan kanan */
.nav-side::before,
.nav-side::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: #312b2a5c;
    z-index: -1;
    transition: width 0.5s ease-out;
    border-radius: 40px;
}

/* Kiri mengisi ke tengah */
.nav-side::before {
    left: 0;
}

/* Kanan mengisi ke tengah */
.nav-side::after {
    right: 0;
}

/* Saat discroll, isi dari kiri dan kanan ke tengah */
.nav-side.scrolled::before,
.nav-side.scrolled::after {
    width: 100%;
}


/* Di resolusi besar seperti 2560px */
@media (min-width: 1920px) {
    .nav-link {
        margin: 0 60px;
        /* Tambah jarak antar link */
        font-size: 1.1rem;
        /* Perbesar font sedikit */
    }

    .nav-brand>img {
        width: 7vw;
        /* Lebih proporsional untuk resolusi besar */
    }
}

@media (max-width: 1000px) {
    .navbar-nav {
        display: none !important;
    }

    .nav-brand>img {
        width: 21vw !important;
        /* Lebih proporsional untuk resolusi besar */
    }

    .custom-navbar {
        top: 0;
        width: 0%;
        background-color: #312b2a5c;
        position: absolute;
        margin-top: 0 !important;
        overflow: hidden;
        transition: width 0.5s ease;
    }


    .navbar.custom-navbar {
        position: fixed;
        max-width: 100vw;
        width: 0 !important;
        z-index: 1030;
    }

    .navbar.custom-navbar.active {
        width: 100% !important;

    }
}

@media (max-width: 1266px) {
    .navbar.custom-navbar {
        padding: 10px 24px;
    }

    .nav-brand>img {
        width: 12vw;
        /* lebih kecil dari desktop */
    }

    .nav-link {
        margin: 1px 24px;
        font-size: 0.8rem;
    }

    .nav-side {
        border-width: 1.5px;
        padding: 4px 10px;
    }
}

.ggl-roc-overlay {
    position: absolute;
    background-size: cover;
    top: 0vw;
    width: 100%;
    animation: logo-glow2 5s infinite;
}

/* SECTION 1 */

.ggl-roc-section-1-winner-banner {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}


.ggl-roc-section-1 {
    position: relative;
    display: block;
    margin: 0 auto;
    /* max-width: 2560px; */
    max-width: none;
    width: 100%;
    height: 56.3vw;
    overflow: hidden;
    /* z-index: 1; */
    /* margin-top: 2vw; */
    /* background: url(../images/teaser/rcc/bg/bg-1.png)no-repeat center top;
    background-size: cover; */
}

.ggl-roc-section-1-bg-d {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.ggl-roc-section-1-bg-m {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.ggl-roc-section-1-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    margin-top: -4vw;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    top: 13vw;
}

.logo-content {
    max-width: 683px;
    width: 29vw;
    animation: float 3s ease-in-out infinite;
}

.ggl-roc-section-1-tagline {
    max-width: 1435px;
    width: 59vw;
    margin-top: 2vw;
    animation: 3s ease-in-out infinite;
}

.ggl-roc-section-1-logo {
    position: absolute;
    top: -9vw;
    left: -7vw;
    max-width: 1000px;
    width: 42vw;
    transition-duration: 0.2s;
}

.ggl-roc-section-1-logo:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}


.glow {
    width: 29vw;
    -webkit-animation: logo-glow 5s infinite;
    /* Safari 4+ */
    -moz-animation: logo-glow 5s infinite;
    /* Fx 5+ */
    -o-animation: logo-glow 5s infinite;
    /* Opera 12+ */
    animation: logo-glow 5s infinite;
    /* IE 10+, Fx 29+ */
}

.ggl-roc-section-1-timeline {
    max-width: 2543px;
    width: 60vw;
    animation: revealMask 3s ease forwards;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
    mask-size: 0% 100%;
    mask-repeat: no-repeat;
    margin-top: 3vw;
}

.timeline-mobile {
    max-width: 512px;
    width: 45vw;
    margin-top: 9vw;
    animation: revealMask2 3s ease forwards;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
    mask-size: 100% 0%;
    -webkit-mask-size: 100% 0%;
    mask-repeat: no-repeat;
}


@keyframes blinkFade {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}


@-webkit-keyframes logo-glow {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes logo-glow {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 0;
    }
}

@-o-keyframes logo-glow {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes logo-glow {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes logo-glow2 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes logo-glow2 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
    }
}

@-o-keyframes logo-glow2 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
    }
}

@keyframes logo-glow2 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
    }
}

@keyframes revealMask {
    to {
        -webkit-mask-size: 100% 100%;
    }
}

@keyframes revealMask2 {
    to {
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
    }
}

@media (min-width: 1920px) {
    .ggl-roc-section-1-tagline {
        margin-top: 4vw;
    }
}

@media (max-width: 767px) {
    .ggl-roc-section-1-tagline {
        width: 91vw;
        margin-top: 11vw;
    }

    .ggl-roc-section-1-logo {
        position: absolute;
        max-width: 1000px;
        width: 63vw;
        z-index: 2;
        top: -5vw;
        LEFT: -17vw;
    }

    .logo-wrapper {
        top: 30vw;
    }

    #id {
        width: 43vw;
        left: -7vw;
        top: 8vw;
    }

    .ggl-roc-section-1 {
        height: auto;
    }
}

/* Section 2 */
.ggl-roc-section-2 {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: none;
    width: 100%;
    height: 55.2vw;
    /* margin-top: 7vw; */
    overflow: hidden;
    /* z-index: 1; */
}

.ggl-roc-section-2-bg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.ggl-roc-section-2-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: -2vw;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ggl-roc-section-2-char {
    max-width: 1399px;
    width: 60vw;
    margin-top: 2vw;
    margin-right: 3vw;
    position: relative;
}

.ggl-roc-section-2-detail {
    position: absolute;
    max-width: 1761px;
    width: 84vw;
    margin-top: 10vw;
    z-index: 1;
}

.ggl-roc-section-2-detail-m {
    max-width: 1080px;
    width: 101vw;
    margin-top: 10vw;
    z-index: 1;
}

.ggl-roc-section-2-detail2 {
    position: absolute;
    max-width: 1761px;
    width: 84vw;
    margin-top: 10vw;
    filter: drop-shadow(0 0 10px rgba(175, 50, 50, 0.6));
    animation: glowFade 5s ease-in-out infinite;
}


@keyframes glowFade {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* @media (max-width: 768px) {
    .ggl-roc-section-1-content {
        margin-top: -1vw;
    }

}

@media (max-width: 768px) {
    .ggl-roc-section-3-content {
        top: 3vw !important;
    }
}

@media (max-width: 768px) {
    .ggl-roc-section-4-content {
        top: 4vw !important;
    }

    .ggl-roc-section-4-siegepoint,
    .ggl-roc-section-4-groupstage,
    .ggl-roc-section-4-finalstage {
        max-width: 387px;
        width: 16vw;
    }
}

@media (max-width: 768px) {
    .ggl-roc-section-5-content {
        top: 1vw !important;
    }
}

@media (max-width: 768px) {
    .ggl-roc-section-6-content {
        top: 2vw !important;
    }
}

@media (max-width: 768px) {
    .ggl-roc-section-7-title {
        max-width: 576px;
        width: 30vw;
    }

    .ggl-roc-section-7-menu-img {
        max-width: 250px;
        width: 21vw;
        z-index: 1;
    }

    .table-hover th {
        font-size: 1rem;
    }

    .table-hover td {
        font-size: 1rem;
    }
} */

@media (max-width: 767px) {

    .ggl-roc-section-1 {
        background-image: url(../images/teaser/rcc/page1/bg-1-m.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
        min-height: auto;
        margin-top: 0 !important;
    }

    .ggl-roc-section-1-content {
        position: relative;
        z-index: 2;
        height: 178vw;
    }

    .ggl-roc-section-2 {
        background-image: url(../images/teaser/rcc/page2/bg-2-m.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
        min-height: auto;
        height: 179vw;
        margin-top: 0 !important;
    }

    .ggl-roc-section-2-content {
        position: relative;
        z-index: 2;
        height: 177vw;
    }

    .ggl-roc-section-3 {
        background-image: url(../images/teaser/rcc/page3/bg-3-m.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
        height: 178vw !important;
        min-height: auto;
        margin-top: 0 !important;
    }

    .ggl-roc-section-3-content {
        position: relative;
        z-index: 2;
        height: 171vw !important;
    }

    .ggl-roc-section-4 {
        background-image: url(../images/teaser/rcc/page4/bg-4-m.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
        height: 178vw !important;
        min-height: auto;
        margin-top: 0 !important;
    }

    .ggl-roc-section-5-point-img {
        width: 79vw !important;
        margin-top: 8vw !important;
    }

    .ggl-roc-section-5-point-img {
        max-width: 626px;
        width: 70vw;
    }

    .ggl-roc-section-4-content {
        position: relative;
        z-index: 2;
        height: 178vw !important;
    }

    .ggl-roc-section-5 {
        background-image: url(../images/teaser/rcc/page5/bg-5-m.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
        height: 178vw !important;
        min-height: auto;
        margin-top: 0 !important;
    }

    .ggl-roc-section-5-content {
        position: relative;
        z-index: 2;
        height: 178vw !important;
    }

    .ggl-roc-section-6 {
        background-image: url(../images/teaser/rcc/page6/bg-6-m.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
        height: auto !important;
        min-height: auto;
        margin-top: 0 !important;
    }

    .ggl-roc-section-6-content {
        position: relative;
        z-index: 2;
        height: 178vw !important;
        top: 3vw !important;
    }

    .ggl-roc-section-7 {
        background-image: url(../images/teaser/rcc/page7/bg-7-m.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
        height: 178vw !important;
        min-height: auto;
        margin-top: 0 !important;
    }

    .ggl-roc-section-7-content {
        position: relative;
        z-index: 2;
        height: 177vw !important;
    }


    .ggl-roc-section-7-final-banner-wrapper {
        width: 86vw;
        max-width: none;
    }

    .ggl-roc-section-7-final-banner-wrapper.final-banner-bracket-wrapper {
        overflow-y: auto;
    }

    .ggl-roc-section-7-bracket-img.final-banner {
        width: 171vw;
    }

    .ggl-roc-section-7-guild-leaderboard-table-frame {
        height: 72.4vw !important;
    }

    .ggl-roc-section-8 {
        background-image: url(../images/teaser/rcc/page8/bg-8-m.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
        height: 178vw !important;
        min-height: auto;
        margin-top: 0 !important;
    }

    .ggl-roc-section-8-content {
        position: relative;
        z-index: 2;
        height: 178vw !important;
    }

    .swal-fantasy-popup {
        /* background: #ffb700 center / cover; */
        padding: 0rem !important;
    }
}





/* Section 3 */
.ggl-roc-section-3 {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: none;
    width: 100%;
    height: 55.7vw;
    overflow: hidden;
    /* z-index: 1; */
}

.ggl-roc-section-3-bg {
    width: 100%;
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.ggl-roc-section-3-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: -2.6vw;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ggl-roc-section-3-title {
    max-width: 641vw;
    width: 31vw;
}

.ggl-roc-section-3-tagline-img {
    max-width: 1694px;
    width: 40vw;
}

.ggl-roc-section-3-juara1 {
    max-width: 641px;
    width: 26vw;
}

.ggl-roc-section-3-juara1,
.ggl-roc-section-3-juara2,
.ggl-roc-section-3-juara3,
.ggl-roc-section-3-juara4,
.ggl-roc-section-3-juara5 {
    cursor: pointer;
}

.ggl-roc-section-3-juara1 {
    animation: float2 3s ease-in-out infinite;
    animation-delay: 0s;
}

.ggl-roc-section-3-juara2 {
    animation: float2 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.ggl-roc-section-3-juara3 {
    animation: float2 3s ease-in-out infinite;
    animation-delay: 1s;
}

.ggl-roc-section-3-juara4 {
    animation: float2 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.ggl-roc-section-3-juara5 {
    animation: float2 3s ease-in-out infinite;
    animation-delay: 2s;
}

Opsion .ggl-roc-section-3-juara1:hover,
.ggl-roc-section-3-juara2:hover,
.ggl-roc-section-3-juara3:hover,
.ggl-roc-section-3-juara4:hover,
.ggl-roc-section-3-juara5:hover {
    animation: float 3s ease-in-out infinite;
}

.ggl-roc-section-3-line2 img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-left: 0;
}

.ggl-roc-section-3-trophy1 {
    width: 5%;
    transition-duration: 0.3s;
}

.ggl-roc-section-3-line2 {
    width: 5%;
    margin-top: -3vw;
    transition-duration: 0.3s;
}

.ggl-roc-section-3-line2:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    filter: saturate(1.3);
}

.ggl-roc-section-3-trophy1:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    filter: saturate(1.4);
}

.ggl-roc-section-3-popup-prizepool {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.7);
    /* optional: untuk blur background */
    display: flex;
    justify-content: center;
    align-items: center;
}

.ggl-roc-section-3-popup-prizepool-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.7);
    /* optional: untuk blur background */
    display: flex;
    justify-content: center;
    align-items: center;
}

.ggl-roc-section-3-btn-back {
    position: absolute;
    top: 36px;
    left: 59px;
    z-index: 10;
    cursor: pointer;
    width: 98px;
    height: 92px;
    background: #72171700;
    border: none;
}

.ggl-roc-section-3-prizepool-img {
    max-width: 1920px;
    width: 74vw;
    border: #ddad00 4px solid;
    border-radius: 13px;
}

.ggl-roc-section-3-btn-reward-img {
    width: 15vw;
    margin-top: 1vw;
    transition-duration: 0.3s;
    cursor: pointer;
}

.ggl-roc-section-3-btn-reward-img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}


/* Flip IN (muncul) */
.popup-flip-in {
    animation: flipIn 0.6s ease-out forwards;
}

@keyframes flipIn {
    0% {
        opacity: 0;
        transform: perspective(800px) rotateX(90deg);
    }

    100% {
        opacity: 1;
        transform: perspective(800px) rotateX(0deg);
    }
}

/* Flip OUT (hilang) */
.popup-flip-out {
    animation: flipOut 0.5s ease-in forwards;
}

@keyframes flipOut {
    0% {
        opacity: 1;
        transform: perspective(800px) rotateX(0deg);
    }

    100% {
        opacity: 0;
        transform: perspective(800px) rotateX(90deg);
    }
}

/* Rentang antara 1242px sampai 1919px */
@media (min-width: 1242px) and (max-width: 1919px) {
    .ggl-roc-section-3-line2 {
        width: 15%;
        margin: 0 0vw !important;
        /* atau nilai rata-rata misalnya 0vw */
    }
}

/* Di atas 1920px */
@media (min-width: 1920px) {
    .ggl-roc-section-3-line2 {
        width: 15%;
        margin: 0 0.5vw !important;
    }
}

@media (min-width: 992px) {
    .ggl-roc-section-3-trophy1 {
        width: 28%;
        /* Juara 1 lebih besar */
    }

    .ggl-roc-section-3-line2 {
        width: 15%;
        /* Juara 2-5 lebih besar dari sebelumnya */
        margin: 0 -0.5vw
    }
}

@media (max-width: 991px) {
    .ggl-roc-section-3-trophy1 {
        width: 60%;
        margin-bottom: 2vw;
    }

    .ggl-roc-section-3-line2 {
        width: 46%;
        margin: -3vw;
        margin: 0 -0.5vw;
    }
}

@media (max-width: 767px) {
    .ggl-roc-section-3-title {
        width: 47vw;
    }

    .ggl-roc-section-3-tagline-img {
        width: 73vw;
    }

    .ggl-roc-section-3-prizepool-img {
        width: 90vw;
    }

    .ggl-roc-section-5-point {
        padding: 1vw 7vw 1vw 6vw !important;
        font-size: 14px !important;
    }

    .ggl-roc-section-3-btn-reward-img {
        width: 46vw;
    }

    .ggl-roc-section-3-line2 {
        margin: -2vw;
    }
}

@media (max-width: 358px) {
    .ggl-roc-section-3-btn-back {
        top: 21px;
        left: 23px;
        width: 75px;
        height: 17px;
    }
}

@media (min-width: 524px) and (max-width: 767px) {
    .ggl-roc-section-3-prizepool-img {
        width: 53vw;
    }
}

.row.justify-content-center {
    flex-wrap: wrap;
}

/* Section 4 */
.ggl-roc-section-4 {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: none;
    width: 100%;
    overflow: hidden;
    /* margin-top: 9%; */
    /* z-index: 1; */
    height: 55vw;
}

.ggl-roc-section-4-bg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.ggl-roc-section-4-content {
    position: relative;
    z-index: 1;
}

.ggl-roc-section-4-title {
    max-width: 1433px;
    width: 57vw;
}

.ggl-roc-section-4-siegepoint,
.ggl-roc-section-4-groupstage,
.ggl-roc-section-4-finalstage {
    max-width: 387px;
    width: 19vw;
    margin-bottom: 1vw;
    margin-left: 1vw;
}

.custom-col-md-3 {
    flex: 0 0 25% !important;
    max-width: 22% !important;
    width: 5%;
    transition-duration: 0.3s;
    cursor: pointer;
}

.custom-col-md-3:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}


@media (min-width: 2560px) {
    .custom-col-md-3 {
        flex: 0 0 25% !important;
        max-width: 16% !important;
        width: 5%;
        transition-duration: 0.3s;
        cursor: pointer;
    }
}

/* Section 5 */
.ggl-roc-section-5 {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: none;
    width: 100%;
    overflow: hidden;
    height: 55vw;
    /* margin-top: 9%; */
    /* z-index: 1; */
}

.ggl-roc-section-5-bg-d {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
    z-index: -1;
}

.ggl-roc-section-5-bg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.ggl-roc-section-5-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 4vw;
    left: 0;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-direction: column;
    margin-top: -1vw;
}

.ggl-roc-section-5-title {
    max-width: 705px;
    width: 36vw;
    margin-top: -1vw;
}


.ggl-roc-section-5-point {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #332a2a;
    color: #ffb700;
    font-size: 20px;
    letter-spacing: 5px;
    padding: 1vw 5vw 1vw 5vw;
    border: 1px solid #ffb700;
    border-radius: 53px;
    display: block;
    margin: 0 auto;
    background-image: url(../images/teaser/rcc/page5/down.png);
    background-repeat: no-repeat;
    background-position: 94% center;
    background-size: 19px;
    padding-left: 52px;
    max-width: 100%;
    width: 100%;
    cursor: pointer;
    box-sizing: border-box !important;

}


.ggl-roc-section-5-point option {
    background-color: #332a2a;
    color: #ffb700;
    cursor: pointer;
}


.ggl-roc-section-5-point-img .ggl-roc-section-5-point-img-var {
    max-width: 626px;
    width: 27vw;
}

/* Section 6 */
/* .ggl-roc-section-6 {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: none;
    width: 100%;
    overflow: hidden;
    margin-top: 9%;
    z-index: 1;
}

.ggl-roc-section-6-content {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ggl-roc-section-6-title {
    max-width: 1433px;
    width: 45vw;
}

.ggl-roc-section-6-content h2 {
    color: #fff;
    letter-spacing: 3px;
    atur sesuai kebutuhan
}

.ggl-roc-section-6-btn-login {
    cursor: pointer;
}

.ggl-roc-section-6-round1-img {
    margin-right: -15vw;
    max-width: 450px;
    width: 18vw;
}

.ggl-roc-section-6-round2-img {
    margin-right: -2vw;
    max-width: 450px;
    width: 18vw;
} */

/* Section 6 */
.ggl-roc-section-6 {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: none;
    width: 100%;
    height: 55.7vw;
    overflow: hidden;
    /* z-index: 1; */
}

.ggl-roc-section-6-bg {
    width: 100%;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ggl-roc-section-6-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: -3vw;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ggl-roc-section-6-title {
    max-width: 1433px;
    width: 45vw;
}

.ggl-roc-section-6-content h2 {
    color: #fff;
    letter-spacing: 3px;
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Din Alternate';
}

.ggl-roc-section-6-btn-login {
    cursor: pointer;
    vertical-align: middle;
    margin-left: 10px;
    max-width: 210px;
    width: 10vw;
    height: auto;
    transition-duration: 0.3s;
}

.ggl-roc-section-6-btn-login:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

/* Responsive image layout */
.ggl-roc-section-6-round1-img,
.ggl-roc-section-6-round2-img {
    max-width: 450px;
    width: 18vw;
    height: auto;
    cursor: pointer;
}

.ggl-roc-section-6-round1,
.ggl-roc-section-6-round2 {
    padding: 10px;
    transition-duration: 0.3s;
}

.ggl-roc-section-6-round1,
.ggl-roc-section-6-round2 {
    transition: transform 0.3s, filter 0.3s;
}

.ggl-roc-section-6-round1:hover,
.ggl-roc-section-6-round2:hover {
    transform: scale(1.1);
}

.dimmed {
    filter: saturate(0.3);
}


.swal-fantasy-popup {
    /* background: #ffb700 center / cover; */
    background: #ffb700 url(../images/teaser/rcc/page6/logo-fade.png) center/cover;
    background-size: 1553px;
    background-repeat: no-repeat;
    /* atau no-repeat kalau hanya 1 grid */
    border: 2px solid #7c1c00;
    box-shadow: 0 0 20px #7c1c00d1, 0 0 60px rgba(255, 50, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
}

.swal-fantasy-title {
    font-family: 'Cooldex';
    color: #7c1c00;
    font-size: 48px;
    letter-spacing: 3px;
}

.swal-fantasy-text {
    color: #fff;
    font-size: 25px;
    text-shadow: 1px 1px 2px #000000;
}

.swal-fantasy-text-form {
    z-index: 1;
    justify-content: center;
    margin: 0;
    /* padding: var(--swal2-html-container-padding); */
    overflow: auto;
    color: inherit;
    font-size: 1.125em;
    font-weight: normal;
    line-height: normal;
    text-align: center;
    word-wrap: break-word;
    word-break: break-word;
    cursor: initial;
    overflow: hidden;
}

.swal-fantasy-popup,
.swal-fantasy-popup *,
.swal-fantasy-popup *::before,
.swal-fantasy-popup *::after {
    box-sizing: content-box !important;
}

.swal2-input {
    background: #fff !important;
}

.swal2-success-line-tip,
.swal2-success-line-long {
    background-color: #7c1c00 !important;
    color: #7c1c00 !important;
}

.swal2-success-ring {
    border: .25em solid #7c1c00 !important;
}

.swal-fantasy-btn {
    background: #7c1c00;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    padding: 10px 24px;
    font-family: 'Din Alternate';
    text-shadow: none;
}

.swal-fantasy-btn:hover {
    background: #631701;
}

.swal2-icon.swal2-info,
.swal2-question {
    border-color: #7c1c00 !important;
    /* ganti warna lingkaran */
    color: #7c1c00 !important;
    /* warna teks 'i' */
}

.swal2-icon-content {
    color: #7c1c00;
}

#swal2-validation-message {
    background: none !important;
    /* Menghapus background */
    color: #000000 !important;
    /* Ganti warna teks */
}

.swal2-container .swal2-validation-message::before {
    background-color: #d32323;
    /* Hapus background */
    color: #ffffff !important;
    /* Ubah warna simbol */
}

.vote-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 20px;
}

.vote-option-btn {
    background: #7c1c00;
    color: #fff;
    font-family: 'Din Alternate';
    font-size: 22px;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px #ffb700b9;
}

.vote-option-btn:hover {
    background: #a12c00;
    transform: scale(1.05);
}

/* Responsive grid */
@media (max-width: 1000px) {
    .ggl-roc-section-6-content h2 {
        font-size: 1.8rem;
    }

}

@media (max-width: 600px) {
    .ggl-roc-section-6-content h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {


    .ggl-roc-section-6-title {
        max-width: 1433px;
        width: 88vw;
    }

    .ggl-roc-section-6-round1-img,
    .ggl-roc-section-6-round2-img {
        width: 42vw;
    }

    .ggl-roc-section-6-btn-login {
        width: 18vw;
    }
}


/* Section 7 */
.ggl-roc-section-7 {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: none;
    width: 100%;
    /* height: 59vw; */
    overflow: hidden;
    /* z-index: 1; */
    /* height: 70vw; di uncommand pas section 8 udah dibuka */
    height: 55vw;
}

.ggl-roc-section-7-bg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.ggl-roc-section-7-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    /* top: -3vw; di uncommand pas section 8 udh dibuka */
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ggl-roc-section-7-title {
    max-width: 576px;
    width: 28vw;
}

.ggl-roc-section-7-content p {
    letter-spacing: 1px;
    color: #fff;
    font-size: 3rem;
    margin-top: -2vw;
    font-family: 'Din Alternate';
}

.menu-siege,
.menu-group,
.menu-final {
    max-width: 250px;
    width: 23vw;
}


.btn-siege,
.btn-siege-active,
.btn-group,
.btn-group-active,
.btn-final-active,
.btn-final {
    cursor: pointer;
}


.ggl-roc-section-7-guild-leaderboard-wrapper {
    /* font-family: 'Joystix Monospace'; */
    position: relative;
    margin-bottom: 7vw;
    margin-top: 2vw;
}

.ggl-roc-section-7-guild-leaderboard-table-frame {
    /* position: absolute; */
    /* top: 2.9vw; */
    /* left: -23.8vw; */
    /* height: 59.4vw; */
    /* height: 31.4vw; */
    height: 20.4vw;
    width: 91vw;
    overflow: auto;
    /* border: 4px solid #ffb700; */
    margin-left: 0vw;
}

.ggl-roc-section-7-bracket-img {
    max-width: 1841px;
    width: 76vw;
}

.table-hover {
    border-collapse: separate;
    border-spacing: 10px 0px;
    /* jarak antar kolom horizontal */
    width: 100%;
    text-align: center;
    min-width: 600px;
    /* biar gak hancur di layar kecil */

}

/* .table-hover tbody tr:first-child td {
    margin-top: 10px;
    position: relative;
    top: 10px;
} */

.table-hover th,
.table-hover td {
    padding: 1vw 2vw;
    white-space: nowrap;
}

.table-hover th {
    background-color: #ffb400;
    /* kuning */
    color: #7c1c00;
    font-weight: 500;
    padding: 10px;
    border: 2px solid orange;
    font-size: 2rem;
    position: sticky;
    top: 0;
    z-index: 2;
    font-family: 'Cooldex';
    /* agar tetap berada di atas konten */
}

.table-hover td {
    border: 1px solid orange;
    color: white;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.308);
    /* transparan */
    font-size: 2rem;
    font-family: 'Din Alternate';
}

.table thead th {
    border-bottom: none !important;
}

.ggl-roc-section-7-menu-siege,
.ggl-roc-section-7-menu-group,
.ggl-roc-section-7-menu-final {
    cursor: pointer;
}

.ggl-roc-section-7-menu-img {
    max-width: 250px;
    width: 26vw;
    z-index: 1;
}



/* Responsive text and spacing */
@media (max-width: 767px) {

    .table-hover th,
    .table-hover td {
        padding: 2vw;
        font-size: 0.9rem;
    }

    .ggl-roc-section-7-guild-leaderboard-wrapper {
        margin-bottom: 10vw;
    }
}

/* Responsive grid */
@media (max-width: 1000px) {
    .ggl-roc-section-7-content p {
        font-size: 1.8rem;
    }

}

@media (max-width: 600px) {
    .ggl-roc-section-7-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .ggl-roc-section-7-title {
        width: 64vw;
    }

    #ggl-roc-section-4-card-desktop {
        display: none !important;
    }

    #ggl-roc-section-4-card-mobile {
        display: block !important;
    }

    .ggl-mobile-layout {
        display: block;
    }

    .mobile-siege {
        width: 33vw;
    }

    .mobile-groupstage,
    .mobile-finalstage {
        width: 34vw;
    }

    .d-flex {
        display: flex;
        justify-content: center;
    }

    .gap-3 {
        gap: 4vw;
    }

    .ggl-roc-section-4-title {
        width: 74vw;
    }

    .bracket-d {
        display: none !important;
    }
}

@media (min-width: 767px) {
    .bracket-m {
        display: none !important;
    }
}

/* Section 8 */
.ggl-roc-section-8 {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: none;
    width: 100%;
    height: 69vw;
    overflow: hidden;
    margin-top: -15vw;
}


.ggl-roc-section-8-bg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 72vw;
    object-fit: cover;
    z-index: -1;
}

.ggl-roc-section-8-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    margin-top: 5vw;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ggl-roc-section-8-title {
    max-width: 923px;
    width: 40vw;
}


.ggl-roc-section-8-logo {
    max-width: 819px;
    width: 36vw;
    position: absolute;
    margin-top: 6vw;
    animation: float 3s ease-in-out infinite;

}


.ggl-roc-section-8-btn-youtube {
    max-width: 387px;
    width: 15vw;
    margin-top: 26vw;
    cursor: pointer;
    transition-duration: 0.3s;
}

.ggl-roc-section-8-btn-youtube:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.ggl-roc-section-8-char {
    position: absolute;
    top: 16vw;
    max-width: 2560px;
    z-index: -1;
    width: 100vw;
}

.ag-fireflies_box {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes float2 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-3px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 767px) {
    .ggl-roc-section-5-title {
        width: 59vw;
    }

    .ggl-roc-section-5-point {
        background-size: 12px !important;

    }

    .ggl-roc-section-5-point-img {
        max-width: 626px;
        width: 70vw;
    }

    .ggl-roc-section-8-content {
        height: 172vw;
    }

    .ggl-roc-section-8-title {
        max-width: 923px;
        width: 83vw;
        position: absolute;
        top: 3vw;
    }

    .ggl-roc-section-8-logo {
        width: 77vw;
        top: 31vw;
    }

    .ggl-roc-section-8-btn-youtube {
        width: 40vw;
    }

    .ggl-roc-section-8-char {
        top: 51vw;
    }

}


/* FOOTER */
.btn-to-top {
    text-align: right;
    cursor: pointer;
    position: fixed;
    bottom: 1vw;
    right: 1vw;
    display: none;
    z-index: 999;
    /*padding-right: 1vw;*/
}

.btn-to-top img {
    width: 60%;
    max-width: 125px;
}

footer {
    background-color: #252525;
    border-top: 5px solid #fbd760;
    background-size: cover;
    position: relative;
    z-index: 3;
}

.row-logo {
    padding-top: 2vw;
    padding-bottom: 3vw;
}

.sosmed a {
    color: #fff;
    font-size: 24pt;
    margin-right: 1vw;
    transition-duration: 0.3s;
}

.sosmed a:hover {
    color: #fa9e25;
}

.ggl-logo {
    margin-right: 2vw;
    padding-top: 1vw;
}

.ggl-info {
    padding-top: 2vw;
    font-weight: bold;
    color: #ffe;
}

@media (max-width: 768px) {
    .ggl-info {
        font-size: 0.9rem;

    }
}

.texturebg4 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.spark {
    background-color: #cd7878;
    visibility: hidden;
    position: absolute;
    width: 4px;
    height: 7px;
    border-radius: 30%;
}

.container {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    text-align: center;
}

svg {
    z-index: 10;
    /* filter: blur(1px); */
    height: 100%;
}



.stick {
    transform: translatex(100px) translatey(360px);
    /* filter: brightness(200%); */
}

.flame {
    mix-blend-mode: screen;
}

*,
*::before,
*::after {
    box-sizing: content-box !important;
}

@media (max-width: 767px) {

    *,
    *::before,
    *::after {
        box-sizing: border-box !important;
    }
}
