/* ===== Custom Fonts ===== */
@font-face {
    font-family: 'Gastroline Signature';
    src: url('./fonts/GastrolineSignature.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    overflow-x: hidden;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-red: #C4161C;
    --primary-red-dark: #9a1115;
    --secondary-red: #E53935;
    --gold: #FBC02D;
    --gold-light: #FFD54F;
    --bg-dark: #1a0000;
    --bg-gradient-start: #C4161C;
    --bg-gradient-end: #5c0000;
    --text-white: #ffffff;
    --text-gold: #FFE082;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-heading-alt: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-countdown: 'Orbitron', monospace;
    --font-signature: 'Dancing Script', cursive;

    --body-background-color: #e5f4ff;
    --v-progress-left: 50px;
    --v-progress-item-height-width: 12px;
    --v-progress-line-height: 65px;
    --v-progress-line-width: 3px;
    --v-progress-gap: 13px;
    --blue: #0081C9;
    --green: #159895;
    --light-blue: #5BC0F8;
}

body {
    font-family: var(--font-body);
    background: #0a0000;
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ===== Loading Screen ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #C4161C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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

.loading-text {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #C4161C;
    margin: 0;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Animated Mesh Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(196, 22, 28, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(229, 57, 53, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(251, 192, 45, 0.2) 0%, transparent 40%),
        linear-gradient(135deg, #1a0000 0%, #0a0000 50%, #2d0000 100%);
    animation: meshMove 20s ease-in-out infinite;
    z-index: -1;
}


@keyframes meshMove {

    0%,
    100% {
        background-position: 0% 0%, 100% 100%, 50% 0%;
    }

    50% {
        background-position: 100% 100%, 0% 0%, 0% 100%;
    }
}

/* ===== Confetti Animation ===== */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold);
    animation: confetti-fall linear infinite;
    opacity: 0.8;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;

    .content-cover-2 {
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;

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

    .content-cover-1 {
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;

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

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 50%, rgba(251, 192, 45, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(229, 57, 53, 0.2) 0%, transparent 40%);
    /* animation: heroGlowMove 15s ease-in-out infinite; */
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ebd9a7 0%, #fdbe61 100%);
    z-index: -1;
}

.hero-content {
    position: absolute;
    z-index: 3;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 600px;

    .logo {
        display: flex;
        justify-content: center;
        margin-bottom: 4rem;

        img {
            width: 300px;
        }
    }

    h1 {
        font-family: var(--font-signature);
        font-size: 50px;
        font-weight: 600;
        margin: 0 0 20px 0;
        color: #760403;
        text-align: center;
        line-height: 1.3;

        span {
            color: #DC143C;
        }
    }

    .hero-detail {
        display: flex;
        flex-direction: column;
        gap: 1rem;

        .hero-subtitle {
            &.variant-1 {
                color: #8B4513;
            }

            &.variant-2 {
                color: #654321;
                font-weight: 400;
            }

            &.variant-3 {
                color: #DC143C;
            }
        }
    }
}


.hero-subtitle {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    line-height: 1.8;
    margin: 0;
}

.userName {
    font-family: var(--font-signature);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    text-align: center;
    margin: 1.5rem 0 2rem 0;
    color: #760403;
    letter-spacing: 1px;
}

.event-info {
    max-width: 900px;
    margin: 0 auto;
}

@keyframes heroGlowMove {

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

    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(251, 192, 45, 0.4) 0%, rgba(229, 57, 53, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    /* animation: glow-pulse 4s ease-in-out infinite, glow-rotate 20s linear infinite; */
    pointer-events: none;
    z-index: 2;
}

@keyframes glow-pulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3) rotate(180deg);
        opacity: 1;
    }
}

@keyframes glow-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.logo-container {
    margin-bottom: 3rem;
    /* animation: fade-in-down 1s ease-out, logoFloat 4s ease-in-out infinite; */
    position: relative;
}

.logo-container::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(251, 192, 45, 0.3) 0%, transparent 70%);
    filter: blur(30px);
    /* animation: logoPulse 3s ease-in-out infinite; */
    z-index: -1;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes logoPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.95);
    }

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

.company-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 8px 30px rgba(251, 192, 45, 0.6)) drop-shadow(0 4px 15px rgba(229, 57, 53, 0.4));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-logo:hover {
    transform: scale(1.08) rotateY(5deg);
    filter: drop-shadow(0 12px 40px rgba(251, 192, 45, 0.8)) drop-shadow(0 6px 20px rgba(229, 57, 53, 0.6));
}

.hero-title {
    margin-bottom: 2.5rem;
    /* animation: fade-in-up 1s ease-out 0.3s backwards; */
}

