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

body {
    overflow: hidden;
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

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

.content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* Let clicks pass through to canvas if needed, though we track mouse globally */
    text-align: center;
    mix-blend-mode: overlay; /* Blends text nicely with the light */
}

h1 {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
    opacity: 0.9;
}

p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.7;
}
