/* Estilos para o Pop-up de Depósito */
.deposit-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    overflow-y: auto;
}

.deposit-modal-content {
    background-color: #003366; /* Azul escuro como na imagem */
    margin: 5% auto;
    width: 90%;
    max-width: 450px;
    border-radius: 20px;
    color: white;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

.deposit-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.deposit-modal-header h2 {
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-deposit {
    font-size: 24px;
    cursor: pointer;
    color: #ccc;
}

.deposit-tabs {
    display: flex;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.deposit-tab {
    padding: 15px 0;
    margin-right: 20px;
    color: #00aaff;
    border-bottom: 2px solid #00aaff;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
}

.deposit-body {
    padding: 20px;
}

.deposit-label-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.bonus-explanation {
    color: #00aaff;
    text-decoration: none;
}

.deposit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.deposit-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.deposit-option:hover, .deposit-option.active {
    background: rgba(0, 170, 255, 0.2);
    border-color: #00aaff;
}

.deposit-val {
    display: block;
    font-weight: bold;
    font-size: 0.9rem;
}

.deposit-bonus {
    display: block;
    color: #ffcc00;
    font-size: 0.75rem;
    margin-top: 2px;
}

.deposit-input-container {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
}

.deposit-input-container span {
    color: #00aaff;
    font-weight: bold;
    margin-right: 5px;
}

.deposit-input-container input {
    background: transparent;
    border: none;
    color: white;
    width: 80%;
    outline: none;
    font-size: 0.9rem;
}

.deposit-offer-card {
    border: 1px solid #ff4444;
    border-radius: 12px;
    padding: 15px;
    margin-top: 20px;
    background: rgba(255, 68, 68, 0.05);
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.offer-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 1rem;
}

.offer-timer {
    background: #ff4444;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.offer-divider {
    text-align: center;
    position: relative;
    margin: 15px 0;
    font-size: 0.7rem;
    color: #aaa;
}

.offer-divider::before, .offer-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 25%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.offer-divider::before { left: 0; }
.offer-divider::after { right: 0; }

.bonus-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.bonus-icon {
    width: 40px;
    height: 40px;
    background: #ffcc00;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bonus-info {
    flex-grow: 1;
}

.bonus-name {
    display: block;
    font-weight: bold;
    color: #ffcc00;
}

.bonus-desc {
    display: block;
    font-size: 0.75rem;
    color: #ccc;
}

.expand-btn {
    text-align: center;
    color: #00aaff;
    font-size: 0.8rem;
    margin-top: 10px;
    cursor: pointer;
}

.deposit-footer {
    padding: 20px;
}

.btn-deposit-now {
    width: 100%;
    background: #00aaff;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-deposit-now:hover {
    background: #0088cc;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .deposit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .deposit-modal-content {
        margin: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}
