/* Modal Styles */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--modal-bg);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 24px;
    border-radius: 16px;
    width: 85%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.active {
    display: flex;
}

.modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.reward-header {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--reward-color);
}

.reward-message {
    font-size: 16px;
    margin-bottom: 12px;
}

.reward-amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--reward-color);
    margin-bottom: 16px;
}

.reward-info {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.4;
}

.continue-reward-btn {
    background-color: #000000;
    color: white;
    border: none;
    padding: 14px 20px;
    width: 100%;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.continue-reward-btn:hover {
    background-color: #333333;
}

.final-content {
    padding: 32px;
}

.final-content .reward-amount {
    font-size: 48px;
    margin: 24px 0;
}