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

body {
    background: #020204;
    overflow: hidden;
    font-family: 'Helvetica Neue', 'Hiragino Sans', sans-serif;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1.5s ease;
}

canvas.fading {
    opacity: 0;
}

#confession {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    pointer-events: none;
    z-index: 10;
    padding: 2rem;
}

#confession .line {
    font-size: clamp(0.9rem, 2.5vw, 1.4rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0);
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1.6;
    transition: color 2s ease;
    max-width: 600px;
}

#confession .line.visible {
    color: rgba(255, 255, 255, 0.85);
}

#confession .line.dim {
    color: rgba(255, 255, 255, 0.3);
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
}
