.mainLayout {
    position: relative;
    width: 100%;
    /* min-height: 100dvh; */
    min-height: calc(var(--vh, 1vh) * 100);
    background: #000;
}

.objectBgMain {
    position: absolute;
    z-index: 1;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 2400px;
    filter: drop-shadow(1px 1px 10px #ffd78ece);
}

.objectBgMain img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ======================
        Banner 
====================== */
.bannerMainLayout {
    position: relative;
    width: 100%;
    /* min-height: 100dvh; */
    min-height: calc(var(--vh, 1vh) * 100);

    overflow: hidden;
}

.bannerMainContentLayout {
    position: relative;
    z-index: 3;
    width: 100%;
    /* min-height: 130dvh; */
    /* min-height: 150dvh; */
    min-height: calc(var(--vh, 1vh)*150);
    /* min-height: calc(var(--vh, 1dvh) * 150); */
    padding: 50px 20px;
    padding-bottom: 165px;

    background: url("../images/background/bannerFront.png");
    background-position: top;
    background-size: cover;

    display: flex;
    align-items: start;
    justify-content: center;
}

/* Header  */
.bannerHeaderMainLayout {
    position: relative;
    z-index: 6;
    width: 100%;
    min-height: 200px;
    padding: 20px;


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

.bannerHeader_logo {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0px 0px 20px #fff);
}

.bannerHeader_title {
    width: 500px;
    filter: drop-shadow(0px 0px 5px #fff);
}

.bannerHeader_layersLayout {
    width: 410px;
    height: 80px;
    padding: 16px 20px 32px 33px;

    background: url("../images/banner/layers.png");
    background-position: center;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    font-family: "DB_Helvethaica_X", sans-serif;
    font-size: 30px;
    line-height: 20px;
    text-transform: uppercase;
    color: #eafbff;
}

/* ======================
        Tournament 
====================== */
.tournamentMainLayout {
    position: relative;
    z-index: 11;
    overflow: hidden;

    /* margin-top: -45dvh;
    min-height: 150dvh; */
    margin-top: calc(var(--vh, 1vh) * -45);
    /* min-height: 150dvh; */
    min-height: calc(var(--vh, 1vh)*150);

    width: 100%;
    padding: 50px;
    padding-top: 480px;

    background: url("../images/background/tournament.png");
    background-position: center top;
    background-size: cover;

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

.tournamentTitleLayout {
    width: 100%;
    max-width: 350px;
}

.tournamentContentMainLayout {
    position: relative;
    z-index: 2;

    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}



.tournamentTeam {
    width: 350px;

    border: 1px solid transparent;
    background: transparent;

    filter: drop-shadow(1px 1px 20px transparent);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.tournamentTeam img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tournamentTeam:hover {
    transform: scale(1.05);
    filter: drop-shadow(0px 0px 20px #ffb444);
}

.tournamentTeam:active {
    transform: scale(1.00);
    border: 1px solid transparent;
    filter: drop-shadow(0px 0px 20px #ffd5b4);
}

.tournamentTeam.rcc {
    margin-top: 50px;
}


/* ======================
   Tournament Modal 
====================== */
.tournamentROSModal {
    overflow: hidden !important;
}

.modalCloseBtn {
    position: absolute;
    top: 50px;
    right: 10px;
    z-index: 10;

    width: 40px;
    height: 40px;
    border-radius: 50px;

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

    background: #00000096;
    border: 2px solid #494949;
    box-shadow: 1px 1px 2px #6d6d6dea;
    color: #b3b3b3;

    font-size: 20px;
}

.tournamentModal .modal-content {
    background: #000;
}

/* background layer */
.modalVideoBg.tournamentROSModal {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* video */
.modalVideoBg.tournamentROSModal video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.40);
}

.tournamentModal_contentMainLayout {
    position: absolute;
    z-index: 4;
    bottom: 20px;
    right: 20px;

    width: 100%;
    max-width: 950px;
    min-height: 350px;
    padding: 20px 0px;

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

    color: #fff;
}

.modalBg {
    position: absolute;
    z-index: 2;
    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;
    padding: 50px;
    overflow: hidden;

    display: flex;
    align-items: end;
    justify-content: end;

    color: #fff;
}

.modalBg.tournamentROSModal {
    background: url("../images/tournament/ros_bg.png");
    background-position: center;
    background-size: cover;
}

.modalBg.tournamentRCCModal {
    background: url("../images/tournament/rcc_bg.png");
    background-position: center;
    background-size: cover;
}

.modalBg.tournamentROLModal {
    background: url("../images/tournament/rol_bg.png");
    background-position: center;
    background-size: cover;
}

.modalTourCharacter {
    display: none;
}

.tourModalLogo {
    width: 100%;
    max-width: 450px;
}

.tourModalContent {
    width: 100%;
    max-width: 650px;

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

.btnTournamentModal {
    width: 250px;
    height: 80px;
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: url("../images/tournament/btn.png");
    background-position: center;
    background-size: cover;
    border: 1px solid transparent;

    filter: drop-shadow(1px 1px 20px transparent);
    transition: transform 0.6s ease, filter 0.6s ease;

    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-shadow: 2px 2px 1px #000;
}

.btnTournamentModal:hover {
    transform: scale(1.05);
    filter: drop-shadow(0px 0px 20px #ffb444);
}

.btnTournamentModal:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    filter: grayscale(100%) brightness(0.6);
    pointer-events: none;
}

.btnTournamentModal:disabled:hover,
.btnTournamentModal:disabled:active {
    transform: none;
    filter: grayscale(100%) brightness(0.6);
}

.btnTournamentModal:disabled span {
    color: #c0c0c0;
}

.modalFooterObject {
    display: none;
}

.carousel-nav {
    display: none;
}

.carousel-track {
    position: relative;
    z-index: 2;

    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}