/* Recharge specific styles */
.recharge-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background: var(--bg);
}

.recharge-box {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 40px;
    width: 100%;
    max-width: 480px;
    transition: transform 0.3s;
}

.recharge-box h1 {
    font-size: 26px;
    margin-bottom: 25px;
    color: var(--primary);
    text-align: center;
    font-weight: 700;
}

.info-box {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    font-size: 15px;
    border: 1px solid var(--border);
}

.info-box span {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text);
}

.info-box span:last-child {
    margin-bottom: 0;
}

.info-box span strong {
    color: var(--text-secondary);
    font-weight: 500;
}

.info-box .amount-val {
    font-weight: 700;
    color: var(--success);
    font-size: 18px;
}

.hint {
    font-size: 12px;
    color: var(--danger);
    display: none;
    margin-top: 6px;
}

.btn-recharge {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    margin-top: 15px;
    border-radius: 8px;
}

.result {
    margin-top: 25px;
    padding: 20px;
    border-radius: 8px;
    font-size: 15px;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 500px) {
    .recharge-box { padding: 30px 20px; }
}
