body { 
    margin: 0; 
    overflow: hidden; 
    background-color: #050205; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

#overlay {
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 5, 10, 0.9); 
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; 
    color: #ffccdd; 
    z-index: 10;
}

button {
    padding: 15px 30px; font-size: 18px; cursor: pointer; border: none;
    border-radius: 30px; background: #ff6699; color: white; font-weight: bold;
    transition: background 0.3s, transform 0.2s; margin-top: 20px;
    box-shadow: 0 4px 15px rgba(255, 102, 153, 0.4);
}

button:hover { 
    background: #ff3377; 
    transform: scale(1.05);
}

#noteOverlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 2, 6, 0.7); 
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 20; 
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.paper-note {
    background: #fdf8e3; 
    padding: 40px 50px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    max-width: 80%;
    text-align: center;
    font-family: 'Caveat', cursive; 
    color: #2c1a22; 
    font-size: 32px;
    line-height: 1.4;
    transform: rotate(-2deg); 
    cursor: pointer;
    transition: transform 0.3s;
    white-space: pre-wrap; 
}

.paper-note:hover {
    transform: rotate(0deg) scale(1.02); 
}

.click-to-continue {
    font-family: sans-serif;
    font-size: 14px;
    color: #997a8d;
    margin-top: 30px;
    letter-spacing: 1px;
}

#flowerTextOverlay {
    position: absolute;
    bottom: 15%; 
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    z-index: 15;
    pointer-events: none; 
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

#flowerTextContent {
    font-family: 'Caveat', cursive; 
    font-size: 38px;
    color: #ffe6f2; 
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 102, 153, 0.6); 
    margin: 0;
    white-space: pre-wrap;
    letter-spacing: 1px;
}