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

body {
    background-color: #050505;
    background: radial-gradient(circle at center, #1a0b12 0%, #050505 100%);
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    font-family: 'Inter', sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

canvas {
    display: block;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(255, 77, 109, 0.5));
}

.overlay-text {
    position: absolute;
    z-index: -1; /* hidden, just used to measure/draw text to an offscreen canvas if needed */
    opacity: 0;
    font-family: 'Dancing Script', cursive;
    font-size: 150px;
    font-weight: 700;
    text-align: center;
    pointer-events: none;
}
