/* Surreal Container */
.surreal-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px;
    background: #7f8c8d;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Abstract Background */
.abstract-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #34495e, transparent),
                radial-gradient(circle at 80% 30%, #2ecc71, transparent),
                radial-gradient(circle at 40% 80%, #e74c3c, transparent);
    z-index: -1;
    filter: blur(60px);
    animation: float 8s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Surreal Title */
.surreal-title {
    font-size: 3.5rem;
    color: #fff;
    background: linear-gradient(90deg, #34495e, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: surrealGlow 3s infinite alternate;
}

@keyframes surrealGlow {
    0% { text-shadow: 0 0 10px #34495e; }
    100% { text-shadow: 0 0 30px #34495e; }
}

/* Section Titles */
.countdown-section-title {
    font-size: 2.2rem;
    color: #ffffff;
    text-align: center;
    margin: 40px 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: bold;
}

/* Responsive Section Title */
@media (max-width: 768px) {
    .countdown-section-title {
        font-size: 1.8rem;
    }
}
@media (max-width: 480px) {
    .countdown-section-title {
        font-size: 1.5rem;
    }
}

/* Current Time */
.current-time-wrapper {
    margin: 20px 0;
    font-size: 1.6rem;
    color: #f9f871;
}
.current-time-label {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Countdown Group */
.countdown-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

/* Countdown Art Box */
.countdown-art-box {
    background: linear-gradient(135deg, #34495e, #e74c3c);
    width: 48%;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-art-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(52, 73, 94, 0.6);
}

/* Time Units */
.time-units {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    font-size: 1.2rem;
    text-align: center;
}

.time-unit-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-unit {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(52, 73, 94, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.time-label {
    margin-top: 5px;
    font-size: 1.1rem;
    color: #ccc;
}

/* Countdown Label */
.countdown-label {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .surreal-title {
        font-size: 3rem;
    }
    .time-unit {
        font-size: 1.6rem;
    }
    .time-label {
        font-size: 1rem;
    }
    .current-time-wrapper {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .countdown-art-box {
        width: 100%;
    }
    .surreal-title {
        font-size: 2.5rem;
    }
    .time-unit {
        font-size: 1.5rem;
    }
    .time-label {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .surreal-title {
        font-size: 2rem;
    }
    .time-unit {
        font-size: 1.4rem;
    }
    .time-label {
        font-size: 0.9rem;
    }
    .current-time-wrapper {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .surreal-title {
        font-size: 1.6rem;
    }
    .time-unit {
        font-size: 1.2rem;
    }
    .time-label {
        font-size: 0.8rem;
    }
    .current-time-wrapper {
        font-size: 1.2rem;
    }
}