/* Vaporwave Landing Page */
.landing-page-vaporwave {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: linear-gradient(90deg, #ff71ce 0%, #01cdfe 100%);
}

.vaporwave-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Canvas background */
#nodeCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: transparent;
    z-index: 1;
}

/* Content overlay */
.vaporwave-content {
    position: relative;
    text-align: center;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

/* Main title */
.vaporwave-title {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    margin: 0;
    padding: 0;
    
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1;
    
    /* Gradient text effect - very faint */
    background: linear-gradient(
        90deg,
        #ff006e 0%,
        #8338ec 25%,
        #3a86ff 50%,
        #06ffa5 75%,
        #ff006e 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    
    /* Subtle glow effect */
    filter: drop-shadow(0 0 10px rgba(255, 0, 110, 0.2))
            drop-shadow(0 0 20px rgba(131, 56, 236, 0.1));
    
    animation: none;
    margin-bottom: 5rem;
}

/* Subtitle */
.vaporwave-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a0d8ff;
    margin: 0;
    padding: 0 20px;
    margin-top: 2rem;
    line-height: 1.6;
    
    filter: drop-shadow(0 0 10px rgba(160, 216, 255, 0.3));
    animation: subtitleFade 4s ease-in-out infinite;
}

/* BEGIN button */
.vaporwave-button {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #0a0e27;
    background: linear-gradient(135deg, #ff71ce, #6a2b8c);
    border: 2px solid #ff006e;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    
    filter: drop-shadow(0 5px 15px rgba(255, 0, 110, 0.4));
    
    overflow: hidden;
}

.vaporwave-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.vaporwave-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.6),
                0 0 30px rgba(131, 56, 236, 0.4);
    border-color: #8338ec;
}

.vaporwave-button:hover::before {
    left: 100%;
}

.vaporwave-button:active {
    transform: translateY(-1px);
}

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.5))
                drop-shadow(0 0 40px rgba(131, 56, 236, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 0, 110, 0.8))
                drop-shadow(0 0 60px rgba(131, 56, 236, 0.6));
    }
}

@keyframes subtitleFade {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .vaporwave-title {
        font-size: clamp(2.5rem, 10vw, 6rem);
        margin-bottom: 1.5rem;
    }
    
    .vaporwave-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
        margin-top: 1rem;
    }
    
    .vaporwave-button {
        margin-top: 2rem;
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .vaporwave-content {
        padding: 16px;
    }
    
    .vaporwave-title {
        font-size: clamp(1.75rem, 7vw, 3.5rem);
        margin-bottom: 0.75rem;
    }
    
    .vaporwave-subtitle {
        font-size: clamp(0.8rem, 2vw, 1rem);
        margin-top: 0.75rem;
        padding: 0 10px;
    }
    
    .vaporwave-button {
        margin-top: 1.5rem;
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}
