* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #05070f;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;

    background: radial-gradient(
            600px circle at var(--x, 0px) var(--y, 0px),
            rgb(58, 8, 96) 0%,
            rgba(168, 85, 247, 0.05) 50%,
            transparent 100%
    );
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    user-select: none;
}

.coming-soon-text {
    font-size: 7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-right: -0.18em;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.85;
    animation: breathe 4s ease-in-out infinite alternate;
}

@keyframes breathe {
    0% {
        transform: scale(0.98);
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.12));
    }
}

@media (max-width: 900px) {
    .coming-soon-text {
        font-size: 4rem;
        letter-spacing: 0.12em;
        margin-right: -0.12em;
    }
}

@media (max-width: 500px) {
    .coming-soon-text {
        font-size: 2.5rem;
    }
}