/* Header Section */
.event_header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.header_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.header_logo {
    display: flex;
    align-items: center;
    background: #fffbe9;
    padding: 4px 15px;
    border-radius: 30px;
}

.header_center {
    background-image: url("../images/events/bg-header.png");
    background-size: cover;
    background-position: center;
    width: 100%;
    max-width: 825px;
    height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_nav {
    display: flex;
    gap: 1px;
    align-items: center;
}

.nav_item {
    position: relative;
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
    background-image: url("../images/events/bg-button-header.png");
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.03rem;
    width: 173px;
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-streetsign);
    cursor: pointer;
    text-shadow: 2px 2px 2.3px rgba(118, 0, 0, 0.25);
}

.header_register {
    position: relative;
}

.register_btn {
    position: relative;
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 24px;
    font-family: var(--font-streetsign);
    background-image: url("../images/events/register.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 283px;
    height: 99px;
    text-transform: uppercase;
    letter-spacing: 0.03rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: buttonPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 2.3px rgba(118, 0, 0, 0.25);
}

.register_arrow {
    position: absolute;
    right: 13px;
    top: 100%;
    transform: translateY(-50%);
    animation: arrowMove 2s ease-in-out infinite;
}

.register_dots {
    position: absolute;
    right: 60px;
    top: 70%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.register_dots .dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff6e5, #ffc68e);

    z-index: 1;
}

.dot::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 198, 142, 0.6) 35%,
        rgba(255, 198, 142, 0.25) 55%,
        rgba(255, 198, 142, 0) 70%
    );

    filter: blur(6px);
    opacity: 0.9;

    z-index: -1;
}

.dot:nth-child(1) {
    background: linear-gradient(135deg, #fff6e5, #ffc68e);
}

.dot::before {
    animation: glow-ring 2.8s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes buttonScale {
    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.05);
    }

    75% {
        transform: scale(0.98);
    }
}

@keyframes arrowMove {
    0%,
    100% {
        transform: translate(0, -50%);
    }

    50% {
        transform: translate(-8px, -65%);
    }
}

@keyframes glow-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
        filter: blur(4px);
    }

    50% {
        transform: scale(1.6);
        opacity: 1;
        filter: blur(6px);
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
        filter: blur(4px);
    }
}

