body {
    background: #f9f6f1;
    margin: 0;
    font-family: 'Dancing Script', cursive;
    color: #5a3e36
}

.tingle-modal {
    background: #a05c68;
}

.tingle-modal-box {
    background: #fffdf9 url('https://www.transparenttextures.com/patterns/paper-fibers.png') repeat;
    font-family: 'Dancing Script', cursive;
    color: #5a3e36;
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    line-height: 1.9;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #e8d7d3;
}

.seal-animated {
    font-size: 2rem;
    color: #a05c68;
    /* soft muted red */
    position: absolute;
    top: -10px;
    right: -8px;
    animation: popIn 0.7s ease forwards;
    transform: scale(0);
}

@keyframes popIn {
    to {
        transform: scale(1);
    }
}

#typed-letter {
    font-family: 'Handlee', cursive;
    white-space: pre-wrap;
    font-size: 1.1rem;
    color: #5a3e36;
}

.modal-btn {
    background: #d8a7b1;
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 1.5rem;
    font-family: 'Dancing Script', cursive;
}

.modal-btn:hover {
    background: #c98b9b;
}

@media (max-width: 480px) {
    .tingle-modal-box {
        padding: 1.2rem;
        width: 92vw;
        font-size: 1rem;
    }

    #typed-letter {
        font-size: 1rem;
    }
}