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

body {
    font-family: system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #fce4ec 0%, #f8bbd0 60%, #4a8c3f 60%, #3a7a2f 100%);
    color: #1a202c;
    overflow: hidden;
}

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

main {
    text-align: center;
    padding: 1.5rem 2.5rem;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    pointer-events: none;
}

h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
p { font-size: 1.2rem; color: #4a5568; }