@keyframes scrollBounce {
    0%,
    100% {
        bottom: 15%;
    }

    50% {
        bottom: 20%;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header_nav {
        gap: 15px;
    }

    .nav_item {
        padding: 12px 25px;
        font-size: 14px;
    }

    .register_btn {
        padding: 15px 35px;
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .header_content {
        flex-wrap: wrap;
        gap: 20px;
    }

    .header_nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header_nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav_item {
        padding: 10px 20px;
        font-size: 13px;
    }

    .register_btn {
        padding: 12px 30px;
        font-size: 15px;
    }

    .header_logo img {
        height: 40px;
    }
}

/* Header Banner */
.header_banner {
    width: 100%;
}

.banner_img {
    width: 100%;
    display: block;
}

.banner_scroll {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

.btn_scroll {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.banner_icon_chat {
    width: 213px;
    height: 190px;
    position: absolute;
    bottom: 30%;
    left: 5%;
    z-index: 10;
}
.banner_icon_chat img {
    width: 100%;
    height: auto;
    display: block;
}
/* Register Form Section */
.register_form_section {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.register_form_section.active {
    display: flex;
}

.register_container {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    background-image: url("../images/events/bg-form-popup.png");
    background-size: cover;
    background-position: center;
}

.register_title {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: buttonPulseForm 2s ease-in-out infinite;
}

.close_modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border: 3px solid #ffd700;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
}

.close_modal:hover {
    transform: rotate(90deg) scale(1.1);
    background: linear-gradient(135deg, #ff8c42 0%, #ffd700 100%);
}

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

.register_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
}

.register_decorations {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.lantern_bottom {
    position: absolute;
    left: 2%;
    top: 73px;
    width: 150px;
    height: auto;
    z-index: 1;
    animation: swingLantern 3s ease-in-out infinite;
    transform-origin: top center;
}

.lantern_top {
    position: absolute;
    left: 11%;
    top: -95px;
    width: 120px;
    height: auto;
    z-index: 1;
    animation: swingLantern 3.5s ease-in-out infinite;
    transform-origin: top center;
}

.coins_decoration {
    position: absolute;
    right: -50px;
    bottom: 100px;
    width: 180px;
    height: auto;
    z-index: 3;
}

.lion_decoration {
    position: absolute;
    right: 80px;
    bottom: 50px;
    width: 250px;
    height: auto;
    z-index: 3;
}

.register_form_wrapper {
    padding: 110px 155px 0;
    position: relative;
    min-width: 1200px;
    min-height: 750px;
    display: flex;
    gap: 25px;
}

.form_left {
    flex: 0 0 380px;
    z-index: 2;
}

.form_group_event {
    margin-bottom: 10px;
}

.form_label {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #810d0d;
    margin-bottom: 7px;
}

.form_input_event {
    width: 100%;
    padding: 16px 33px;
    border: none;
    border-radius: 20px;
    font-size: 15px;
    background: #ffffff;
    color: #810d0d;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 6.1px 0px rgba(255, 15, 15, 0.33),
        inset 6px -6px 6px 0px rgba(255, 188, 188, 0.3),
        inset -6px 6px 5.8px 0px rgba(255, 210, 210, 0.3),
        inset 0px 0.6px 0.6px 0px rgba(255, 246, 0, 0.13);
    font-weight: 600;
}

select.form_input_event {
    padding-right: 45px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23810D0D' d='M1.41 0L6 4.59 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.form_input_event:focus {
    outline: none;
    box-shadow: 0px 0px 15px 0px rgba(255, 15, 15, 0.5),
        inset 6px -6px 6px 0px rgba(255, 188, 188, 0.3),
        inset -6px 6px 5.8px 0px rgba(255, 210, 210, 0.3);
}

.form_input_event::placeholder {
    font-weight: 600;
}

.form_input_event::placeholder {
    color: #810d0d;
    opacity: 0.6;
    font-weight: 500;
}

.form_note {
    font-size: 12px;
    color: #810d0d;
    margin-top: 11px;
    font-weight: 400;
    text-align: end;
}

.form_right {
    display: flex;
    z-index: 2;
}

.services_wrap {
    position: relative;
    width: 360px;
    height: 420px;
}

.service_item {
    position: absolute;
    width: 140px;
    height: 140px;
    background-image: url("../images/events/bg-item-service-focus.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.service_item span {
    font-family: var(--font-streetsign);
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    color: #fff4ac;
    line-height: 1.2;
    letter-spacing: 0.03rem;
    text-shadow: 1px 1px 2.1px rgba(251, 67, 0, 1);
}

/* Trung tâm */
.s3 {
    top: 115px;
    left: 125px;
}

/* Trên */
.s1 {
    top: -15px;
    left: 125px;
}

/* Trái trên */
.s2 {
    top: 50px;
    left: 33px;
}

/* Trái dưới */
.s4 {
    top: 185px;
    left: 32px;
}

/* Phải dưới */
.s5 {
    top: 185px;
    left: 213px;
}

/* Dưới */
.s6 {
    top: 250px;
    left: 125px;
}

.message_service {
    position: absolute;
    top: 13%;
    right: 14%;
    min-height: 230px;
    min-width: 230px;
    background-image: url("../images/events/Union.png");
    display: flex;
    align-items: center;
    justify-content: center;
}

.message_service span {
    color: #ffffff;
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    line-height: 1.4;
    padding: 32px 19px;
    max-width: 230px;
    font-family: var(--font-streetsign);
    letter-spacing: 0.03rem;
    text-shadow: 1px 1px 2.1px rgba(251, 67, 0, 1);
}

.submit_btn {
    position: absolute;
    bottom: 23%;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    background: none;
    border: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 24px;
    font-family: var(--font-streetsign);
    background-image: url("../images/events/register.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 278px;
    height: 96px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: buttonPulseForm 2s ease-in-out infinite;
    transition: all 0.3s ease;
    z-index: 999;
}

@keyframes swingLantern {
    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

@keyframes swingLanternOne {
    0%,
    100% {
        transform: rotate(-1deg);
    }

    50% {
        transform: rotate(1deg);
    }
}

@keyframes buttonPulseForm {
    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }
}
.register_form_section_mobile {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.register_form_section_mobile.active {
    display: block;
}

.register_container_mobile {
    width: 100%;
    height: 100%;
    max-width: 80%;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.register_title_mobile_image {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.register_title_mobile_image img {
    width: 100%;
    height: 100%;
}

.register_title_mobile {
    position: absolute;
    top: -2%;
    width: 100%;
    z-index: 3;
    animation: buttonPulseFormMobile 2s ease-in-out infinite;
}

.close_modal_mobile {
    position: absolute;
    top: 25%;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border: 2px solid #ffd700;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
}

.close_modal_mobile:hover {
    transform: rotate(90deg) scale(1.1);
    background: linear-gradient(135deg, #ff8c42 0%, #ffd700 100%);
}

.register_title_mobile img {
    width: 100%;
    height: auto;
}

.register_content_mobile {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 60%;
}

.register_decorations_mobile {
    width: 100%;
    position: relative;
}

.lantern_bottom_mobile {
    position: absolute;
    left: 5%;
    top: 20px;
    width: 80px;
    height: auto;
    z-index: 1;
    animation: swingLanternMobile 3s ease-in-out infinite;
    transform-origin: top center;
}

.lantern_top_mobile {
    position: absolute;
    left: 15%;
    top: -40px;
    width: 60px;
    height: auto;
    z-index: 1;
    animation: swingLanternMobile 3.5s ease-in-out infinite;
    transform-origin: top center;
}

.register_form_wrapper_mobile {
    padding: 40px 20px 0;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.form_left_mobile {
    width: 100%;
    z-index: 2;
}

.form_group_event_mobile {
    margin-bottom: 15px;
}

.form_label_mobile {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 3rem;
    color: #810d0d;
    margin-bottom: 6px;
}

.form_input_event_mobile {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 18px;
    font-size: 3rem;
    background: #ffffff;
    color: #810d0d;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 6.1px 0px rgba(255, 15, 15, 0.33),
        inset 6px -6px 6px 0px rgba(255, 188, 188, 0.3),
        inset -6px 6px 5.8px 0px rgba(255, 210, 210, 0.3),
        inset 0px 0.6px 0.6px 0px rgba(255, 246, 0, 0.13);
    font-weight: 600;
}

select.form_input_event_mobile {
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23810D0D' d='M1.41 0L6 4.59 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.form_input_event_mobile:focus {
    outline: none;
    box-shadow: 0px 0px 15px 0px rgba(255, 15, 15, 0.5),
        inset 6px -6px 6px 0px rgba(255, 188, 188, 0.3),
        inset -6px 6px 5.8px 0px rgba(255, 210, 210, 0.3);
}

.form_input_event_mobile::placeholder {
    color: #810d0d;
    opacity: 0.6;
    font-weight: 500;
}

.form_note_mobile {
    font-size: 2rem;
    color: #810d0d;
    margin-top: 8px;
    font-weight: 400;
    text-align: end;
}

.information_modal_error_mobile {
    color: #ff4444;
    font-size: 1.5rem;
    text-align: center;
    margin-top: 10px;
    display: none;
}

.submit_btn_mobile {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    cursor: pointer;
    background: none;
    border: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 1.6rem;
    font-family: var(--font-streetsign);
    background-image: url("../images/events/register.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 250px;
    height: 90px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: buttonPulseFormMobile 2s ease-in-out infinite;
    transition: all 0.3s ease;
    z-index: 999;
    margin: 20px auto 0;
}

.submit_btn_mobile:hover {
    transform: scale(1.05);
}

@keyframes swingLanternMobile {
    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

@keyframes buttonPulseFormMobile {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 480px) {
    .register_title_mobile img {
        max-width: 220px;
    }

    .register_form_wrapper_mobile {
        padding: 30px 15px 0;
    }

    .form_input_event_mobile {
        padding: 10px 18px;
        font-size: 13px;
    }

    .form_label_mobile {
        font-size: 13px;
    }

    .submit_btn_mobile {
        width: 180px;
        height: 60px;
        font-size: 16px;
    }

    .lantern_bottom_mobile {
        width: 60px;
    }

    .lantern_top_mobile {
        width: 50px;
    }
}
/* Lucky Draw Section */
.lucky_draw_section {
    width: 100%;
    position: relative;
    margin: -18% auto 0 auto;
}

.lucky_draw {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.lucky_form {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
}

.lucky_form_bg {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
}

.img-cloud {
    width: 332px;
    height: 408px;
    position: absolute;
    top: 140px;
    left: -20px;
    z-index: 2;
}

.img-cloud img {
    width: 100%;
    height: auto;
    display: block;
}

.img-lixi {
    position: absolute;
    bottom: 75px;
    left: -20px;
    z-index: 3;
}

.img-lixi img {
    width: 100%;
    height: auto;
    display: block;
}

.img-lac-que {
    width: fit-content;
    height: auto;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    cursor: pointer;
    transform-origin: center bottom;
    z-index: 2;
}

.img_lac_que_relative {
    position: relative;
}

.img-lac-que.animating {
    animation: lac-qua-lac-lai 4s ease-in-out;
}

.click_draw_btn {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.img-lac-que.animating .click_draw_btn {
    opacity: 0;
    pointer-events: none;
}

.draw_arrow {
    position: absolute;
    right: 38%;
    top: 68%;
    transform: translateY(-50%);
    animation: arrowMove 2s ease-in-out infinite;
}

.draw_dots {
    position: absolute;
    right: 51%;
    top: 57%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.draw_dots .dot {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff6e5, #ffc68e);

    z-index: 1;
}

.dot::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 198, 142, 0.6) 35%,
        rgba(255, 198, 142, 0.25) 55%,
        rgba(255, 198, 142, 0) 70%
    );

    filter: blur(6px);
    opacity: 0.9;

    z-index: -1;
}

.dot:nth-child(1) {
    background: linear-gradient(135deg, #fff6e5, #ffc68e);
}

.dot::before {
    animation: glow-ring 2.8s ease-in-out infinite;
}

@keyframes arrowMove {
    0%,
    100% {
        transform: translate(0, -50%);
    }

    50% {
        transform: translate(-8px, -65%);
    }
}

@keyframes lac-qua-lac-lai {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }

    10% {
        transform: translateX(-50%) rotate(-15deg);
    }

    20% {
        transform: translateX(-50%) rotate(15deg);
    }

    30% {
        transform: translateX(-50%) rotate(-12deg);
    }

    40% {
        transform: translateX(-50%) rotate(12deg);
    }

    50% {
        transform: translateX(-50%) rotate(-10deg);
    }

    60% {
        transform: translateX(-50%) rotate(10deg);
    }

    70% {
        transform: translateX(-50%) rotate(-8deg);
    }

    80% {
        transform: translateX(-50%) rotate(8deg);
    }

    90% {
        transform: translateX(-50%) rotate(-4deg);
    }

    95% {
        transform: translateX(-50%) rotate(2deg);
    }

    100% {
        transform: translateX(-50%) rotate(0deg);
    }
}

@keyframes glow-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
        filter: blur(4px);
    }

    50% {
        transform: scale(1.6);
        opacity: 1;
        filter: blur(6px);
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
        filter: blur(4px);
    }
}

/* Modal Styles */
.lucky_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lucky_modal.show {
    display: flex;
}

.lucky_modal_content {
    position: relative;
    max-width: 1000px;
    width: 90%;
    animation: modalFadeIn 0.4s ease-out;
}

.lucky_modal_content img {
    width: 100%;
    height: auto;
    display: block;
}

.lucky_modal_close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: transform 0.2s ease;
}

.lucky_modal_close:hover {
    transform: scale(1.1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Information Form Modal */
.information_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.information_modal.active {
    display: flex;
}

.information_modal_content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    animation: modalFadeIn 0.4s ease-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.information_modal_title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.information_modal_content input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.information_modal_content input:focus {
    outline: none;
    border-color: #667eea;
}

.information_modal_content input.error {
    border-color: #ff4444;
}

.service_interest_wrapper {
    margin-bottom: 20px;
}

.service_interest_title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service_interest_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.service_interest_button {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
}

.service_interest_button:hover {
    border-color: #667eea;
    background: #f0f4ff;
}

.service_interest_button.active {
    background: #667eea;
    color: #fff;
    border-color: #667eea;
}

.information_modal_actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.information_modal_btn {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.information_modal_btn_submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.information_modal_btn_submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.information_modal_btn_submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.information_modal_btn_cancel {
    background: #e0e0e0;
    color: #333;
}

.information_modal_btn_cancel:hover {
    background: #d0d0d0;
}

.information_modal_error {
    color: #ff4444;
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
    display: none;
}

.information_modal_error.show {
    display: block;
}

.spin_loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 8px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Already Joined Modal */
.modal-already-joined {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-already-joined.show {
    display: flex;
}

.modal-already-joined-content {
    position: relative;
    max-width: 1000px;
    width: 90%;
    animation: modalFadeIn 0.4s ease-out;
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
}

.modal-already-joined-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: transform 0.2s ease;
}

.modal-already-joined-close:hover {
    transform: scale(1.1);
}

.modal-already-joined-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.modal-already-joined-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin: 20px 0;
    font-family: var(--font-streetsign);
    text-transform: uppercase;
}

.modal-already-joined-message {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.lucky_modal_result_info {
    position: absolute;
    left: 50%;
    bottom: 16%;
    transform: translateX(-50%);
    padding: 20px;
    text-align: center;
    min-height: 260px;
    font-family: var(--font-streetsign);
}

.lucky_modal_reward_name {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 15px 0;
    text-transform: uppercase;
}

.lucky_modal_reward_desc {
    font-size: 2rem;
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    color: #ea6122;
    line-height: 1.6;
    text-transform: uppercase;
}

/* Lucky List Modal Styles */
.lucky-list-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lucky-list-modal.active {
    display: flex;
    opacity: 1;
}

.lucky-list-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.lucky-list-modal-content {
    position: relative;
    width: 85%;
    max-width: 900px;
    max-height: 80vh;
    margin: auto;
    background: linear-gradient(180deg, #fff6eb 0%, #ffe3cc 100%);
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lucky-list-modal-header {
    padding: 24px 32px;
    border-bottom: 2px solid rgba(255, 114, 92, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, #ff9a7d 0%, #ff5a5f 100%);
}

.lucky-list-modal-title {
    font-family: var(--font-streetsign);
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.lucky-list-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.lucky-list-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.lucky-list-modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

.lucky-list-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px 32px;
}

.lucky-list-modal-body::-webkit-scrollbar {
    width: 8px;
}

.lucky-list-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 153, 120, 0.1);
    border-radius: 10px;
}

.lucky-list-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 97, 80, 0.6);
    border-radius: 10px;
}

.lucky-list-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 97, 80, 0.8);
}

.lucky-list-modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #f05b63;
    font-family: var(--font-streetsign);
    font-size: 18px;
    text-transform: uppercase;
}

.lucky-list-modal-loading.hidden {
    display: none;
}

.lucky-list-modal-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 97, 80, 0.2);
    border-top-color: #ff6150;
    border-radius: 50%;
    animation: lucky-list-spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes lucky-list-spin {
    to {
        transform: rotate(360deg);
    }
}

.lucky-list-modal-list {
    display: grid;
    gap: 16px;
}

.lucky-list-modal-row {
    max-width: none;
    grid-template-columns: 2fr 3fr auto;
    column-gap: 16px;
    background: linear-gradient(90deg, #ffffff 0%, #fff6eb 100%);
    border-radius: 40px;
    padding-left: 25px;
    padding-right: 25px;
    height: 67px;
    box-shadow: 0 4px 12px rgba(255, 114, 92, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lucky-list-modal-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 114, 92, 0.25);
}

.lucky-list-modal-row .lucky-list-row-email {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lucky-list-modal-row .lucky-list-row-reward {
    align-items: flex-end;
    text-align: right;
    min-width: 0;
    overflow: hidden;
}

.lucky-list-modal-row .lucky-list-row-reward .reward-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    display: block;
    text-align: right;
}

.lucky-list-modal-row .lucky-list-row-reward .voucher-text {
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lucky-list-modal-row .lucky-list-row-reward > span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lucky-list-modal-row .lucky-list-row-icon {
    width: 32px;
    height: 32px;
}

.lucky-list-modal-empty {
    text-align: center;
    padding: 60px 20px;
    color: #f05b63;
    font-family: var(--font-streetsign);
    font-size: 20px;
    text-transform: uppercase;
}

.lucky-list-modal-skeleton-item {
    max-width: none;
    grid-template-columns: 2fr 3fr auto;
    column-gap: 16px;
    background: linear-gradient(90deg, #ffffff 0%, #fff6eb 100%);
    border-radius: 24px;
    padding: 16px 24px;
    box-shadow: 0 4px 12px rgba(255, 114, 92, 0.15);
}

.lucky-list-modal-skeleton-line {
    height: 14px;
    background: linear-gradient(90deg, #e8e8e8 25%, #f0f0f0 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

.lucky-list-modal-skeleton-item
    > div:first-child
    .lucky-list-modal-skeleton-line:first-child {
    width: 85%;
    height: 16px;
}

.lucky-list-modal-skeleton-item
    > div:first-child
    .lucky-list-modal-skeleton-line:nth-child(2) {
    width: 60%;
    height: 12px;
    margin-top: 6px;
}

.lucky-list-modal-skeleton-item
    > div:nth-child(2)
    .lucky-list-modal-skeleton-line {
    width: 95%;
    height: 12px;
    margin-top: 6px;
}

.lucky-list-modal-skeleton-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(90deg, #e8e8e8 25%, #f0f0f0 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    border-radius: 50%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
    to {
        background-position: -200% 0;
    }
}

@media (max-width: 768px) {
    .lucky-list-modal-content {
        width: 90%;
        max-height: 85vh;
        border-radius: 24px;
    }

    .lucky-list-modal-header {
        padding: 20px 24px;
    }

    .lucky-list-modal-title {
        font-size: 22px;
    }

    .lucky-list-modal-body {
        padding: 20px 24px;
    }

    .lucky-list-modal-row {
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .lucky-list-modal-title {
        font-size: 18px;
    }

    .lucky-list-modal-row {
        padding: 12px 16px;
    }
}

.lucky-list-footer {
    position: absolute;
    bottom: 15%;
    transform: translateX(-60px);
    width: 90%;
    display: flex;
    justify-content: flex-end;
}

.lucky-list-btn {
    width: 220px;
    height: 64px;
    background: url(./images/nut.png) center / contain no-repeat;
    border: none;
    cursor: pointer;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 8px 14px rgba(255, 97, 80, 0.35));
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
    animation: lucky-list-btn-pulse 3s ease-in-out infinite;
    will-change: transform, filter;
}

.lucky-list-btn:hover {
    animation: none;
    transform: scale(1.12);
    filter: drop-shadow(0 12px 22px rgba(255, 97, 80, 0.55));
}

.lucky-list-btn:focus {
    outline: none;
}

.lucky-list-btn:focus-visible {
    animation: none;
    transform: scale(1.1);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.7),
        0 0 0 6px rgba(255, 120, 90, 0.85);
}

.lucky-list-btn:active {
    animation: none;
    transform: scale(0.9) translateY(2px);
    filter: drop-shadow(0 3px 6px rgba(255, 97, 80, 0.4));
    transition: transform 0.1s ease-out, filter 0.1s ease-out;
}

@keyframes lucky-list-btn-pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}
.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prize-structure-section {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    margin: 0 auto;
    background: url(./images/bgcocau.svg) center center no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
    overflow: hidden;
}

.icon_lantern_v2 {
    position: absolute;
    top: 30px;
    left: -250px;
    z-index: 1;
}

.icon_coin {
    position: absolute;
    top: -55px;
    left: 80%;
    z-index: 1;
}

.prize-structure-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    /* height: 85vh; */
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Prize Content - 2 Columns Layout */
.prize-content {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
    width: 100%;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Column - Prizes */
.prizes-column {
    flex: 1;
    width: 50%;
}

.prize-title {
    font-family: var(--font-streetsign);
    font-weight: 400;
    font-size: 70px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #df3736 0%, #ff811a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 auto 40px;
    text-align: center;
}

/* Prizes Grid - 3 columns x 3 rows */
.prizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    height: 600px;
    transform: translateY(-40px);
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px;
}

.prizes-grid::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
    width: 0;
    height: 0;
}

/* Right Column - Rules */
.rules-column {
    flex: 1;
    position: relative;
    min-height: 600px;
    height: 600px;
}

.rules-frame-image {
    position: absolute;
    width: 100%;
    height: 750px;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(255, 100, 100, 0.3));
}

.rules-frame-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rules-content-area {
    position: relative;
    padding-top: 200px;
    z-index: 2;
    height: 600px;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: visible;
}

.rules-info-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    width: 100%;
    transform: translateY(50px);
    max-width: 90%;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 50px;
}

.rules-info-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
    width: 0;
    height: 0;
}

.logo-image-so {
    position: absolute;
    top: 90%;
    left: 0;
    object-fit: contain;
    z-index: 100;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.logo-image-vang {
    position: absolute;
    top: 25%;
    right: 8%;
    object-fit: contain;
    z-index: 100;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Info Items */
.info-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 25px 35px;
    min-height: 144px;
    height: auto;
    width: 307px;
    overflow: visible;
    box-sizing: border-box;
    transition: transform 0.3s ease, filter 0.3s ease;
    justify-content: end;
}

.info-item-clickable {
    cursor: pointer;
}

.info-item-clickable:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.05) drop-shadow(0 8px 16px rgba(255, 65, 65, 0.2));
}

.info-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(./icon/bg-content-item.png) center center no-repeat;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    width: 307px;
    height: 144px;
}

.info-item > * {
    position: relative;
    z-index: 1;
}

.info-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    position: absolute;
    top: 20px;
    left: -25px;
}

.info-icon img {
    object-fit: contain;
}

.info-content {
    flex: 1;
    min-width: 0;
    overflow: visible;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: right;
    box-sizing: border-box;
}

.info-label {
    font-family: var(--font-streetsign);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 6px;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: right;
    max-width: 100%;
    box-sizing: border-box;
}

.info-value,
.info-value p {
    font-family: var(--font-streetsign);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #ff4141;
    margin: 0;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: right;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    display: block;
}

/* Modal Styles */
.info-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease;
}

.info-modal-content {
    position: relative;
    background: linear-gradient(135deg, #fff8f0 0%, #fffbf5 100%);
    margin: 10% auto;
    padding: 0;
    border: none;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.info-modal-header {
    background: linear-gradient(90deg, #df3736 0%, #ff811a 100%);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.info-modal-header h3 {
    margin: 0;
    font-family: var(--font-streetsign);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.info-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.info-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.info-modal-body {
    padding: 25px;
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ff4141 #f1f1f1;
}

.info-modal-body::-webkit-scrollbar {
    width: 8px;
}

.info-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.info-modal-body::-webkit-scrollbar-thumb {
    background: #ff4141;
    border-radius: 4px;
}

.info-modal-body::-webkit-scrollbar-thumb:hover {
    background: #df3736;
}

#modalContent {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Prize Card */
.prize-card {
    position: relative;
    width: 100%;
    aspect-ratio: 194.24 / 287.28;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.prize-card:hover {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.1) drop-shadow(0 10px 20px rgba(255, 65, 65, 0.3));
}

.lixi-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.prize-text {
    position: absolute;
    top: 44.5%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 72%;
    font-family: var(--font-streetsign);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 3px rgba(139, 0, 0, 0.5),
        0 0 10px rgba(255, 255, 255, 0.3);
    margin: 0;
    z-index: 2;
    padding: 5px;
}

.prize-text.special {
    font-size: clamp(10px, 1.1vw, 15px);
    font-weight: 900;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(139, 0, 0, 0.8),
        0 0 15px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
}

.contact_section {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background-color: #fdf2e5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image_bg {
    width: 100%;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image_bg img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.contact_btn {
    background-image: url(./images/nut.png);
    width: 220px;
    height: 80px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 3;
    top: 70%;
    left: 50%;
    cursor: pointer;
    transform-origin: center center;
    animation: contact-btn-pulse 3s ease-in-out infinite;
    will-change: transform;
}

@keyframes contact-btn-pulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.contact_btn:active {
    animation: none;
    transform: translate(-50%, -50%) scale(0.95);
}

.contact_btn a {
    font-family: var(--font-streetsign);
    text-align: center;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 20px 40px;
    cursor: pointer;
}

.contact_btn a:focus {
    outline: none;
}

/* Countdown Modal Styles */
.countdown-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.countdown-modal.active {
    display: flex;
    opacity: 1;
}

.countdown-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.countdown-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: auto;
    background: linear-gradient(180deg, #fff6eb 0%, #ffe3cc 100%);
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: countdownModalFadeIn 0.4s ease-out;
}

@keyframes countdownModalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.countdown-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.countdown-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.countdown-header {
    background: linear-gradient(180deg, #ff9a7d 0%, #ff5a5f 100%);
    padding: 40px 32px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 114, 92, 0.2);
}

.countdown-title-text {
    font-family: var(--font-streetsign);
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.countdown-body {
    padding: 40px 32px;
    text-align: center;
}

.countdown-description {
    margin-bottom: 30px;
}

.countdown-description p {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.countdown-value {
    font-family: var(--font-streetsign);
    font-size: 56px;
    font-weight: 700;
    color: #ff4141;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #fff6eb 100%);
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(255, 97, 80, 0.2);
    margin-bottom: 10px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-label {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.countdown-separator {
    font-family: var(--font-streetsign);
    font-size: 48px;
    font-weight: 700;
    color: #ff4141;
    margin: 0 5px;
    line-height: 1;
}

.countdown-event-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 114, 92, 0.2);
}

.countdown-event-name {
    font-family: var(--font-streetsign);
    font-size: 24px;
    font-weight: 600;
    color: #ff4141;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.countdown-event-date {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #666;
    margin: 0;
}

.countdown-event-date strong {
    color: #ff4141;
    font-weight: 700;
}

@media (max-width: 768px) {
    .countdown-modal-content {
        width: 95%;
        border-radius: 24px;
    }

    .countdown-header {
        padding: 30px 24px;
    }

    .countdown-title-text {
        font-size: 24px;
    }

    .countdown-body {
        padding: 30px 24px;
    }

    .countdown-timer {
        gap: 10px;
        margin: 30px 0;
    }

    .countdown-item {
        min-width: 70px;
    }

    .countdown-value {
        font-size: 36px;
        padding: 15px 20px;
        min-width: 70px;
    }

    .countdown-label {
        font-size: 12px;
    }

    .countdown-separator {
        font-size: 32px;
    }

    .countdown-event-name {
        font-size: 20px;
    }

    .countdown-event-date {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .countdown-title-text {
        font-size: 20px;
    }

    .countdown-value {
        font-size: 28px;
        padding: 12px 15px;
        min-width: 60px;
    }

    .countdown-item {
        min-width: 60px;
    }

    .countdown-separator {
        font-size: 24px;
    }
}
