﻿/* --- MODAL WRAPPER (background overlay) --- */
.wallet-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); /* Dark backdrop */
    animation: walletFadeIn 0.25s ease;
}

/* --- MODAL BOX --- */
.wallet-modal-content {
    background-color: #283618;
    margin: 5% auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    color: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

/* Fade-in animation */
@keyframes walletFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.wallet-group {
    margin-top: 20px;
}

.wallet-group-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.wallet-group-header span {
    color: #7cb342;
    font-size: 16px;
    margin-left: 5px;
}

.wallet-group-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.wallet-payment-item {
    background-color: #3a4b1a;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
    border: 1px solid #4f772d;
}

    .wallet-payment-item:hover {
        background-color: #4f772d;
        transform: translateY(-3px);
    }

    .wallet-payment-item img {
        width: 150px;
        height: auto;
        margin-bottom: 10px;
        border-radius: 6px;
    }

.wallet-payment-info p {
    margin: 3px 0;
    font-size: 14px;
    color: #ddd;
}

.wallet-payment-info span {
    color: #fff;
    font-weight: 500;
}

.bonus-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  animation: bonusFadeIn 0.25s ease;
}

.bonus-modal-content {
  margin: 3% auto;
  padding: 10px;
  border-radius: 12px;
  max-width: 1000px;
  position: center;
}

@keyframes bonusFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}





