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

html, body {
    cursor: none;
}

a, button, [role="button"] {
    cursor: none;
}

:root {
    --primary-color: rgba(51, 255, 102, 1);
    --primary-color-alpha: rgba(51, 255, 102, 0.15);
    --background: #000000;
    --text: #ffffff;
}

body {
    font-family: 'Your-Primary-Font', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    background-color: var(--background);
    color: var(--text);
    height: 100vh;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.content {
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

h1 {
    font-family: 'Formula Condensed', system-ui, -apple-system, sans-serif;
    font-display: swap;
    font-size: clamp(4rem, 12vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    margin: 0;
    mix-blend-mode: difference;
    margin-bottom: -0.2rem;
}

.subtitle {
    font-family: 'Formula Condensed', system-ui, -apple-system, sans-serif;
    font-display: swap;
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    mix-blend-mode: difference;
    margin-bottom: 0.5rem;
}

.coming-soon {
    font-family: 'Formula Condensed', system-ui, -apple-system, sans-serif;
    font-display: swap;
    font-size: clamp(0.9rem, 3vw, 1.4rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.85;
    mix-blend-mode: difference;
}

.gradient-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, var(--primary-color-alpha) 0%, rgba(0, 0, 0, 0.9) 70%);
    z-index: 1;
    transform: translate3d(0,0,0);
    will-change: background;
}

.cursor {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    opacity: 0.5;
    transform: translate3d(0,0,0);
    will-change: transform;
}

@media (hover: none) and (pointer: coarse) {
    html, body, a, button, [role="button"] {
        cursor: auto;
    }
    
    .cursor {
        display: none;
    }
}
 