.btnPrimary {
    width: 200px;
    height: 50px;
    padding: 10px 20px;
    border: 0px solid transparent;

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

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

    font-family: "PSL SimilanyaExtra Pro", sans-serif;
    color: #fff;
    font-size: 22px;
    line-height: 22px;
    letter-spacing: 1px;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.btnPrimary:hover {
    transform: translateY(-3px) scale(1.03);
    filter:
        drop-shadow(0 0 10px rgba(70, 166, 255, 0.45)) drop-shadow(0 0 5px rgba(68, 173, 233, 0.35));
}

.btnPrimary:active {
    transform: translateY(0) scale(.98);
    transition-duration: .08s;
}

.gradientText {
    background: linear-gradient(180deg,
            rgba(2, 3, 77, 1) 0%,
            rgba(19, 217, 250, 1) 100%);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Button Navbar Right  */
.locationPopupBtnLayout {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translate(0%, -50%);
    z-index: 20;

    width: fit-content;
    min-width: 100px;
    min-height: 100px;
    padding: 10px;

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

.bp_btnPrimary {
    width: 110px;
    height: 110px;
}

.bp_btnPrimary img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .5s ease;
    filter:
        drop-shadow(0 0 0 rgba(170, 230, 255, 0)) brightness(1);
}

.bp_btnPrimary:hover img {
    transform:
        translateY(-8px) scale(1.08);
    filter:
        brightness(1.08) drop-shadow(0 0 10px rgba(150, 220, 255, .45)) drop-shadow(0 0 22px rgba(180, 240, 255, .3));
}

.bp_btnPrimary:active img {
    transform:
        translateY(-2px) scale(.96);
    transition: .08s;
}


/* Content  */

.talesLP_logoGame {
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 15px;

    width: 100px;
}

.talesLandingpageMainLayout {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    padding: 50px 100px;

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

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

    font-family: "PSL SimilanyaExtra Pro", sans-serif;
    color: #fff;
    font-size: 18px;
}

.talesLandingpageObject {
    position: absolute;
    z-index: 1;
    bottom: -200px;
    left: -150px;

    width: 400px;
}

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

    width: 100%;
    min-height: 100%;
    overflow: hidden;
}

.talesLandingpageCharacter {
    position: absolute;
    z-index: 2;
    top: 0px;
    right: -50px;

    width: 100%;
    height: 100%;
}

.talesLandingpageCharacter img {
    width: 100%;
    height: 130%;
    object-fit: cover;
}

.talesLandingpageContentMainLayout {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 769px;
    min-height: 200px;

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

.talesLP_logo {
    width: 100%;
    max-width: 600px;
}

.event-banner {
    width: 100%;
    max-width: 640px;
    padding: 5px 20px;
    text-align: center;
    border-radius: 6px;
    background: linear-gradient(90deg,
            rgba(43, 42, 82, 0) 0%,
            rgba(91, 90, 134, 0.55) 15%,
            #5b5a86 30%,
            #2b2a52 50%,
            #5b5a86 70%,
            rgba(91, 90, 134, 0.55) 85%,
            rgba(43, 42, 82, 0) 100%);
}

.event-banner span {
    display: block;
    color: #ffffff;
    font-size: 20px;
    line-height: 22px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.3px;
}


.snow-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}

.snowflake {
    position: absolute;
    top: -20px;

    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    user-select: none;

    animation-name: snowfall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;

    filter: drop-shadow(0 0 4px rgba(255, 255, 255, .4));
}

@keyframes snowfall {
    0% {
        opacity: 0;
        transform:
            translate3d(0, 0, 0) rotate(0deg) scale(var(--scale));
    }

    10% {
        opacity: var(--opacity);
    }

    100% {
        opacity: 0;
        transform:
            translate3d(var(--drift), 120vh, 0) rotate(var(--rotate)) scale(var(--scale));
    }
}


.talesLandingpageContentMainLayoutMb {
    display: none;
}

/* ≤ 1400px */
@media (max-width: 1399.98px) {}

/* ≤ 1200px */
@media (max-width: 1199.98px) {}

/* ≤ 992px */
@media (max-width: 991.98px) {
    .talesLandingpageCharacter {
        right: 0px;
    }

    .talesLandingpageMainLayout {
        padding: 50px 20px;
    }
}

/* ≤ 768px */
@media (max-width: 767.98px) {
    .event-banner span {
        font-size: 17px;
        line-height: 20px;
    }

    .locationPopupBtnLayout {
        position: absolute;
        right: 50%;
        top: 0;
        transform: translate(50%, 0%);
        z-index: 20;

        flex-direction: row;
    }
}

/* ≤ 576px */
@media (max-width: 575.98px) {
    .talesLP_logoGame {
        position: relative;
        z-index: 2;
        top: 0px;
        left: 0px;

        width: 100px;
    }

    .talesLandingpageContentMainLayout {
        justify-content: space-between;
        min-height: calc(100dvh - 100px);

        padding-top: 60px;
    }

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

    .btnPrimary {
        width: 180px;
        height: 45px;
        padding: 10px;
        font-size: 18px;
        line-height: 21px;
    }

    .bp_btnPrimary {
        width: 90px;
        height: 90px;
    }

    .locationPopupBtnLayout {
        position: absolute;
        right: 50%;
        top: 0;
        transform: translate(50%, 0%);
        z-index: 20;

        flex-direction: row;
    }
}

@media (max-width: 397px) {
    .locationPopupBtnLayout {
        display: none;
    }

    .talesLandingpageContentMainLayout {
        padding-top: 0px;
    }

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