/* Body Styling */
body {
    margin: 0;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #3a1c71, #d76d77, #ffaf7b);
    text-align: center;
    overflow: hidden;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

/* Countdown Container Styling */
.countdown-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    text-align: center;
}

/* Date Container Styling */
.date-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    position: relative;
}

/* Individual Date Styling */
.date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    width: 100px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

/* Text Styling for Date Elements */
.number {
    font-size: 35px;
    font-weight: bold;
    color: #f5f5f5;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.text {
    font-size: 14px;
    color: #ddd;
}

/* Year Styling with Enhanced Design */
.year {
    font-size: 70px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 5px;
    background: linear-gradient(90deg, white, white);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: swing 3s infinite ease-in-out;
    transform-origin: top center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Title Styling with Gradient and Text Shadow */
h2 {
    font-size: 50px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: bold;
    top: -30px;
    right: 5px;
    left: 5px;
    position: absolute;
    margin-bottom: 10px;
    letter-spacing: 2px;
    background: linear-gradient(90deg, white, white);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes swing {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.countdown-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    text-align: center;
}

/* Date Container Styling */
.date-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    position: relative;
}

/* Individual Date Styling */
.date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    width: 100px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

/* Text Styling for Date Elements */
.number {
    font-size: 35px;
    font-weight: bold;
    color: #f5f5f5;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.text {
    font-size: 14px;
    color: #ddd;
}

/* Year Styling with Enhanced Design */
.year {
    font-size: 70px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 5px;
    background: linear-gradient(90deg, white, white);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: swing 3s infinite ease-in-out;
    transform-origin: top center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Title Styling with Gradient and Text Shadow */
h2 {
    font-size: 50px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: bold;
    top: -30px;
    right: 5px;
    left: 5px;
    position: absolute;
    margin-bottom: 10px;
    letter-spacing: 2px;
    background: linear-gradient(90deg, white, white);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes swing {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
