/* ... existing code ... */

/* Glow Animation for Construction Page */
@keyframes glow {
    0% {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #0073e6, 0 0 20px #0073e6;
    }
    50% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 25px #0073e6, 0 0 30px #0073e6;
    }
    100% {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #0073e6, 0 0 20px #0073e6;
    }
}

.glow {
    animation: glow 2s ease-in-out infinite;
}

/* Enhanced Fade In for Construction Page */
.container.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.container.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* ... existing code ... */

/* Glow Animation for Construction Page */
@keyframes glow {
    0% {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fd7e14, 0 0 20px #fd7e14;
    }
    50% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 25px #fd7e14, 0 0 30px #fd7e14;
    }
    100% {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fd7e14, 0 0 20px #fd7e14;
    }
}

/* Spinning Animation for Construction Icon */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 4s linear infinite;
}

.glow {
    animation: glow 2s ease-in-out infinite;
}

/* Enhanced Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Number Transition */
.countdown-number {
    transition: all 0.3s ease-out;
}

/* Button Hover Effect */
.notify-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.notify-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.notify-btn:hover::before {
    left: 100%;
}

/* Floating Animation for Countdown Items */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.countdown-item {
    animation: float 6s ease-in-out infinite;
}

.countdown-item:nth-child(1) { animation-delay: 0s; }
.countdown-item:nth-child(2) { animation-delay: 0.5s; }
.countdown-item:nth-child(3) { animation-delay: 1s; }
.countdown-item:nth-child(4) { animation-delay: 1.5s; }

/* Remove these button styles if no longer needed */
.notify-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.notify-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.notify-btn:hover::before {
    left: 100%;
}