.mystic-disabled-content {
    pointer-events: none;
    opacity: 0.5;
    position: relative;
}

#mystic-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    width: 300px;
    border-radius: 10px;
    padding: 20px;
}

#mystic-modal-content {
    background: purple;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

#mystic-modal-content a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

#mystic-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: white;
    font-weight: bold;
}