:root {
    --primary: #ffffff;
    --bg-overlay: rgba(5, 5, 10, 0.3);
    --glass-bg: rgba(20, 20, 30, 0.4);
    --glass-border: rgba(255, 255, 255, 0.15);
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: var(--primary);
    background-color: #000;
}

#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;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--bg-overlay);
    text-align: center;
    pointer-events: none; /* Let mouse events pass through to canvas */
    padding: 2rem;
    box-sizing: border-box;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin: 0 0 1rem 0;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-shadow: 0 4px 24px rgba(0,0,0,0.8);
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fade-in-up 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin: 0 0 3rem 0;
    max-width: 600px;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    animation: fade-in-up 1s ease-out 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.cta-button {
    pointer-events: auto; /* Enable clicks on button */
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fade-in-up 1s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(165, 180, 252, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-button:active {
    transform: translateY(0) scale(0.95) !important;
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
