/* Custom CSS for luxury and glassmorphism effects */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); /* Deep, luxurious gradient */
    color: #e0e0e0; /* Light text for dark background */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Neon glow effect for buttons and inputs */
.neon-glow-button {
    transition: all 0.3s ease;
    box-shadow: 0 0 5px #a855f7, 0 0 10px #a855f7, 0 0 15px #a855f7; /* Purple glow */
}
.neon-glow-button:hover {
    box-shadow: 0 0 8px #c084fc, 0 0 15px #c084fc, 0 0 25px #c084fc;
    transform: translateY(-2px);
}

.neon-glow-input:focus {
    outline: none;
    border-color: #a855f7; /* Purple border on focus */
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.5); /* Purple glow on focus */
}

/* Glassmorphism effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.08); /* Slightly visible white with low opacity */
    backdrop-filter: blur(10px); /* Blur behind the element */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.15); /* Subtle border */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); /* Soft shadow */
}

/* Header specific styles */
.header-glass-effect {
    background: rgba(0, 0, 0, 0.2); /* Almost transparent black */
    backdrop-filter: blur(5px); /* Subtle blur for glass effect */
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle bottom border */
}

/* Header animation (kept for potential future use or subtle background movement) */
.header-bg-animation {
    background-size: 200% 200%;
    animation: gradient-animation 10s ease infinite;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Countdown specific styling */
.countdown-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 10px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    /* Enhanced neon glow for numbers */
    text-shadow: 0 0 15px #ff00ff, 0 0 25px #ff00ff, 0 0 40px #ff00ff; /* Saturated magenta glow */
    background: rgba(255, 255, 255, 0.08); /* Slightly more visible glass effect */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px; /* More rounded corners */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 255, 0.6); /* Stronger shadow and magenta glow */
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.countdown-item:hover {
    transform: translateY(-8px) scale(1.1); /* More pronounced hover effect */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 0, 255, 0.8);
}

.countdown-item span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #e0e0e0; /* Slightly brighter label */
    margin-top: 5px;
}

/* Responsive adjustments for countdown */
@media (max-width: 768px) {
    .countdown-item {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin: 0 5px;
    }
    .countdown-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .countdown-item {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 3px;
    }
    .countdown-item span {
        font-size: 0.7rem;
    }
}

/* Image overlay for hero section */
.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
}

/* Ensure images fill their container and are responsive */
.responsive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Custom scrollbar for aesthetic */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: #4a007a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6a00a8;
}
