@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&amp;display=swap');

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    overflow: hidden;
    background: #000;
}*/

#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

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

#canvas:active {
    cursor: grabbing;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 0 20px;
    pointer-events: none;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.hero-content p {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: #ddd;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-content button {
    pointer-events: all;
    padding: 16px 48px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(90deg, #71ffcc, #fff);
    color: #000;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 0 40px rgba(113, 255, 204, 0.6);
    transition: all 0.3s ease;
}

.hero-content button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(113, 255, 204, 0.9);
}

/* Subtle vignette for pure black background */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        transparent 35%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 2;
    pointer-events: none;
}
