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

body {
    background: #000000;
    overflow: hidden;
    font-family: 'Nunito', sans-serif;
    color: white;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    position: absolute;
    bottom: 15%;
    z-index: 2;
    text-align: center;
    width: 100%;
    pointer-events: none;
    /* Let clicks pass through to canvas if needed */
}

.tagline {
    font-size: 1.4rem;
    letter-spacing: 0.4rem;
    font-weight: 400;
    opacity: 1;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ff00cc, #333399);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 0, 204, 0.3);
}

.coming-soon {
    font-size: 1.2rem;
    letter-spacing: 0.4rem;
    font-weight: 400;
    opacity: 0.7;
    text-transform: uppercase;
    color: #ffffff;
}