
body {
    padding: 16px;
    }

.hiroLogo img {
    width: 100%;
    max-width: 100px;
    height: auto;
}

.spin img {
    width: 300px;
    height: auto;
    animation: rotate-animation 5s infinite linear;
}

.spinFrame img {
    width: 320px;
    height: auto;
}

.lightBlue img {
    position: absolute;
    top: -12%;
    right: -20%;
    z-index: -1;
    width: 370px;
    animation: zoomInTitle 1s ease-in-out forwards;

}
.mascot1 img {
    width: 150px;
    height: auto;
}

.mascot1 {
    position: absolute;
    top: -25%;
    right: -8%;

    animation: moveImage 1s ease-in-out forwards;
}

.eventTitle img {
    width: 350px;
    height: auto;
}

.eventTitle {
    position: absolute;
    top: 12%;
    right: -7%;

    animation: zoomInTitle 1s ease-in-out forwards;
}

.eventTitle2 img {
    width: 350px;
    height: auto;
}

.eventTitle2{
    position: absolute;
    top: 12%;
    right: -7%;
    z-index:2;
    animation: transform-word 3s infinite linear;
    animation-delay: 2s;
    opacity: 0;
}

.discount {
    color: #992495;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    position: absolute;
    bottom: 15%;
    right: 22%;

    animation: zoomInTitle 1s ease-in-out forwards;
}

.mascot2 img {
    width: 150px;
    height: auto;
}

.mascot2 {
    position: absolute;
    bottom: -18%;
    left: -12%;
}

.eventDate h4 {
    font-weight: 900;
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(180deg, #FFE999 0%, #FFDF6B 100%);
}

.joinBtn {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
}

.Btn {
    background: linear-gradient(180deg, #FFD361 0%, #FDB600 37%, #FFBA34 100%); 
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); 
    border-radius: 3px;
    width: 150px;
}

.joinBtn a {
    text-decoration: none;
    color: #950002;
    font-size: 14px;
    font-weight: 700;
}

.gameTitle {
    color: #FFF0DB;
}

.stepcircle {
    width: 35px;
    height: 35px;
    background: linear-gradient(180deg, #FFC770 0%, #D0A45F 100%); 
    border-radius: 9999px;
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
}

.stepcircle span {
    color: white;
    font-size: 16px;
    font-weight: 700;
}

.rulesBg {
    background: linear-gradient(180deg, #FFDFAD 0%, #FFD38E 100%); 
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); 
    border-radius: 3px;
    height: 140px;
    width: 120px;
    padding: 0 4px;
}

.gameStep > div {
    margin: 6px;
}

.rulesTitle > p {
    font-size: 12px;
    color: #BB0000;
    font-weight: 700;
    margin-bottom: 2px;
}

.rulesDes > p {
    padding-top: 4px;
    font-size: 8px;
    color: #DF5900;
}
.tnc > p {
    color: white; 
    font-size: 10px; 
    margin-left: auto;
}

/* verification */

.submitBtn {
    text-decoration: none;
    background: linear-gradient(180deg, #FFD361 0%, #FDB600 37%, #FFBA34 100%); 
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); 
    border-radius: 3px;
    width: 135px;
    height: 35px;
    border: none;
    color: #950002;
    font-weight: 700;
}

.verifytnc > p {
    color: white; 
    font-size: 10px; 
    margin-left: auto;
}


/* animation */

.spinFrame {
    animation: zoomInTitle 1s ease-in-out forwards;
}

.lightBlue {
    animation: light-rotate 5s infinite linear;
}

.mascot1 {
    animation: bounce-animation 2s infinite linear;
}

@keyframes zoomInTitle {
    0% {
        transform: scale(0);
        
    }
    100% {
        transform: scale (1.0);
    }
}

@keyframes moveImage {
    0% {
        top: -100%;
    }
    
}

@keyframes rotate-animation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes light-rotate {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes bounce-animation {
    0%   { transform: translateY(0); }
    25% { transform: translateY(-20px); }
    50% { transform: translateY(0px); }
    75% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes transform-word{
    0% {opacity:0}
    25% {opacity:0.75}
    50% {opacity:1}
    75% {opacity:0.25}
    100% {opacity:0}
}

@media (max-width: 575px) {
    .frame {
        border: solid 2px #FBCC88;
        box-sizing: border-box;
        border-radius: 10px;
        width: auto;
        }

    /* verification */

    .verifytnc > p {
        color: white; 
        font-size: 10px; 
        margin-left: auto;
    }

    .verifyForm {
        width: 100%;
        max-width: 360px;
    }
}

@media (min-width: 575px) {
    
    .frame {
        border: solid 2px #FBCC88;
        box-sizing: border-box;
        border-radius: 10px;
        width: auto;
        }

    .hiroLogo img {
        width: 100%;
        max-width: 125px;
        height: auto;
    }
    
    .spin img {
        width: 325px;
        height: auto;
        animation: rotate-animation 5s infinite linear;
    }
    
    .spinFrame img {
        width: 345px;
        height: auto;
    }

    .eventTitle img {
        width: 375px;
        height: auto;
    }

    .eventTitle2 img {
        width: 375px;
        height: auto;
    }

    .mascot1 img {
        width: 175px;
        height: auto;
    }

    .mascot2 img {
        width: 175px;
        height: auto;
    }

    .welcome span {
        font-size: 18px;
    }

    .des span {
        font-size: 12px;
    }

    .Btn a {
        text-decoration: none;
        color: #950002;
        font-size: 16px;
        font-weight: 700;
    }

    .rulesBg {
        background: linear-gradient(180deg, #FFDFAD 0%, #FFD38E 100%); 
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); 
        border-radius: 3px;
        height: 195px;
        width: 135px;
        padding: 0 6px;
    }

    .rulesDes > p {
        font-size: 12px;
        color: #DF5900;
    }

    .tnc > p {
        color: white; 
        font-size: 12px; 
        margin-left: auto;
    }

    /* verification */
    .verifyForm{
        width: 360px;
    }
}