body {
    background: #f0f8ff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* Main Container */
.event-container {
    flex: 1;
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Event Title */
.event-title {
    font-size: 2.8rem;
    color: #1697AD;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.event-title i {
    margin-right: 15px;
}

/* Event Photo */
.event-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Event Details */
.event-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.detail-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-card i {
    font-size: 2rem;
    color: #1697AD;
    margin-bottom: 1rem;
}

.timer {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 2rem auto;
}

.timer-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.timer-title i {
    color: #e74c3c;
}

.timer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.timer-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.timer-item:hover {
    transform: translateY(-3px);
}

.timer-item span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    padding: 8px;
    border-radius: 6px;
}

/* Color Variations */
.timer-item:nth-child(1) span {
    background: #3498db;
}

/* Days - Blue */
.timer-item:nth-child(2) span {
    background: #2ecc71;
}

/* Hours - Green */
.timer-item:nth-child(3) span {
    background: #f1c40f;
}

/* Mins - Yellow */
.timer-item:nth-child(4) span {
    background: #e74c3c;
}

/* Secs - Red */

.timer-item br {
    display: none;
    /* Remove line break */
}

.timer-item {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 480px) {
    .timer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .timer-item span {
        font-size: 1.5rem;
        padding: 6px;
    }
}