#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes rainbow-gradient {
    0% {
        background: linear-gradient(90deg, #B31F88, #3E3C90);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    50% {
        background: linear-gradient(90deg, #3E3C90, #B31F88);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    100% {
        background: linear-gradient(90deg, #B31F88, #3E3C90);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

.enigma-link {
    position: relative;
    font-weight: 700;
    transition: all 0.3s ease;
}

.enigma-link:hover {
    animation: rainbow-gradient 2s ease-in-out infinite;
}
