.recharge-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.recharge-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.recharge-hero .container {
    position: relative;
    z-index: 1;
}
.recharge-hero h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.balance-card {
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}
.balance-amount {
    font-size: 2.5rem;
    font-weight: 800;
}
.vip-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.25);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
}
/* Tab Section Styles */
.recharge-tabs-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}
.recharge-tabs-container {
    max-width: 800px;
    margin: 0 auto;
}
.recharge-nav-tabs {
    border: none;
    background: white;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}
.recharge-nav-tabs .nav-link {
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.recharge-nav-tabs .nav-link:hover {
    color: #333;
    background: #f8f9fa;
}
.recharge-nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}
.recharge-nav-tabs .nav-link i {
    font-size: 1.2rem;
}
.tab-content-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}
/* Gift Card Styles */
.gift-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.gift-card-icon i {
    font-size: 36px;
    color: white;
}
.gift-card-input {
    border: 2px solid #dee2e6;
    border-radius: 14px;
    font-size: 1.1rem;
    padding: 16px 20px;
    letter-spacing: 2px;
    font-family: 'Monaco', 'Consolas', monospace;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.gift-card-input:focus {
    border-color: #9b59b6;
    box-shadow: 0 0 0 4px rgba(155,89,182,0.15);
}
.gift-card-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 14px;
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    border: none;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
}
.gift-card-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(155,89,182,0.3);
    color: white;
}
/* Recharge Amount Styles */
.recharge-amount-card {
    border: 2px solid #dee2e6;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.recharge-amount-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.recharge-amount-card.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 15px 40px rgba(102,126,234,0.3);
}
.recharge-amount-card .amount {
    font-size: 2rem;
    font-weight: 800;
}
.recharge-amount-card .bonus {
    font-size: 0.9rem;
    color: #28a745;
    margin-top: 6px;
    font-weight: 600;
}
.recharge-amount-card.selected .bonus {
    color: rgba(255,255,255,0.95);
}
.recharge-amount-card .final-price {
    font-size: 1.3rem;
    margin-top: 8px;
    font-weight: 700;
}
.recharge-amount-card.selected .final-price {
    color: #fff;
}
.payment-modal .modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
}
.payment-modal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 24px 28px;
}
.payment-modal .modal-body {
    padding: 32px;
}
.payment-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}
.payment-methods {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.payment-method {
    flex: 1;
    border: 2px solid #dee2e6;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.payment-method:hover, .payment-method.selected {
    border-color: #667eea;
}
.payment-method.selected {
    background: linear-gradient(135deg, #f0f0ff 0%, #e8e8ff 100%);
}
.payment-method i {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.not-logged-in-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
/* Dark Mode Styles */
[data-theme="dark"] .recharge-tabs-section {
    background: linear-gradient(180deg, var(--section-bg, #1a1a2e) 0%, var(--body-bg, #16213e) 100%);
}
[data-theme="dark"] .recharge-nav-tabs {
    background: var(--card-bg, #1e1e2f);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
[data-theme="dark"] .recharge-nav-tabs .nav-link {
    color: var(--text-muted, #a0a0a0);
}
[data-theme="dark"] .recharge-nav-tabs .nav-link:hover {
    color: var(--text-color, #e0e0e0);
    background: rgba(255,255,255,0.05);
}
[data-theme="dark"] .tab-content-card {
    background: var(--card-bg, #1e1e2f);
    border-color: var(--border-color, rgba(255,255,255,0.1));
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
[data-theme="dark"] .gift-card-input {
    background: var(--input-bg, #2a2a3e);
    border-color: var(--border-color, rgba(255,255,255,0.1));
    color: var(--text-color, #e0e0e0);
}
[data-theme="dark"] .gift-card-input:focus {
    border-color: #9b59b6;
    box-shadow: 0 0 0 4px rgba(155,89,182,0.25);
}
[data-theme="dark"] .recharge-amount-card {
    background: var(--card-bg, #1e1e2f);
    border-color: var(--border-color, rgba(255,255,255,0.1));
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
[data-theme="dark"] .recharge-amount-card:hover {
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
[data-theme="dark"] .recharge-amount-card .amount {
    color: var(--text-color, #e0e0e0);
}
[data-theme="dark"] .payment-modal .modal-content {
    background: var(--card-bg, #1e1e2f);
    color: var(--text-color, #e0e0e0);
}
[data-theme="dark"] .payment-info {
    background: var(--section-bg, #1a1a2e);
}
[data-theme="dark"] .payment-method {
    background: var(--card-bg, #1e1e2f);
    border-color: var(--border-color, rgba(255,255,255,0.1));
    color: var(--text-color, #e0e0e0);
}
[data-theme="dark"] .payment-method:hover,
[data-theme="dark"] .payment-method.selected {
    border-color: #667eea;
}
[data-theme="dark"] .payment-method.selected {
    background: linear-gradient(135deg, rgba(102,126,234,0.2) 0%, rgba(118,75,162,0.2) 100%);
}
[data-theme="dark"] .not-logged-in-section {
    background: linear-gradient(135deg, var(--section-bg, #1a1a2e) 0%, var(--body-bg, #16213e) 100%);
}
[data-theme="dark"] .custom-amount-input {
    background: var(--input-bg, #2a2a3e);
    border-color: var(--border-color, rgba(255,255,255,0.1));
    color: var(--text-color, #e0e0e0);
}
[data-theme="dark"] .text-muted {
    color: var(--text-muted, #a0a0a0) !important;
}
/* Mobile Bottom Toolbar */
.mobile-toolbar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg, #ffffff);
    border-top: 1px solid var(--border-color, #e0e0e0);
    padding: 8px 0;
    z-index: 1030;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .mobile-toolbar.enabled {
        display: block;
    }
    body.has-mobile-toolbar {
        padding-bottom: 70px;
    }
}
.mobile-toolbar-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.mobile-toolbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-muted, #666);
    font-size: 0.75rem;
    padding: 4px 12px;
    transition: color 0.2s;
}
.mobile-toolbar-item i {
    font-size: 1.3rem;
    margin-bottom: 2px;
}
.mobile-toolbar-item:hover,
.mobile-toolbar-item.active {
    color: var(--primary-color, #667eea);
}
[data-theme="dark"] .mobile-toolbar {
    background: var(--card-bg, #1e1e2f);
    border-color: var(--border-color, rgba(255,255,255,0.1));
}
[data-theme="dark"] .mobile-toolbar-item {
    color: var(--text-muted, #a0a0a0);
}
[data-theme="dark"] .mobile-toolbar-item:hover,
[data-theme="dark"] .mobile-toolbar-item.active {
    color: var(--primary-color, #667eea);
}
