.instructions-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background: linear-gradient(135deg, #ffd6e0 0%, #fff9c4 100%);
    border-radius: 30px;
    padding: 50px 30px;
    box-sizing: border-box;
    z-index: 2000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.title {
    font-family: 'WillyWonka', script;
    font-size: 3rem;
    color: #c0577a;
}

.play-modal-body {
    color: #222222;
}

.instructions-modal::before { content: '🍭'; position: absolute; top: 10px; left: 12px; font-size: 1.8rem; }
.instructions-modal::after  { content: '🍭'; position: absolute; top: 10px; right: 12px; font-size: 1.8rem; }

.close-instructions-btn {
    background: #ffb3c6;
    border: none;
    border-radius: 20px;
    padding: 10px 28px;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'WillyWonka', script;
    transition: background 0.2s;
}

.close-instructions-btn:hover {
    background: #ff85a1;
}