html, body {
    background-color: #0f172a;
    color: #f8fafc;
    overflow-x: hidden;
}

.text-gradient {
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

/* Modern utilities */
.glass-panel {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.6));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.2);
}

.text-gradient-gold {
    background: linear-gradient(to right, #facc15, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .7;
    }
}

/* Hero Slideshow Animation */
/* Hero Slideshow Animation */
.hero-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Ensure images are centered */
    opacity: 0;
    animation: imageSlide 25s linear infinite;
    z-index: 1;
    /* Images at 1 */
}

/* Ensure overlay is on top */
.hero-slideshow .absolute {
    z-index: 10;
}

.hero-slideshow img:nth-of-type(1) {
    animation-delay: 0s;
}

.hero-slideshow img:nth-of-type(2) {
    animation-delay: 5s;
}

.hero-slideshow img:nth-of-type(3) {
    animation-delay: 10s;
}

.hero-slideshow img:nth-of-type(4) {
    animation-delay: 15s;
}

.hero-slideshow img:nth-of-type(5) {
    animation-delay: 20s;
}

@keyframes imageSlide {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    4% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    24% {
        opacity: 0;
        transform: scale(1.05);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}