/* ==========================================================================
   GRAND MASTER LIGHT — Minimalist Coming Soon Theme (Red/Crimson Edition)
   ========================================================================== */

/* Variables */
:root {
    --bg-color: #050103; /* Deep dark black with a hint of red */
    --text-primary: #ffffff;
    --primary-glow: rgba(255, 30, 86, 0.8);
    --secondary-glow: rgba(255, 75, 75, 0.8);
    
    /* Font families */
    --font-header: 'Outfit', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Interactive variables, updated via JS */
    --mouse-x: 50%;
    --mouse-y: 50%;
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background canvas */
#light-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Mouse Spotlight Effect */
#spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(
        circle 400px at var(--mouse-x) var(--mouse-y),
        rgba(255, 30, 86, 0.15) 0%,
        rgba(255, 75, 75, 0.05) 45%,
        transparent 80%
    );
    transition: background 0.1s ease-out;
}

/* Stage Spotlight Beam */
.light-beam {
    position: fixed;
    top: -150px;
    left: 50%;
    width: 900px;
    height: 150vh;
    background: conic-gradient(
        from 170deg at top center,
        transparent 0deg,
        rgba(255, 30, 86, 0.05) 3deg,
        rgba(255, 255, 255, 0.12) 10deg,
        rgba(255, 75, 75, 0.05) 17deg,
        transparent 20deg
    );
    transform: translateX(-50%);
    pointer-events: none;
    filter: blur(15px);
    mix-blend-mode: screen;
    z-index: 1;
    opacity: 0.95;
    transform-origin: top center;
}

/* Layout Wrapper */
.wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
}

/* Teaser Container */
.teaser-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Logo styling */
.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
}

.logo {
    max-width: 480px;
    width: 85vw;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 30, 86, 0.14));
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    -webkit-user-drag: none;
}

.logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 0 35px rgba(255, 30, 86, 0.4));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(255, 30, 86, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Coming Soon Text */
.coming-soon-text {
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 2.6rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    padding-left: 0.35em; /* offsets the letter-spacing on the last character to center it perfectly */
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(255, 30, 86, 0.35);
    animation: smoothPulse 4s ease-in-out infinite;
}

@keyframes smoothPulse {
    0%, 100% {
        opacity: 0.85;
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(255, 30, 86, 0.6));
    }
}

.subtitle-container {
    margin-top: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.subtitle-en {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.1rem;
    color: #e2e8f0;
    letter-spacing: 0.05em;
    text-shadow: 0 0 15px rgba(255, 30, 86, 0.25);
    opacity: 0.95;
}

.subtitle-ua {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    color: #94a3b8;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        max-width: 340px;
    }
    
    .coming-soon-text {
        font-size: 2.0rem;
        letter-spacing: 0.3em;
        padding-left: 0.3em;
    }
    
    .light-beam {
        width: 650px;
    }

    .subtitle-container {
        margin-top: 1.5rem;
        gap: 0.5rem;
    }

    .subtitle-en {
        font-size: 0.95rem;
    }

    .subtitle-ua {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 260px;
    }
    
    .coming-soon-text {
        font-size: 1.5rem;
        letter-spacing: 0.25em;
        padding-left: 0.25em;
    }

    .subtitle-container {
        margin-top: 1.2rem;
        gap: 0.4rem;
    }

    .subtitle-en {
        font-size: 0.85rem;
        letter-spacing: 0.02em;
    }

    .subtitle-ua {
        font-size: 0.75rem;
        letter-spacing: 0.02em;
    }
}
