:root {
    --bg-dark: #050510;
    --bg-gradient-1: #0a0a20;
    --bg-gradient-2: #16103c;
    --accent-1: #00f2fe;
    --accent-2: #4facfe;
    --accent-3: #8a2be2;
    --accent-4: #ff007f;
    --text-primary: #ffffff;
}

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

body {
    background: #ffffff;
    color: #333333;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.content-container {
    position: relative;
    z-index: 2;
    pointer-events: none; /* Let pointer events pass to canvas */
    transform: translateY(-100px); /* Move text exactly 100px above the center */
    text-align: center;
}

.coming-soon-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 4vw, 3.5rem); /* Slightly larger font size */
    letter-spacing: 8px;
    color: #333333;
    user-select: none;
    white-space: nowrap;
}
