.mini-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.mini-modal-content {
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    padding: 20px;
    border-radius: 15px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
}

.mini-modal-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: white;
}

.mini-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

#watch-ad-for-hint {
    background: linear-gradient(135deg, #2196f3, #0d47a1);
}

#buy-hints {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

#cancel-hint {
    background: rgba(255, 255, 255, 0.2);
}

