@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;400&display=swap');

body {
    margin: 0;
    padding: 0;
    background: #050505;
    background-image: url(/img/coming-soon.png);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

.neon-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

h1, h2 {
    margin: 0;
    will-change: opacity, text-shadow, color;
}

.neon-amber {
    font-size: 3.2rem;       
    font-weight: 100;        
    letter-spacing: 12px;    
    color: #fff;
    text-align: center;
    white-space: nowrap; 
}


.neon-amber span {
    margin-bottom: 22rem;
    font-size: 5rem;
    display: inline-block;
    will-change: opacity, text-shadow, color;
    text-shadow: 
        0 0 2px #fff,
        0 0 6px rgba(255, 179, 0, 0.8),
        0 0 15px rgba(255, 179, 0, 0.6),
        0 0 30px rgba(255, 143, 0, 0.4);
}

.neon-cyan {
    position: absolute;
    bottom: 110px;
    right: 35px;
    font-size: 1.4rem;       
    color: #fff;
    font-weight: 200;
    letter-spacing: 6px;
    text-shadow: 
        0 0 4px #fff,
        0 0 10px #00e5ff,
        0 0 20px #00e5ff,
        0 0 40px #00b0ff,
        0 0 80px #00a0ff;
}


.neon-off {
    color: #151515 !important;
    text-shadow: none !important;
}


.click-prompt {
    position: absolute;
    top: 75%;
    left: 77%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.9rem;
    font-weight: 190;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    animation: pulse 2s infinite ease-in-out;
    will-change: opacity;
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.7; }
}


@media (max-width: 1024px) {
    .neon-amber span {
        font-size: 4rem;      
        letter-spacing: 8px;  
        margin-bottom: 18rem; 
    }
    
    .neon-cyan {
        font-size: 1.2rem;
        bottom: 80px;
        right: 30px;
    }
}


@media (max-width: 640px) {
    .neon-amber {
        letter-spacing: 6px;  
        width: 100%;
        padding: 0;
    }

    .neon-amber span {
        font-size: 6.5vw;     
        margin-bottom: 14rem; 
    }

    .neon-cyan {
        right: 50%;
        transform: translateX(50%); 
        width: 100%;
        text-align: center;
        font-size: 3.5vw;     
        letter-spacing: 4px;
        bottom: 60px;
    }
}
