* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Orbitron', monospace;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transition: opacity 0.5s ease-in-out;
}

.rotating-background {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200vw; /* Much larger to ensure no edges show during rotation */
    height: 200vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform-origin: center;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.3)
    );
    z-index: 1;
}

.explore-text {
    position: relative;
    z-index: 2;
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 900;
    color: black;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(255, 255, 255, 0.6),
        0 0 80px rgba(255, 255, 255, 0.4),
        4px 4px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.1em;
    /* text-transform: uppercase; */
    animation: pulse 3s ease-in-out infinite alternate;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explore-text:hover {
    transform: scale(1.05);
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 1),
        0 0 60px rgba(255, 255, 255, 0.8),
        0 0 120px rgba(255, 255, 255, 0.6),
        6px 6px 30px rgba(0, 0, 0, 0.9);
}

@keyframes pulse {
    0% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(255, 255, 255, 0.6),
            0 0 80px rgba(255, 255, 255, 0.4),
            4px 4px 20px rgba(0, 0, 0, 0.8);
    }
    100% {
        text-shadow: 
            0 0 30px rgba(255, 255, 255, 1),
            0 0 60px rgba(255, 255, 255, 0.8),
            0 0 120px rgba(255, 255, 255, 0.6),
            6px 6px 30px rgba(0, 0, 0, 0.9);
    }
}

/* Fallback background if images fail to load */
.fallback-bg {
    background: linear-gradient(
        135deg,
        #667eea 0%,
        #764ba2 100%
    );
}

/*.rotating-background {
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}*/