* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: white;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    width: 100%;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

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

.countdown-display {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.time-value {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    min-width: 120px;
    text-align: center;
}

#days {
    min-width: 80px; /* Days typically 1-2 digits */
}

.time-value.updating {
    transform: scale(1.1);
}

.time-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-separator {
    font-size: 4rem;
    font-weight: 300;
    opacity: 0.7;
    margin-top: -20px;
}

.status-message {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 20px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: inline-block;
}

.info-text {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.6;
    margin-top: 20px;
}

.weekend-activities {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.activities-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.95;
}

.activities-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.activity-item {
    font-size: 1.1rem;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    max-width: 500px;
    width: 100%;
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .time-value {
        font-size: 3rem;
        min-width: 80px;
    }
    
    .time-label {
        font-size: 0.85rem;
    }
    
    .time-separator {
        font-size: 2.5rem;
        margin-top: -15px;
    }
    
    .countdown-display {
        gap: 10px;
    }
    
    .status-message {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 40px 25px;
    }
    
    .activities-title {
        font-size: 1.3rem;
    }
    
    .activity-item {
        font-size: 1rem;
        padding: 10px 15px;
    }
    
    .weekend-activities {
        margin-top: 30px;
        padding-top: 25px;
    }
}

