.bannerFooterC {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 5;
    font-size: 18px;
    font-weight: 600;
}

.text-stroke-bold {
    color: white;
    text-shadow: -2px -2px 0 black, 2px -2px 0 black, -2px 2px 0 black, 2px 2px 0 black, 0px 2px 0 black, 2px 0px 0 black, -2px 0px 0 black, 0px -2px 0 black;
}

.gatchamanMainLayout {
    position: relative;
    width: 100%;
    height: 100dvh;
    padding: 100px 50px 50px;
    overflow: hidden;

    background: url("https://img.gnjoy.in.th/2026/13/gatchaman/bg.png");
    background-position: center;
    background-size: cover;
}

.gatchamanContentMainLayout {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 800px;
    height: 100%;

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

.gatchamanLogo {
    width: 100%;
    max-width: 200px;
}

.gatchamanTitle {
    width: 100%;
    max-width: 550px;
}

.gatchamanDateLayout {
    position: relative;
    width: 600px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px;
    background: url("../images/datelayout.png") center center / cover;
    background-position: center center;
}

.gatchamanDateLayout span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.gatchamanobject {
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 53%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
}

.gatchamanobject.top {
    top: 0;
}

.gatchamanobject.bottom {
    bottom: 0;
}

.gatchamanButton {
    width: 250px;
    height: 82px;

    transition: all .5s;
}

.gatchamanButton:hover {
    filter: drop-shadow(1px 1px 10px #b90000e3);
}

.gatchamanCharacterLayout {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 990px;
    height: 100%;

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

}

.gatchamanCharacterImg {
    width: 990px;
    height: 800px;
}

.gatchamanCharacterImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.gatchamanCharacterObject {
    position: absolute;
    z-index: 3;
    bottom: 0px;

    width: 100%;
}

/* ANIMATION  */
.sky {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.shooting-star {
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, white, transparent);
    opacity: 0;
    transform: rotate(45deg);
    animation: shoot 1s linear forwards;
}

@keyframes shoot {
    0% {
        opacity: 1;
        transform: translate(0, 0) rotate(45deg);
    }

    100% {
        opacity: 0;
        transform: translate(500px, 500px) rotate(45deg);
    }
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    opacity: 1;
    animation: explode 0.8s ease-out forwards;
}

@keyframes explode {
    to {
        transform: translate(var(--x), var(--y));
        opacity: 0;
    }
}