:root {
    --primary: #00c6ff;
    --secondary: #0072ff;
    --bg: #050505;
    --text: #ffffff;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow: hidden; /* Prevent scrolling */
    height: 100vh;
    width: 100vw;
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Behind text */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* In front of canvas */
    display: flex;
    align-items: center;
    padding-left: 10%;
    pointer-events: none; /* Let clicks pass through empty areas */
}

.content {
    max-width: 600px;
    pointer-events: auto; /* Re-enable clicks for buttons */
}

.subtitle {
    color: var(--primary);
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 700;
}

h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
}

.btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .overlay { padding-left: 5%; padding-right: 5%; justify-content: center; text-align: center; }
}