.event-container {
    max-width: 1000px;
    margin: 70px auto;
    padding: 20px;
    text-align: center;
}

.event-title {
    font-size: 2.4rem;
    color: #ffd86b;
    margin-bottom: 15px;
    font-weight: 700;
}

.event-date {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.event-card {
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 18px;
    margin-bottom: 30px;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transition: 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card h3 {
    color: #ffd86b;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.event-card p {
    margin: 8px 0;
    font-size: 1rem;
}

.highlight {
    color: #4de1ff;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 40px;
    border-radius: 50px;
    background: linear-gradient(45deg,#6a5cff,#ff4dc4);
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.3s;
}

.cta-button:hover {
    transform: scale(1.07);
    box-shadow: 0 15px 30px rgba(255,0,150,0.4);
}

.contact-box {
    margin-top: 50px;
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
}


/* Countdown Timer Styles */
.countdown-box {
    margin: 40px 0;
    padding: 25px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.countdown-timer {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 10px;
    color: #4de1ff;
}

.countdown-message {
    margin-top: 10px;
    font-size: 1rem;
    opacity: 0.9;
}

.glow-warning {
    animation: pulseGlow 1s infinite alternate;
    color: #ff4d4d;
}

@keyframes pulseGlow {
    from {
        text-shadow: 0 0 5px #ff0000;
    }
    to {
        text-shadow: 0 0 20px #ff0000, 0 0 40px #ff4d4d;
    }
}