.bpMainLayout {
    position: relative;
    width: 100%;
    height: 100dvh;
    padding: 50px;
    padding-bottom: 0px;

    display: flex;
    align-items: end;
    justify-content: center;
    color: #fff;

    background: url("https://img.gnjoy.in.th/2026/13/roc_BattlePassSarahandFenrir/mainBg.png");
    background-position: top;
    background-size: cover;

    overflow: hidden;
}

.bpBgObject {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    width: 100%;
    height: 100%;
}

.bpBgCharacter {
    position: absolute;
    z-index: 2;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);

    width: 1600px;
    /* max-width: 80%; */
}

.bpContentMainLayout {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 991px;
    height: 100%;
    padding: 20px;

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

.bpLogoEvent {
    width: 100%;
    max-width: 992px;
}


/* Animation  */

.magic-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.magic-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #fff, #ff0000);
    border-radius: 50%;
    animation: floatUp 10s linear infinite;
    opacity: 0.6;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0.5);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) scale(1.2);
        opacity: 0;
    }
}