.title-line {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.2;
    background: linear-gradient(135deg,
            #ffffff 0%,
            #FBC02D 25%,
            #FFD54F 50%,
            #FBC02D 75%,
            #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* animation: gradientShift 4s ease-in-out infinite; */
    filter: drop-shadow(0 0 30px rgba(251, 192, 45, 0.6)) drop-shadow(0 4px 20px rgba(251, 192, 45, 0.4));
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.title-subtitle {
    display: block;
    font-family: var(--font-heading-alt);
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 700;
    background: linear-gradient(135deg, #FBC02D 0%, #FFD54F 50%, #FBC02D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 25px rgba(251, 192, 45, 0.7));
    letter-spacing: 3px;
    animation: subtitleGlow 2s ease-in-out infinite;
}

@keyframes subtitleGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(251, 192, 45, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 35px rgba(251, 192, 45, 1));
    }
}

.confirmation-badge {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid;
    border-image: linear-gradient(135deg, rgba(251, 192, 45, 0.8), rgba(255, 213, 79, 0.4)) 1;
    border-radius: 60px;
    padding: 1.5rem 3rem;
    animation: fade-in-up 1s ease-out 0.6s backwards, badge-glow 3s ease-in-out infinite;
    box-shadow:
        0 8px 32px rgba(251, 192, 45, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.confirmation-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FBC02D 0%, #FFD54F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-red);
    font-weight: bold;
    box-shadow:
        0 4px 15px rgba(251, 192, 45, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
    position: relative;
}

.badge-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: inherit;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
}

@keyframes iconPulse {

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

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

.badge-text {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes badge-glow {

    0%,
    100% {
        box-shadow:
            0 8px 32px rgba(251, 192, 45, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transform: translateY(0);
    }

    50% {
        box-shadow:
            0 12px 48px rgba(251, 192, 45, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ===== Countdown Section ===== */
.countdown-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(196, 22, 28, 0.15) 50%,
            rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(15px) saturate(150%);
    position: relative;
}

/* .countdown-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(251, 192, 45, 0.1), transparent);
    animation: sectionShine 10s linear infinite;
} */

@keyframes sectionShine {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}

.section-title {
    text-align: center;
    font-family: var(--font-heading-alt);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg,
            #FBC02D 0%,
            #FFD54F 50%,
            #FBC02D 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(251, 192, 45, 0.8));
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 10;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.countdown-value {
    font-family: var(--font-countdown);
    font-size: 50px;
    font-weight: 900;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 1.5rem 2rem;
    min-width: 140px;
    text-align: center;
    box-shadow:
        0 0 40px rgba(251, 192, 45, 0.5),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    background: linear-gradient(180deg,
            #FBC02D 0%,
            #FFD54F 50%,
            #FBC02D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(251, 192, 45, 0.8));
}


.countdown-value::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: inherit;
    filter: blur(20px);
    opacity: 0.4;
    z-index: -1;
    border-radius: 24px;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.countdown-value.flip {
    animation: flip-animation 0.6s ease-in-out;
}

@keyframes flip-animation {
    0% {
        transform: rotateX(0deg);
    }

    50% {
        transform: rotateX(90deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

.countdown-value.urgent {
    animation: urgent-pulse 1s ease-in-out infinite;
}

@keyframes urgent-pulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(229, 57, 53, 0.6);
        border-color: var(--secondary-red);
    }

    50% {
        box-shadow: 0 0 50px rgba(229, 57, 53, 1);
        border-color: var(--gold);
    }
}

.countdown-label {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-separator {
    font-family: var(--font-countdown);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--gold);
    opacity: 0.6;
    animation: blink 2s ease-in-out infinite;
    margin-bottom: 36px;
}

@keyframes blink {

    0%,
    49%,
    100% {
        opacity: 0.6;
    }

    50%,
    99% {
        opacity: 0.1;
    }
}

/* ===== Event Info Section ===== */
.event-info {
    padding: 5rem 2rem;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(251, 192, 45, 0.4);
    border-radius: 28px;
    padding: 3rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(251, 192, 45, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.info-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(251, 192, 45, 0.6), rgba(255, 213, 79, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.info-card:hover {
    transform: translateY(-15px) scale(1.03) rotateX(5deg);
    border-color: var(--gold);
    box-shadow:
        0 20px 60px rgba(251, 192, 45, 0.5),
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover::after {
    opacity: 1;
}

.info-card.full-width {
    grid-column: 1 / -1;
}

.info-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 15px rgba(251, 192, 45, 0.5));
    animation: iconFloat 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes iconFloat {

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

    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

.info-title {
    font-family: var(--font-heading-alt);
    font-size: 1.75rem;
    font-weight: 700;
    color: #760403;
    margin-bottom: 1rem;
}

.info-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-white);
    font-weight: 500;
}

.activities {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.activity-tag {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 192, 45, 0.2);
}

.activity-tag:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(251, 192, 45, 0.5);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 4rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.cta-button {
    font-family: var(--font-heading-alt);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-red);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border: none;
    border-radius: 50px;
    padding: 1.25rem 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(251, 192, 45, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(251, 192, 45, 0.6);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 2px solid var(--gold);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.button-icon {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

/* ===== Footer ===== */
.footer {
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(251, 192, 45, 0.3);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    max-width: 120px;
    height: auto;
    opacity: 0.8;
    filter: drop-shadow(0 2px 10px rgba(251, 192, 45, 0.3));
}

.footer-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero {
        background-image: none;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-value {
        min-width: 80px;
        padding: 0.75rem 1rem;
    }

    .countdown-separator {
        font-size: 2rem;
    }

    .info-container {
        grid-template-columns: 1fr;
    }

    .cta-section {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }

    .v-progress-item {
        padding: 0 !important;
        margin-bottom: 30px;
        transition: none !important;
    }

    .v-progress-item .title {
        padding: 10px 15px;
        padding-bottom: 0 !important;
        font-size: 12px !important;
        margin-bottom: 0 !important;
    }

    .v-progress-item .content {
        padding: 10px 15px;
        font-size: 1em;
    }

    .v-progress ul::before {
        bottom: 80px !important;
    }

    .minh-hoa {
        transform: translateX(-90px) !important;

        img {
            width: 250px !important;
        }
    }

    .messageBoxWrap {
        right: -260px !important;
    }

    .messageBox {
        right: unset !important;
        left: 0 !important;

        p {
            font-size: 14px !important;
            max-width: 175px;
            right: unset !important;
            left: 10px !important;
            padding: 0 10px !important;
            top: 35px !important;
        }

        img {
            width: 175px !important;
        }
    }

    .poll-button {
        position: static !important;
        transform: none !important;
        padding: 20px !important;
        font-size: 12px !important;
        min-width: 150px !important;
        width: fit-content !important;
        opacity: 1 !important;
        transition: all 0.3s ease !important;
    }

    .poll-button:first-child {
        left: auto !important;
        top: auto !important;
    }

    .poll-button:last-child {
        right: auto !important;
        top: auto !important;
    }

    .poll-options {
        flex-direction: column;
        align-items: center;
        min-height: auto !important;
        flex-direction: row !important;
        padding-left: 0 !important;
    }

    .option {
        flex-direction: column !important;
    }

    .content-cover-2,
    .content-cover-1 {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0;
    }

    .hero-content {
        right: 0;
        padding: 0 1.5rem;
    }

    .confirmation-badge {
        flex-direction: column;
        padding: 1rem 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }
}

/* Timeline Styling */
.v-progress {
    background-color: transparent;
    padding: 40px 0;
    position: relative;
    padding-left: 60px;
}

.v-progress ul {
    list-style: none;
    position: relative;
}

.v-progress ul::before {
    content: '';
    position: absolute;
    left: -54px;
    top: 10px;
    bottom: 140px;
    width: 4px;
    background: linear-gradient(180deg, #ffd700 0%, #ff6b35 50%, #ffd700 100%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.v-progress-item {
    position: relative;
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.9) 0%, rgba(70, 0, 0, 0.9) 100%);
    padding: 25px 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.v-progress-item:nth-child(1) {
    animation-delay: 0.1s;
}

.v-progress-item:nth-child(2) {
    animation-delay: 0.2s;
}

.v-progress-item:nth-child(3) {
    animation-delay: 0.3s;
}

.v-progress-item:nth-child(4) {
    animation-delay: 0.4s;
}

.v-progress-item:nth-child(5) {
    animation-delay: 0.5s;
}

.v-progress-item:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.v-progress-item:last-child {
    margin-bottom: 0;
}

.v-progress-item::before {
    content: '';
    position: absolute;
    left: -70px;
    top: 5px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    border: 4px solid #8b0000;
    box-shadow:
        0 0 0 6px rgba(255, 215, 0, 0.2),
        0 0 20px rgba(255, 215, 0, 0.6),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 0 6px rgba(255, 215, 0, 0.2),
            0 0 20px rgba(255, 215, 0, 0.6),
            inset 0 2px 4px rgba(255, 255, 255, 0.5);
    }

    50% {
        transform: scale(1.1);
        box-shadow:
            0 0 0 10px rgba(255, 215, 0, 0.3),
            0 0 30px rgba(255, 215, 0, 0.8),
            inset 0 2px 4px rgba(255, 255, 255, 0.5);
    }
}

.v-progress-item:hover .title,
.v-progress-item:hover .content {
    transform: translateX(10px);

}

.v-progress-item .title {
    font-size: 1.4em;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    letter-spacing: 1px;
    font-family: 'Be Vietnam Pro', sans-serif;
    padding: 15px 20px;
    transition: transform 0.3s ease;
}

.v-progress-item .content {
    font-size: 1.15em;
    color: #ffe6a0;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-family: 'Be Vietnam Pro', sans-serif;
    padding: 15px 20px;
    margin-top: -12px;
    transition: transform 0.3s ease;
}


.poll-section {
    padding: 6rem 2rem;
    background: linear-gradient(90deg, #ebd9a7 0%, #fdbe61 100%);
    backdrop-filter: blur(15px) saturate(150%);
    position: relative;
    padding-bottom: 0;

    .wrapper {
        max-width: 1200px;
        margin: 0 auto;

        .section-title-1 {
            color: #760403;
            text-align: center;
            font-family: var(--font-heading-alt);
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
        }
    }

    .option {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .poll-options {
        display: flex;
        gap: 2rem;
        padding: 2rem;
        position: relative;
        min-height: 400px;
        width: 100%;
        max-width: 600px;
    }

    .poll-button {
        font-family: var(--font-heading-alt);
        font-size: 1.5rem;
        font-weight: 700;
        color: #ffffff;
        border: none;
        border-radius: 50px;
        padding: 1.5rem 4rem;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        min-width: 200px;
    }

    /* Nút "Có" có thể di chuyển */
    .poll-button:first-child {
        position: absolute;
        top: 50%;
        left: 50px;
        transform: translateY(-50%);
        min-width: 150px;
        padding: 1.2rem 3rem;
        font-size: 1.3rem;
        transition: opacity 0.2s ease;
    }

    /* Nút "Có" - Màu xanh lá */
    .poll-button:first-child {
        background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
        box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    }

    .poll-button:first-child:hover {
        box-shadow: 0 15px 40px rgba(76, 175, 80, 0.6);
    }

    /* Nút "Không" - Màu đỏ, ở bên phải */
    .poll-button:last-child {
        background: linear-gradient(135deg, #E53935 0%, #EF5350 100%);
        box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
        position: absolute;
        top: 50%;
        right: 50px;
        transform: translateY(-50%);
    }

    .poll-button:last-child:hover {
        box-shadow: 0 15px 40px rgba(229, 57, 53, 0.6);
    }

    .poll-button::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
    }

    .poll-button:hover::before {
        width: 400px;
        height: 400px;
    }

    .poll-button:hover {
        transform: scale(1.08) translateY(-5px);
        filter: brightness(1.1);
    }

    .poll-button:active {
        transform: scale(0.98) translateY(0);
    }
}

/* ===== Modal Styling ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.95) 0%, rgba(70, 0, 0, 0.95) 100%);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    border: 3px solid rgba(255, 215, 0, 0.5);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

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

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: rotate(90deg) scale(1.2);
    color: #fff;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

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

.modal-title {
    font-family: var(--font-heading-alt);
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.modal-message {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffe6a0;
    font-weight: 500;
    margin-bottom: 0;
    white-space: pre-line;
}

/* ===== Tablet Warning Overlay ===== */
.tablet-warning-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(20px);
}

.tablet-warning-content {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.95) 0%, rgba(70, 0, 0, 0.95) 100%);
    padding: 4rem 3rem;
    border-radius: 30px;
    border: 3px solid rgba(255, 215, 0, 0.6);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(255, 215, 0, 0.4);
    max-width: 600px;
    width: 90%;
    text-align: center;
}

.tablet-warning-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.tablet-warning-title {
    font-family: var(--font-heading-alt);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.tablet-warning-message {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1.4rem;
    line-height: 2;
    color: #ffe6a0;
    font-weight: 500;
}

.tablet-warning-message strong {
    color: #ffd700;
    font-weight: 700;
}

/* Show overlay only on tablet */
@media (min-width: 769px) and (max-width: 1024px) {

    html,
    body {
        overflow: hidden !important;
        height: 100vh !important;
    }

    .tablet-warning-overlay {
        display: flex !important;
    }
}

.minh-hoa {
    position: relative;

    img {
        margin-bottom: -4px;
    }
}

.messageBoxWrap {
    position: absolute;
    top: 0;
    right: -155px;
}

.messageBox {
    position: relative;
    width: 300px;

    p {
        position: absolute;
        top: 100px;
        color: black;
        font-weight: bold;
        right: 45px;
    }

    img {
        transform: scaleX(-1);
        width: 100%;
    }
}