body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
}

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

.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding-left: 12vw;
    pointer-events: none; /* Let clicks pass through to canvas, except for button */
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 6rem;
    line-height: 1.1;
    margin: 0 0 15px 0;
    font-weight: 800;
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #a0aab5;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 400px;
    line-height: 1.6;
}

button {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 48px;
    font-size: 1.1rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(79, 172, 254, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(79, 172, 254, 0.2);
}

@media (max-width: 768px) {
    h1 {
        font-size: 4rem;
    }
    .content {
        padding-left: 8vw;
    }
}
