:root {
            --easy-blue: #234882;
            --bg-gray: #f4f7fa;
        }

        body {
            background-color: var(--bg-gray);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* --- HERO SECTION (Screenshot 1 Style) --- */
        .hero-blue {
            background-color: var(--easy-blue);
            color: white;
            padding: 60px 0;
            margin-bottom: 40px;
        }

        .event-poster {
    width: 100%;
    max-width: 250px;
    aspect-ratio: 3 / 4;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.flyer-wrapper img:hover {
    transform: scale(1.02); /* Subtle zoom effect */
}

/* Ensure the info panel has enough padding for the image */
.event-info-panel {
    padding: 30px !important;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#countdown {
    font-family: 'Courier New', Courier, monospace; /* Monospace keeps numbers from jumping */
    letter-spacing: 1px;
}

.text-warning { color: #facc15 !important; }

/* Mobile Adjustment */
@media (max-width: 768px) {
    .flyer-wrapper {
        margin-top: -10px;
        margin-bottom: 25px;
    }
}
        /* --- CATEGORY CARDS (Screenshot 2 Style) --- */
        .category-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            transition: 0.3s;
            border: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
        }

        .card-top-blue {
            background: var(--easy-blue);
            height: 120px;
            position: relative;
        }

        .icon-circle {
            background: white;
            width: 45px;
            height: 45px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            bottom: -22px;
            left: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            color: var(--easy-blue);
        }

        .btn-vote-outline {
            border: 2px solid #e2e8f0;
            color: var(--easy-blue);
            font-weight: bold;
            border-radius: 10px;
            transition: 0.3s;
        }

        .btn-vote-outline:hover {
            background: var(--easy-blue);
            color: white;
            border-color: var(--easy-blue);
        }
.event-poster-fallback {
    background: linear-gradient(135deg, #38bdf8, #1d4ed8);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-blue .row {
    row-gap: 1.5rem;
}

@media (max-width: 768px) {
    .hero-blue {
        padding: 42px 0 48px;
    }

    .hero-blue .d-flex.gap-2.mb-3 {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-blue h1,
    .hero-blue p {
        text-align: center;
    }

    .hero-blue .d-flex.flex-wrap.gap-3.mt-4 {
        justify-content: center;
    }
}