/* ============================================
   Quick Pay - Mobile First Design System
   ============================================ */

:root {
    --primary-orange: #D32F2F;        /* Main red from logo */
    --dark-brown: #1B5E20;            /* Deep green from Q letter */
    --light-peach: #FFEBEE;           /* Light red background */
    --accent-gold: #FF5722;           /* Bright orange-red accent */
    --text-dark: #2D2D2D;             /* Keep as is */
    --text-light: #6C757D;            /* Keep as is */
    --bg-light: #F8F9FA;              /* Keep as is */
    --white: #FFFFFF;                 /* Keep as is */
    --success: #388E3C;               /* Medium green (matches logo green theme) */
    --danger: #D32F2F;                /* Red (matches primary) */
    --warning: #FF9800;               /* Orange warning */
    --info: #1976D2;                  /* Blue info */
    --border-color: #E9ECEF;          /* Keep as is */
    --shadow-sm: 0 2px 8px rgba(211, 47, 47, 0.08);
    --shadow-md: 0 4px 16px rgba(211, 47, 47, 0.12);
    --shadow-lg: 0 8px 24px rgba(211, 47, 47, 0.16);
}

/* ============================================
   Reset & Base Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

/* ============================================
   Authentication Pages
   ============================================ */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--light-peach) 0%, var(--white) 50%, var(--light-peach) 100%);
    position: relative;
    overflow: hidden;
}

.auth-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.auth-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 179, 71, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.auth-container {
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 2;
}

/* Logo Section */
.auth-logo {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 0.6s ease;
}

.logo-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 12px 32px rgba(255, 140, 66, 0.3);
    animation: scaleIn 0.8s ease;
}

.logo-circle i {
    font-size: 36px;
    color: var(--white);
}

.app-name {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dark-brown), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.welcome-text {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
}

/* Form Styles */
.auth-form {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.6s ease;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-label i {
    color: var(--primary-orange);
    font-size: 16px;
}

.form-control {
    width: 100%;
    height: 54px;
    padding: 0 18px;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.1);
}

.form-control::placeholder {
    color: #A0A0A0;
    font-weight: 400;
}

/* Password Input */
.password-input-wrapper {
    position: relative;
}

.password-input-wrapper .form-control {
    padding-right: 50px;
}

.password-toggle {
    position: absolute;
    right: 0;
    top: 0;
    height: 54px;
    width: 54px;
    border: none;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary-orange);
}

/* Form Footer */
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.remember-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.remember-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-orange);
}

.remember-checkbox span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.forgot-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: var(--dark-brown);
}

/* Buttons */
.btn-primary {
    width: 100%;
    height: 54px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-block {
    width: 100%;
}

/* Alerts */
.alert {
    padding: 16px 18px;
    border-radius: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    animation: slideDown 0.4s ease;
}

.alert i {
    font-size: 18px;
}

.alert-success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.alert-danger {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.alert-warning {
    background: #ffcdcd;
    color: #856404;
    border: 1px solid #FFEAA7;
}

.alert-info {
    background: #D1ECF1;
    color: #0C5460;
    border: 1px solid #BEE5EB;
}

/* Divider */
.divider {
    position: relative;
    text-align: center;
    margin: 32px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.divider span {
    position: relative;
    display: inline-block;
    padding: 0 16px;
    background: var(--white);
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

/* Bottom Link */
.bottom-link {
    text-align: center;
    margin-top: 24px;
    animation: fadeIn 0.8s ease;
}

.bottom-link p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.link-primary {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.link-primary:hover {
    color: var(--dark-brown);
    transform: translateY(-2px);
}

/* ============================================
   Dashboard Layout
   ============================================ */

.app-wrapper {
    min-height: 100vh;
    background: var(--bg-light);
    padding-bottom: 80px;
}

.main-content {
    padding: 16px;
    padding-top: 76px;
}

/* Header */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 10px;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-btn {
    position: relative;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 10px;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: var(--danger);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--white);
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    z-index: 999;
    padding: 0 8px;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 12px;
}

.nav-item.active {
    color: var(--primary-orange);
    background: rgba(255, 140, 66, 0.1);
}

.nav-item i {
    font-size: 22px;
}

.nav-item span {
    font-size: 11px;
    font-weight: 600;
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Responsive Adjustments
   ============================================ */

@media (max-width: 380px) {
    .auth-form {
        padding: 24px 20px;
    }
    
    .app-name {
        font-size: 28px;
    }
    
    .form-control {
        height: 50px;
        font-size: 14px;
    }
    
    .btn-primary {
        height: 50px;
    }
}

/* iOS Safe Area */
@supports (padding: max(0px)) {
    .app-header {
        padding-top: max(0px, env(safe-area-inset-top));
        height: calc(60px + max(0px, env(safe-area-inset-top)));
    }
    
    .bottom-nav {
        padding-bottom: max(0px, env(safe-area-inset-bottom));
        height: calc(70px + max(0px, env(safe-area-inset-bottom)));
    }
    
    .main-content {
        padding-top: calc(76px + max(0px, env(safe-area-inset-top)));
        padding-bottom: calc(80px + max(0px, env(safe-area-inset-bottom)));
    }
}


/* Sidebar */
/* Sidebar */
.sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    padding: 24px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    position: relative;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.user-phone {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.close-sidebar {
    position: absolute;
    top: 24px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
}

.sidebar-nav {
    padding: 20px 0;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    background: rgba(255, 140, 66, 0.1);
    color: var(--primary-orange);
    border-left: 4px solid var(--primary-orange);
}

.sidebar-nav .nav-link i {
    font-size: 20px;
    width: 24px;
}

.sidebar-nav .nav-link.logout {
    color: var(--danger);
}

/* End of Sidebar */



/* Field validation states */
.form-control.valid {
    border-color: #10B981 !important;
}

.form-control.invalid {
    border-color: #EF4444 !important;
}

/* Success/Error message styling */
.field-error,
.field-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 6px;
}

.field-error i,
.field-hint i {
    font-size: 14px;
}

/* Button disabled state */
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-primary:disabled:hover {
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.3);
}



/* ============================================
   Dashboard Styles
   ============================================ */

/* Balance Card */
.balance-card {
    
    background: linear-gradient(135deg, var(--dark-brown), var(--dark-brown));
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 32px rgb(255 99 66 / 30%);
}

.balance-card-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.balance-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.balance-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 500;
}

.balance-amount {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    margin: 0;
}

.add-money-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.add-money-btn:active {
    transform: scale(0.95);
}

.quick-actions {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.quick-action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    text-decoration: none;
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.quick-action-btn:active {
    transform: scale(0.95);
}

.quick-action-btn i {
    font-size: 22px;
}

.quick-action-btn span {
    font-size: 12px;
    font-weight: 600;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.view-all-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-orange);
    text-decoration: none;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-item:active {
    transform: scale(0.95);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.service-item:active .service-icon {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-icon i {
    font-size: 28px;
    color: var(--white);
}

.service-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

/* Transactions List */
.transactions-list {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
}

.empty-state i {
    font-size: 48px;
    color: var(--border-color);
    margin-bottom: 16px;
}

.empty-state p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.empty-state span {
    font-size: 13px;
    color: var(--text-light);
}

/* Bottom Navigation - Enhanced */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--white);
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    z-index: 999;
    padding: 0 8px;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 12px;
    position: relative;
}

.nav-item.active {
    color: var(--primary-orange);
}

.nav-item i {
    font-size: 22px;
    transition: all 0.3s ease;
}

.nav-item span {
    font-size: 11px;
    font-weight: 600;
}

.nav-item:active {
    transform: scale(0.95);
}

/* Center Wallet Button */
.nav-item-center {
    position: relative;
    margin-top: -30px;
}

.center-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--dark-brown), var(--dark-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.4);
    border: 4px solid var(--white);
}

.center-icon i {
    font-size: 28px;
    color: var(--white);
}

.nav-item-center:active .center-icon {
    transform: scale(0.95);
}

/* Sidebar Balance */
.sidebar-balance {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    padding: 20px;
    margin: 20px;
    border-radius: 16px;
    color: var(--white);
}

.sidebar-balance-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.sidebar-balance-label {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.sidebar-balance-amount {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.sidebar-divider {
    height: 1px;
    background: var(--border-color);
    margin: 12px 24px;
}

/* Responsive */
@media (max-width: 380px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .balance-amount {
        font-size: 32px;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
}

/* Deposit */
/* Add Balance – compact mobile layout */
/* ============================================
   Add Balance - Redesigned Mobile First
   ============================================ */

.deposit-screen {
    background: linear-gradient(180deg, var(--light-peach) 0%, #fff 200px);
}

/* Balance Display Card */
.balance-display-card {
    position: relative;
    /*linear-gradient(135deg, #1E293B 0%, #0F172A 100%)*/
    background: #1B5E20;
    border-radius: 28px;
    padding: 32px 24px;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.balance-glow {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.balance-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.balance-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.balance-value {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.balance-currency {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: rgba(255, 140, 66, 0.2);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-gold);
}

/* Payment Method Tabs */
.payment-methods-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.method-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--text-light);
}

.method-tab i {
    font-size: 24px;
}

.method-tab span {
    font-size: 13px;
}

.method-tab.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.3);
}

/* Network Card */
.network-card {
    background: #fff;
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

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

.network-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.network-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: contain;
}

.network-name {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 2px 0;
    color: var(--text-dark);
}

.network-chain {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.network-badge {
    padding: 6px 14px;
    background: linear-gradient(135deg, #f64e25, #e7412a);
    color: #fff;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.network-min {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: var(--light-peach);
    border-radius: 12px;
    font-size: 13px;
    color: var(--text-dark);
}

.network-min i {
    color: var(--primary-orange);
    font-size: 16px;
}

/* QR Section */
.qr-section {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.qr-header {
    margin-bottom: 20px;
}

.qr-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--text-dark);
}

.qr-subtitle {
    font-size: 13px;
    color: var(--text-light);
}

.qr-container {
    position: relative;
    width: 240px;
    height: 240px;
    margin: 0 auto 16px;
}

.qr-background {
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 28px;
    opacity: 0.1;
}

.qr-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.qr-note {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
    padding: 10px 16px;
    background: var(--light-peach);
    border-radius: 12px;
    display: inline-block;
}

/* Address Section */
.address-section {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.address-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.address-label i {
    color: var(--primary-orange);
}

.address-container {
    display: flex;
    gap: 8px;
}

.address-input {
    flex: 1;
    padding: 14px 16px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-size: 13px;
    color: var(--text-dark);
    font-family: 'Courier New', monospace;
    overflow: hidden;
    text-overflow: ellipsis;
}

.address-input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border: none;
    border-radius: 14px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.3);
}

.copy-btn:active {
    transform: scale(0.96);
}

/* Instructions Card */
.instructions-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.instructions-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: var(--text-dark);
}

.instructions-title i {
    color: var(--primary-orange);
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step {
    display: flex;
    gap: 14px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--text-dark);
}

.step-desc {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* Warning Card */
.warning-card {
    display: flex;
    gap: 16px;
    background: #ffcdcd;
    border-radius: 20px;
    padding: 18px;
    border-left: 4px solid #FFB020;
    margin-bottom: 20px;
}

.warning-icon {
    width: 44px;
    height: 44px;
    background: #FFB020;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.warning-content {
    flex: 1;
}

.warning-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #856404;
}

.warning-list {
    padding-left: 18px;
    margin: 0;
}

.warning-list li {
    font-size: 13px;
    color: #856404;
    margin-bottom: 6px;
}

/* Coming Soon Card */
.coming-soon-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #fff;
}

.coming-soon-icon.upi {
    background: linear-gradient(135deg, #f64e25, #e7412a);
}

.coming-soon-title {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: var(--text-dark);
}

.coming-soon-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Copy Toast */
.copy-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: #1E293B;
    color: #fff;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.copy-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.copy-toast i {
    color: #10B981;
    font-size: 18px;
}

/* Hidden */
.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 380px) {
    .balance-value {
        font-size: 42px;
    }
    
    .qr-container {
        width: 200px;
        height: 200px;
    }
    
    .method-tab i {
        font-size: 20px;
    }
}


/* Coming Soon - REDESIGNED (More Prominent) */
.coming-soon-wrapper {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.coming-soon-badge-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(135deg, #f64e25, #e7412a);
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.3);
}

.coming-soon-badge-large.upi-badge {
    background: linear-gradient(135deg, #f64e25, #e7412a);
    box-shadow: 0 4px 16px rgb(185 26 16 / 30%);
}

.coming-soon-badge-large i {
    font-size: 24px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.coming-soon-content-new {
    padding: 40px 24px 32px;
    text-align: center;
}

.coming-soon-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f64e25, #e7412a);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 48px;
    color: #fff;
    box-shadow: 0 12px 32px rgba(255, 140, 66, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

.coming-soon-icon-large.upi-icon {
    background: linear-gradient(135deg, #f64e25, #e7412a);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.3);
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.coming-soon-heading {
    font-size: 26px;
    font-weight: 900;
    margin: 0 0 8px 0;
    color: var(--text-dark);
}

.coming-soon-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin: 0 0 28px 0;
    line-height: 1.5;
}

/* Progress Timeline */
.coming-soon-timeline {
    margin-bottom: 28px;
}

.timeline-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-light);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 10px;
}

.timeline-progress {
    height: 100%;
    background: linear-gradient(135deg, #f64e25, #e7412a);
    border-radius: 999px;
    animation: progressShine 2s ease-in-out infinite;
    position: relative;
}

.timeline-progress.upi-progress {
    background: linear-gradient(90deg, #f64e25, #e7412a);
}

@keyframes progressShine {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.timeline-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Brand Badges */
.coming-soon-brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.brand-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 20px;
    background: var(--light-peach);
    border-radius: 16px;
    min-width: 80px;
    transition: all 0.3s ease;
}

.brand-badge:active {
    transform: scale(0.95);
}

.brand-badge.upi-brand {
    background: var(--light-peach);
}

.brand-badge i {
    font-size: 28px;
    color: var(--primary-orange);
}

.brand-badge.upi-brand i {
    color: #e7412a;
}

.brand-badge span {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Notify Box */
.notify-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 179, 71, 0.1));
    border: 2px dashed var(--primary-orange);
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.notify-box.upi-notify {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border-color: #10B981;
}

.notify-box i {
    font-size: 18px;
    color: var(--primary-orange);
}

.notify-box.upi-notify i {
    color: #10B981;
}

/* Responsive */
@media (max-width: 380px) {
    .coming-soon-badge-large {
        font-size: 16px;
        padding: 16px;
    }
    
    .coming-soon-icon-large {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
    
    .coming-soon-heading {
        font-size: 22px;
    }
    
    .coming-soon-brands {
        gap: 8px;
    }
    
    .brand-badge {
        min-width: 70px;
        padding: 12px 16px;
    }
}


/* Income */
/* ============================================
   Earnings Page Styles
   ============================================ */

.earnings-screen {
    background: linear-gradient(180deg, #1E293B 0%, var(--bg-light) 300px);
}

/* Hero Earnings Card */
.earnings-hero-card {
    position: relative;
    background: linear-gradient(135deg, var(--dark-brown), var(--dark-brown));
    border-radius: 28px;
    padding: 36px 24px;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.earnings-glow {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.earnings-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.earnings-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.earnings-total {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1;
}

.earnings-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Income Cards Grid */
.income-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.income-card {
    background: #fff;
    border-radius: 20px;
    padding: 16px 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.income-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.income-card.registration::before {
    background: linear-gradient(90deg, #f44336, #2563EB);
}

.income-card.level::before {
    background: linear-gradient(90deg, #1b5f21, #7C3AED);
}

.income-card.roi::before {
    background: linear-gradient(90deg, #f64e25, #e7412a);
}

.income-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.income-card.registration .income-card-icon {
    background: linear-gradient(135deg, #ef4927, #ed4528);
}

.income-card.level .income-card-icon {
    background: linear-gradient(135deg, #ef4927, #ed4528);
}

.income-card.roi .income-card-icon {
    background: linear-gradient(135deg, #ef4927, #ed4528);
}

.income-card-label {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 600;
}

.income-card-amount {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: var(--text-dark);
}

/* Info Tabs */
.income-info-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.info-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 12px;
    color: var(--text-light);
}

.info-tab i {
    font-size: 20px;
}

.info-tab.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.3);
}

/* Info Sections */
.income-info-section {
    display: none;
}

.income-info-section.active {
    display: block;
}

.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.info-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.info-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.info-badge {
    padding: 6px 12px;
    background: linear-gradient(135deg, #f14b26, #e43f2a);
    color: #fff;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.info-badge.level-badge {
    background: linear-gradient(135deg, #1a5e20, #1b5f21);
}

.info-badge.roi-badge {
    background: linear-gradient(135deg, #f64e25, #e7412a);
}

.info-description {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Level Requirements */
.level-requirements {
    background: var(--light-peach);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
}

.requirements-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--text-dark);
}

.requirement-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.requirement-item:last-child {
    border-bottom: none;
}

.req-level {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.req-value {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-orange);
}

.requirement-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 12px;
    background: rgba(255, 140, 66, 0.1);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.requirement-note i {
    color: var(--primary-orange);
}

/* ROI Slabs */
.roi-slabs {
    background: #ECFDF5;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
}

.slabs-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--text-dark);
}

.slab-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.slab-item:last-child {
    border-bottom: none;
}

.slab-item.highlight {
    background: rgba(16, 185, 129, 0.1);
    padding: 10px 12px;
    border-radius: 12px;
    margin-top: 6px;
}

.slab-range {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.slab-rate {
    font-size: 14px;
    font-weight: 800;
    color: #10B981;
}

/* Transactions List */
.transactions-list {
    margin-top: 20px;
}

.transactions-header {
    margin-bottom: 12px;
}

.transactions-header h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: 14px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.transaction-item:active {
    transform: scale(0.98);
}

.transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.transaction-icon.registration-icon {
    background: linear-gradient(135deg, #1a5e20, #1a5e20);
}

.transaction-icon.level-icon {
    background: linear-gradient(135deg, #1a5e20, #1b5f21);
}

.transaction-icon.roi-icon {
    background: linear-gradient(135deg, #f64e25, #e7412a);
}

.transaction-details {
    flex: 1;
    min-width: 0;
}

.transaction-title {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--text-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.transaction-date {
    font-size: 11px;
    color: var(--text-light);
}

.transaction-amount {
    font-size: 15px;
    font-weight: 800;
    flex-shrink: 0;
}

.transaction-amount.positive {
    color: #10B981;
}

/* Empty State */
.empty-transactions {
    text-align: center;
    padding: 40px 20px;
}

.empty-transactions i {
    font-size: 48px;
    color: var(--border-color);
    margin-bottom: 12px;
}

.empty-transactions p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Responsive */
@media (max-width: 380px) {
    .earnings-total {
        font-size: 44px;
    }
    
    .income-cards-grid {
        gap: 8px;
    }
    
    .income-card {
        padding: 14px 10px;
    }
    
    .income-card-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .income-card-amount {
        font-size: 16px;
    }
}


/* ============================================
   Wallet Page Styles
   ============================================ */

/* ============================================
   Wallet Page - Redesigned Modern
   ============================================ */

.wallet-screen {
    background: var(--bg-light);
}

/* Total Balance Card */
.total-balance-card {
    position: relative;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: 28px;
    padding: 32px 24px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.balance-glow {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.balance-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.balance-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.balance-value {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 6px 0;
    line-height: 1;
}

.balance-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Modern Wallet Cards */
.wallet-card-modern {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.wallet-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.wallet-card-modern.quick::before {
    background: linear-gradient(90deg, #f44336, #ec4628);
}

.wallet-card-modern.bonus::before {
    background: linear-gradient(90deg, #f64e25, #e7412a);
}

.wallet-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.wallet-info-section {
    display: flex;
    align-items: center;
    gap: 14px;
}

.wallet-icon-modern {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}

.wallet-card-modern.quick .wallet-icon-modern {
    background: linear-gradient(135deg, #1b5f21, #1a5e20);
}

.wallet-card-modern.bonus .wallet-icon-modern {
    background: linear-gradient(135deg, #1a5e20, #1b5f21);
}

.wallet-title {
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 4px 0;
    color: var(--text-dark);
}

.wallet-desc {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.wallet-badge-new {
    padding: 6px 14px;
    background: linear-gradient(135deg, #ef4927, #ed4528);
    color: #fff;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wallet-badge-new.bonus {
    background: linear-gradient(135deg, #f64e25, #e7412a);
}

.wallet-balance-section {
    text-align: center;
    padding: 16px 0 20px;
}

.wallet-balance-amount {
    font-size: 40px;
    font-weight: 900;
    margin: 0 0 6px 0;
    color: var(--text-dark);
    line-height: 1;
}

.wallet-balance-note {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* Actions Grid */
.wallet-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.wallet-actions-grid.single-action {
    grid-template-columns: 1fr 1fr;
}

.action-btn-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    background: var(--bg-light);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.action-btn-modern:active {
    transform: scale(0.96);
}

.action-btn-modern.primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.3);
}

.action-btn-modern.bonus-primary {
    background: linear-gradient(135deg, #f64e25, #e7412a);
    color: #fff;
    box-shadow: 0 4px 16px rgb(185 26 16 / 30%);
}

.action-btn-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.action-btn-modern:not(.primary):not(.bonus-primary) .action-btn-icon {
    background: #fff;
    color: var(--primary-orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.action-btn-modern.primary .action-btn-icon,
.action-btn-modern.bonus-primary .action-btn-icon {
    color: #fff;
}

/* Info Banner */
.info-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 20px;
    padding: 16px 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.info-banner-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.info-banner-content {
    flex: 1;
}

.info-banner-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--text-dark);
}

.info-banner-text {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* Responsive */
@media (max-width: 380px) {
    .balance-value {
        font-size: 42px;
    }
    
    .wallet-balance-amount {
        font-size: 36px;
    }
    
    .wallet-actions-grid {
        gap: 8px;
    }
    
    .action-btn-modern {
        padding: 14px 6px;
        font-size: 10px;
    }
    
    .action-btn-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (max-width: 340px) {
    .wallet-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Transfer Screen */
.transfer-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.transfer-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 18px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
}

.transfer-tab i {
    font-size: 22px;
}

.transfer-tab.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.3);
}

.transfer-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.transfer-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.transfer-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    flex-shrink: 0;
}

.transfer-icon.quick-icon {
    background: linear-gradient(135deg, #1a5e20, #1b5f21);
}

.transfer-icon.bonus-icon {
    background: linear-gradient(135deg, #f64e25, #e7412a);
}

.transfer-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--text-dark);
}

.transfer-subtitle {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.balance-display {
    text-align: center;
    padding: 20px;
    background: var(--light-peach);
    border-radius: 16px;
    margin-bottom: 24px;
}

.balance-display-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 6px;
    font-weight: 600;
}

.balance-display-amount {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark);
    margin: 0;
}

.transfer-info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #ECFDF5;
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-dark);
}

.transfer-info-box i {
    color: #10B981;
    font-size: 18px;
}

.rules-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.rules-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--text-dark);
}

.rules-list {
    padding-left: 20px;
    margin: 0;
}

.rules-list li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

/* Withdrawal Screen */
.withdrawal-balance-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--dark-brown), var(--dark-brown));
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 20px;
    color: #fff;
    box-shadow: 0 12px 32px rgba(255, 140, 66, 0.3);
}

.withdrawal-balance-card .balance-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.withdrawal-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.method-selector {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.method-selector.active {
    border-color: var(--primary-orange);
    background: rgba(255, 140, 66, 0.05);
}

.method-selector.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.method-selector .method-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-orange);
}

.method-info {
    flex: 1;
}

.method-name {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--text-dark);
}

.method-status {
    font-size: 12px;
    font-weight: 600;
    color: #10B981;
}

.method-status.coming-soon {
    color: var(--text-light);
}

.method-check {
    font-size: 24px;
    color: var(--primary-orange);
    display: none;
}

.method-selector.active .method-check {
    display: block;
}

.withdrawal-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.form-header {
    margin-bottom: 24px;
}

.form-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: var(--text-dark);
}

.form-subtitle {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.withdrawal-info {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-dark);
}

.info-row:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.receive-amount {
    color: #10B981;
    font-size: 16px;
}

.notes-card {
    background: #ffcdcd;
    border-radius: 20px;
    padding: 18px;
    border-left: 4px solid #ff2020;
}

.notes-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #850604;
}

.notes-title i {
    color: #FFB020;
}

.notes-list {
    padding-left: 20px;
    margin: 0;
}

.notes-list li {
    font-size: 13px;
    color: #851704;
    margin-bottom: 6px;
}

/* Transactions Screen */
.wallet-type-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.wallet-type-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 18px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
}

.wallet-type-tab i {
    font-size: 20px;
}

.wallet-type-tab.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.3);
}

.transactions-container {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: var(--shadow-md);
}

.date-group {
    margin-bottom: 16px;
}

.date-separator {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: var(--bg-light);
    border-radius: 10px;
    display: inline-block;
}

.transaction-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: 14px;
    margin-bottom: 10px;
}

.transaction-icon-credit,
.transaction-icon-debit {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.transaction-icon-credit {
    background: linear-gradient(135deg, #f64e25, #e7412a);
}

.transaction-icon-debit {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.transaction-info {
    flex: 1;
    min-width: 0;
}

.transaction-desc {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--text-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.transaction-time {
    font-size: 11px;
    color: var(--text-light);
}

.transaction-amt {
    font-size: 15px;
    font-weight: 800;
    flex-shrink: 0;
}

.transaction-amt.credit {
    color: #10B981;
}

.transaction-amt.debit {
    color: #EF4444;
}

.empty-transactions-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-transactions-state i {
    font-size: 56px;
    color: var(--border-color);
    margin-bottom: 16px;
}

.empty-transactions-state p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 6px 0;
}

.empty-transactions-state span {
    font-size: 13px;
    color: var(--text-light);
}



/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 8px 16px 12px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 12px;
    position: relative;
}

.nav-item i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.nav-item.active {
    color: var(--primary-orange);
}

.nav-item.active i {
    color: var(--primary-orange);
}

/* Center Wallet Icon - FIXED */
.nav-item-center {
    margin-top: -32px;
    padding: 0;
}

.center-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--dark-brown), var(--dark-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.4), 0 0 0 5px #fff;
    transition: all 0.3s ease;
    position: relative;
}

.center-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.center-icon i {
    font-size: 30px;
    color: #fff;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

/* Active state for center wallet */
.nav-item-center.active .center-icon {
    background: linear-gradient(135deg, var(--dark-brown), var(--dark-brown));
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 0 5px #fff;
    transform: scale(1.08);
}

/* Remove any background from center item */
.nav-item-center.active {
    background: transparent !important;
}

/* Hover/Active states for other items */
.nav-item:not(.nav-item-center):active {
    background: var(--light-peach);
    transform: scale(0.96);
}

@media (max-width: 380px) {
    .center-icon {
        width: 62px;
        height: 62px;
    }
    
    .center-icon i {
        font-size: 27px;
    }
    
    .nav-item {
        padding: 6px 8px;
    }
}


/* Team */
/* ============================================
   Team Page Styles
   ============================================ */
/* ============================================
   Team Page - Redesigned & More Attractive
   ============================================ */

.team-screen {
    background: linear-gradient(180deg, var(--bg-light) 0%, #fff 300px);
}

/* Team Hero Card */
.team-hero-card {
    position: relative;
    background: linear-gradient(135deg, var(--dark-brown), var(--dark-brown));
    border-radius: 28px;
    padding: 32px 24px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(255, 140, 66, 0.3);
}

.hero-bg-pattern {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    margin: 0 auto 16px;
}

.hero-title {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 6px 0;
}

.hero-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Team Stats Grid - New */
.team-stats-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.team-stat-card-new {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 16px 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.stat-card-bg {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.08;
}

.team-stat-card-new.direct .stat-card-bg {
    background: linear-gradient(135deg, #f44336, #2563EB);
}

.team-stat-card-new.downline .stat-card-bg {
    background: linear-gradient(135deg, #1a5e20, #1b5f21);
}

.team-stat-card-new.business .stat-card-bg {
    background: linear-gradient(135deg, #f64e25, #e7412a);
}

.stat-card-content {
    position: relative;
    z-index: 2;
}

.stat-icon-new {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.team-stat-card-new.direct .stat-icon-new {
    background: linear-gradient(135deg, #ef4927, #ed4528);
}

.team-stat-card-new.downline .stat-icon-new {
    background: linear-gradient(135deg, #ef4927, #ed4528);
}

.team-stat-card-new.business .stat-icon-new {
    background: linear-gradient(135deg, #f64e25, #e7412a);
}

.stat-label-new {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 600;
}

.stat-value-new {
    font-size: 22px;
    font-weight: 900;
    margin: 0;
    color: var(--text-dark);
}

/* Team Tabs - New */
.team-tabs-new {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    background: #fff;
    padding: 6px;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.team-tab-new {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    background: transparent;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 11px;
    color: var(--text-light);
}

.tab-icon-wrapper {
    width: 38px;
    height: 38px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.team-tab-new.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.3);
}

.team-tab-new.active .tab-icon-wrapper {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Member Card - New */
.member-card-new {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.member-card-new:active {
    transform: scale(0.98);
}

.member-card-new.downline {
    border-left: 4px solid #1b5f21;
}

.level-badge-new {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #1a5e20, #1b5f21);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    z-index: 3;
}

.member-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.member-avatar-new {
    position: relative;
}

.avatar-circle {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.avatar-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.avatar-status-dot.active {
    background: #10B981;
}

.member-info-new {
    flex: 1;
    min-width: 0;
}

.member-name-new {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--text-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.member-id-new {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
    font-weight: 600;
}

.member-id-new i {
    font-size: 11px;
}

.member-package-badge {
    padding: 8px 14px;
    background: linear-gradient(135deg, #f64e25, #e7412a);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.member-details-new {
    background: var(--bg-light);
    border-radius: 14px;
    padding: 12px;
}

.detail-row {
    display: flex;
    gap: 16px;
}

.detail-col {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-col i {
    font-size: 18px;
    color: var(--primary-orange);
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.detail-text small {
    font-size: 10px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.detail-text strong {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 700;
}

/* Empty State - New */
.empty-state-new {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    margin: 0 auto 20px;
}

.empty-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.empty-desc {
    font-size: 14px;
    color: var(--text-light);
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.empty-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.3);
    transition: all 0.3s ease;
}

.empty-action-btn:active {
    transform: scale(0.97);
}

/* Genealogy Wrapper */
.genealogy-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    min-height: 400px;
}

.genealogy-info-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--light-peach);
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 600;
}

.genealogy-info-card i {
    color: var(--primary-orange);
    font-size: 18px;
}

.chart-scroll {
    overflow-x: auto;
    overflow-y: auto;
}

/* Responsive */
@media (max-width: 380px) {
    .team-stats-grid-new {
        grid-template-columns: 1fr;
    }
    
    .stat-value-new {
        font-size: 26px;
    }
    
    .hero-title {
        font-size: 22px;
    }
}



/* Profile */
/* ============================================
   Profile Page Styles
   ============================================ */

.profile-screen {
    background: var(--bg-light);
}

/* Profile Header Card */
.profile-header-card {
    position: relative;
    background: linear-gradient(135deg, var(--dark-brown), var(--dark-brown));
    border-radius: 28px;
    padding: 24px 20px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.profile-bg-pattern {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.profile-avatar-section {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-avatar-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.4);
}

.profile-header-info {
    flex: 1;
}

.profile-name {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px 0;
}

.profile-user-id {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 8px 0;
    font-weight: 600;
}

.profile-join-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.profile-join-date i {
    font-size: 12px;
}

/* Profile Form Card */
.profile-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.form-card-header {
    margin-bottom: 24px;
}

.form-card-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 6px 0;
    color: var(--text-dark);
}

.form-card-subtitle {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* Modern Form Groups */
.form-group-modern {
    margin-bottom: 20px;
}

.form-label-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-label-modern i {
    color: var(--primary-orange);
    font-size: 14px;
}

.form-input-modern {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-input-modern:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.1);
}

.form-input-modern.readonly {
    background: #F3F4F6;
    color: var(--text-light);
    cursor: not-allowed;
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: var(--text-light);
}

.form-hint.locked {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #EF4444;
}

.form-hint.locked i {
    font-size: 10px;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.btn-secondary-modern {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-modern:active {
    transform: scale(0.97);
}

.btn-primary-modern {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border: none;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.3);
}

.btn-primary-modern:active {
    transform: scale(0.97);
}

.btn-primary-modern:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    display: none;
    align-items: center;
    gap: 8px;
}

/* Profile Actions Section */
.profile-actions-section {
    margin-bottom: 20px;
}

.actions-section-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 16px 0;
    padding: 0 4px;
}

.profile-action-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border-radius: 18px;
    margin-bottom: 10px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.profile-action-card:active {
    transform: scale(0.98);
}

.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.action-icon.security {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.action-icon.bank {
    background: linear-gradient(135deg, #1a5e20, #1b5f21);
}

.action-icon.kyc {
    background: linear-gradient(135deg, #1a5e20, #1b5f21);
}

.action-icon.referral {
    background: linear-gradient(135deg, #1b5f21, #1a5e20);
}

.action-icon.support {
    background: linear-gradient(135deg, #ef4927, #ed4528);
}

.action-content {
    flex: 1;
    min-width: 0;
}

.action-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--text-dark);
}

.action-desc {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.action-arrow {
    font-size: 16px;
    color: var(--text-light);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 380px) {
    .profile-avatar-large {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .profile-name {
        font-size: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        flex: 1;
    }
}


/* Security */
/* ============================================
   Security / Change Password Page Styles
   ============================================ */

.security-screen {
    background: var(--bg-light);
}

/* Security Header Card */
.security-header-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--dark-brown), var(--dark-brown));
    border-radius: 24px;
    padding: 24px 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.3);
}

.security-icon-bg {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    flex-shrink: 0;
}

.security-header-content {
    flex: 1;
}

.security-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px 0;
}

.security-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Security Form Card */
.security-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Form Groups */
.form-group-security {
    margin-bottom: 24px;
}

.form-label-security {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-label-security i {
    color: var(--primary-orange);
    font-size: 14px;
}

.input-wrapper-security {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input-security {
    width: 100%;
    padding: 14px 50px 14px 16px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-input-security:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.1);
}

.input-toggle-btn {
    position: absolute;
    right: 12px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-toggle-btn:active {
    transform: scale(0.95);
    background: var(--bg-light);
}

/* Password Strength */
.password-strength-container {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.strength-bar-bg {
    flex: 1;
    height: 6px;
    background: var(--bg-light);
    border-radius: 999px;
    overflow: hidden;
}

.strength-bar-fill {
    height: 100%;
    width: 0%;
    background: #EF4444;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
}

/* Password Match Status */
.password-match-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
}

.password-match-status.success {
    color: #10B981;
}

.password-match-status.error {
    color: #EF4444;
}

.password-match-status i {
    font-size: 14px;
}

/* Submit Button */
.btn-submit-security {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.3);
    margin-top: 28px;
}

.btn-submit-security:active {
    transform: scale(0.98);
}

.btn-submit-security:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    display: none;
    align-items: center;
    gap: 8px;
}

/* Security Tips Card */
.security-tips-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.tips-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 16px 0;
}

.tips-title i {
    color: var(--accent-gold);
    font-size: 18px;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li i {
    color: var(--primary-orange);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Additional Security Features */
.security-features-section {
    margin-bottom: 20px;
}

.features-section-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 16px 0;
    padding: 0 4px;
}

.security-feature-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border-radius: 18px;
    margin-bottom: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.security-feature-card.disabled {
    opacity: 0.6;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--text-dark);
}

.feature-desc {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.feature-badge {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-badge.soon {
    background: var(--light-peach);
    color: var(--primary-orange);
}

/* Responsive */
@media (max-width: 380px) {
    .security-header-card {
        padding: 20px 16px;
    }
    
    .security-icon-bg {
        width: 56px;
        height: 56px;
        font-size: 26px;
    }
    
    .security-title {
        font-size: 18px;
    }
}


/* Transactions Screen Updates */
.wallet-filter-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    background: #fff;
    padding: 6px;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.wallet-filter-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    background: transparent;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 11px;
    color: var(--text-light);
}

.wallet-filter-tab i {
    font-size: 18px;
}

.wallet-filter-tab.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.3);
}

/* Tab Content */
.transaction-tab-content {
    display: none;
}

.transaction-tab-content.active {
    display: block;
}

/* Wallet Type Badge (for "All" tab) */
.transaction-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.wallet-type-badge {
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}

.wallet-type-badge.quick {
    background: rgba(59, 130, 246, 0.1);
    color: #f44336;
}

.wallet-type-badge.bonus {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.transaction-desc {
    flex: 1;
    min-width: 0;
}


/* ============================================
   ROI Slabs Section
   ============================================ */

.roi-slabs-section {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.slabs-header {
    margin-bottom: 20px;
}

.slabs-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 6px 0;
}

.slabs-title i {
    color: var(--primary-orange);
    font-size: 20px;
}

.slabs-subtitle {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* Current Slab Highlight */
.current-slab-highlight {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.current-slab-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.current-slab-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.current-slab-info {
    position: relative;
    z-index: 2;
}

.current-slab-name {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 12px 0;
}

.current-earnings-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.earning-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.earning-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.earning-value {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
}

.earning-divider {
    width: 2px;
    height: 32px;
    background: rgba(255, 255, 255, 0.3);
}

/* Slabs Grid */
.slabs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.slab-card {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.slab-card.active {
    background: rgba(255, 140, 66, 0.08);
    border-color: var(--primary-orange);
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.2);
}

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

.slab-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}

.slab-card:not(.active) .slab-number {
    background: var(--border-color);
    color: var(--text-light);
}

.active-indicator {
    width: 24px;
    height: 24px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

.slab-range {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.slab-percentage {
    font-size: 16px;
    font-weight: 900;
    color: var(--primary-orange);
}

.slab-card:not(.active) .slab-percentage {
    color: var(--text-light);
}

/* Bonus Promo Card */
.bonus-promo-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #f64e25, #e7412a);
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.bonus-promo-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    flex-shrink: 0;
}

.bonus-promo-content {
    flex: 1;
}

.bonus-promo-title {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px 0;
}

.bonus-promo-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 10px 0;
}

.bonus-promo-reward {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bonus-percentage {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
}

.bonus-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* Wallet Info Cards */
.wallet-info-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.info-mini-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.info-mini-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.info-mini-icon.quick {
    background: linear-gradient(135deg, #ef4927, #ed4528);
}

.info-mini-icon.bonus {
    background: linear-gradient(135deg, #f64e25, #e7412a);
}

.info-mini-icon.roi {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
}

.info-mini-content {
    flex: 1;
}

.info-mini-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px 0;
}

.info-mini-desc {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 380px) {
    .slabs-grid {
        grid-template-columns: 1fr;
    }
    
    .current-earnings-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .earning-divider {
        display: none;
    }
    
    .bonus-promo-card {
        flex-direction: column;
        text-align: center;
    }
}


/* ============================================
   Wallet Address Page Styles
   ============================================ */

.wallet-address-screen {
    background: var(--bg-light);
}

/* Wallet Header */
.wallet-address-header {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--dark-brown), var(--dark-brown));
    border-radius: 24px;
    padding: 24px 20px;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.wallet-header-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    flex-shrink: 0;
}

.wallet-header-content {
    flex: 1;
}

.wallet-header-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px 0;
}

.wallet-header-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Wallet Info Alert */
.wallet-info-alert {
    display: flex;
    gap: 14px;
    background: #ffcdcd;
    border: 2px solid #ff9c9c;
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 16px;
}

.alert-icon {
    width: 40px;
    height: 40px;
    background: #db2515;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-size: 14px;
    font-weight: 700;
    color: #78350F;
    margin: 0 0 8px 0;
}

.alert-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alert-list li {
    font-size: 12px;
    color: #92400E;
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
}

.alert-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Wallet Address Form Card */
.wallet-address-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Address Already Set Display */
.address-set-display {
    text-align: center;
    padding: 20px 0;
}

.address-set-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f64e25, #e7412a);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    margin: 0 auto 20px;
}

.address-set-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.address-set-desc {
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 24px 0;
}

.address-display-box {
    background: var(--bg-light);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 16px;
}

.address-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.address-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    word-break: break-all;
    margin-bottom: 16px;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    font-family: 'Courier New', monospace;
}

.address-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.address-copy-btn:active {
    transform: scale(0.97);
}

.address-locked-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #DC2626;
}

/* Form Header Section */
.form-header-section {
    text-align: center;
    margin-bottom: 24px;
}

.network-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #f64e25, #e7412a);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.network-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.form-instruction {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* Form Groups */
.form-group-wallet {
    margin-bottom: 24px;
}

.form-label-wallet {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-label-wallet i {
    color: #f44336;
    font-size: 14px;
}

.input-wrapper-wallet {
    position: relative;
}

.form-input-wallet {
    width: 100%;
    padding: 14px 50px 14px 16px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.form-input-wallet:focus {
    outline: none;
    border-color: #f44336;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.input-status {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.input-status.success {
    color: #10B981;
}

.input-status.error {
    color: #EF4444;
}

.form-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 11px;
    color: var(--text-light);
}

.form-error {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 11px;
    color: #EF4444;
    font-weight: 600;
}

/* Warning Box */
.warning-box {
    display: flex;
    gap: 14px;
    background: rgba(239, 68, 68, 0.08);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
}

.warning-icon {
    width: 40px;
    height: 40px;
    background: #EF4444;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.warning-content {
    flex: 1;
}

.warning-title {
    font-size: 13px;
    font-weight: 700;
    color: #DC2626;
    margin: 0 0 6px 0;
}

.warning-text {
    font-size: 12px;
    color: #991B1B;
    margin: 0;
    line-height: 1.5;
}

/* Submit Button */
.btn-submit-wallet {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #f64e25, #e7412a);
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgb(185 26 16 / 30%);
}

.btn-submit-wallet:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-submit-wallet:not(:disabled):active {
    transform: scale(0.98);
}

.btn-loader {
    display: none;
    align-items: center;
    gap: 8px;
}

/* Help Section */
.wallet-help-section {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.help-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 16px 0;
}

.help-section-title i {
    color: var(--primary-orange);
}

.help-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: 14px;
    margin-bottom: 10px;
}

.help-card:last-child {
    margin-bottom: 0;
}

.help-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.help-content {
    flex: 1;
}

.help-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--text-dark);
}

.help-desc {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* Responsive */
@media (max-width: 380px) {
    .wallet-address-header {
        padding: 20px 16px;
    }
    
    .wallet-header-icon {
        width: 56px;
        height: 56px;
        font-size: 26px;
    }
}


/* ============================================
   Refer & Earn Page Styles
   ============================================ */

.refer-earn-screen {
    background: linear-gradient(180deg, var(--bg-light) 0%, #fff 400px);
}

/* Refer Hero Card */
.refer-hero-card {
    position: relative;
    background: linear-gradient(135deg, var(--dark-brown), var(--dark-brown));
    border-radius: 28px;
    padding: 32px 24px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(255, 140, 66, 0.4);
}

.refer-hero-bg {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.refer-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.refer-hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    margin: 0 auto 16px;
}

.refer-hero-title {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 8px 0;
}

.refer-hero-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Referral Stats Grid */
.referral-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.referral-stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin: 0 auto 10px;
}

.referral-stat-card.total .stat-card-icon {
    background: linear-gradient(135deg, #ef4927, #ed4528);
}

.referral-stat-card.earnings .stat-card-icon {
    background: linear-gradient(135deg, #f64e25, #e7412a);
}

.referral-stat-card.month .stat-card-icon {
    background: linear-gradient(135deg, #ef4927, #ed4528);
}

.stat-card-label {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 600;
}

.stat-card-value {
    font-size: 22px;
    font-weight: 900;
    margin: 0;
    color: var(--text-dark);
}

/* Referral Code Card */
.referral-code-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.referral-code-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 6px 0;
}

.referral-code-title i {
    color: var(--primary-orange);
}

.referral-code-desc {
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 20px 0;
}

.referral-code-display {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 20px;
}

.code-box {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 16px;
    padding: 16px;
    text-align: center;
}

.code-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
}

.code-value {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.code-copy-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border: none;
    border-radius: 16px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.code-copy-btn i {
    font-size: 20px;
}

.code-copy-btn:active {
    transform: scale(0.95);
}

/* Share Buttons Grid */
.share-buttons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn i {
    font-size: 24px;
}

.share-btn.whatsapp {
    color: #25D366;
    border-color: #25D366;
}

.share-btn.whatsapp:active {
    background: #25D366;
    color: #fff;
}

.share-btn.telegram {
    color: #0088cc;
    border-color: #0088cc;
}

.share-btn.telegram:active {
    background: #0088cc;
    color: #fff;
}

.share-btn.sms {
    color: #f44336;
    border-color: #f44336;
}

.share-btn.sms:active {
    background: #f44336;
    color: #fff;
}

.share-btn.more {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.share-btn.more:active {
    background: var(--primary-orange);
    color: #fff;
}

/* Section Title */
.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 16px 0;
}

.section-title i {
    color: var(--primary-orange);
}

/* How It Works */
.how-it-works-section {
    margin-bottom: 20px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-card {
    display: flex;
    gap: 14px;
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: var(--text-dark);
}

.step-desc {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Commission Structure */
.commission-structure-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.commission-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 6px 0;
}

.commission-title i {
    color: var(--primary-orange);
}

.commission-subtitle {
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 20px 0;
}

.commission-levels {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.commission-level {
    display: flex;
    align-items: center;
    gap: 12px;
}

 .level-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
} 

 .level-badge-team {
    width: 64px;
    height: 44px;
} 

.level-badge.l1 { background: linear-gradient(135deg, #f64e25, #e7412a); }
.level-badge.l2 { background: linear-gradient(135deg, #ef4927, #ed4528); }
.level-badge.l3 { background: linear-gradient(135deg, #ef4927, #ed4528); }
.level-badge.l4 { background: linear-gradient(135deg, #ef4927, #ed4528); }
.level-badge.l5 { background: linear-gradient(135deg, #EF4444, #DC2626); }

.level-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.level-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.level-percentage {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-orange);
}

.level-bar {
    flex: 1;
    height: 8px;
    background: var(--bg-light);
    border-radius: 999px;
    overflow: hidden;
}

.level-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold));
    border-radius: 999px;
    transition: width 1s ease;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.benefit-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin: 0 auto 12px;
}

.benefit-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: var(--text-dark);
}

.benefit-desc {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 380px) {
    .referral-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .share-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .code-value {
        font-size: 24px;
    }
}

/* Signup Bonus Badge */
.signup-bonus-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #f64e25, #e7412a);
    border-radius: 16px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 14px;
}

.signup-bonus-badge i {
    font-size: 24px;
}

.signup-bonus-badge strong {
    font-weight: 900;
    font-size: 16px;
}

/* Commission Levels Scroll Container */
.commission-levels-scroll {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 8px;
}

.commission-levels-scroll::-webkit-scrollbar {
    width: 6px;
}

.commission-levels-scroll::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 999px;
}

.commission-levels-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 999px;
}

/* Commission Level Groups */
.commission-level-group {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: 14px;
    margin-bottom: 10px;
}

.level-badge-group {
    min-width: 70px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    flex-shrink: 0;
}

/* Commission Total */
.commission-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    background: linear-gradient(135deg, var(--dark-brown), var(--dark-brown));
    border-radius: 16px;
    margin-top: 14px;
}

.total-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.total-label i {
    color: var(--accent-gold);
    font-size: 18px;
}

.total-value {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Update existing commission level spacing */
.commission-level {
    margin-bottom: 10px;
}


/* Transaction Item */
.transaction-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.transaction-item:active {
    transform: scale(0.98);
}

.transaction-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.transaction-icon.credit {
    background: linear-gradient(135deg, #f64e25, #e7412a);
}

.transaction-icon.debit {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.transaction-details {
    flex: 1;
    min-width: 0;
}

.transaction-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 4px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.transaction-date {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

.transaction-amount {
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
}

.transaction-amount.credit {
    color: #10B981;
}

.transaction-amount.debit {
    color: #EF4444;
}


/* ============================================
   Support Center Page Styles
   ============================================ */

.support-screen {
    background: var(--bg-light);
}

/* Support Header Card */
.support-header-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--dark-brown), var(--dark-brown));
    border-radius: 24px;
    padding: 24px 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.support-header-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    flex-shrink: 0;
}

.support-header-content {
    flex: 1;
}

.support-header-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px 0;
}

.support-header-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Ticket Stats Grid */
.ticket-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.ticket-stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ticket-stat-card .stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.ticket-stat-card.total .stat-icon {
    background: linear-gradient(135deg, #1a5e20, #1b5f21);
}

.ticket-stat-card.open .stat-icon {
    background: linear-gradient(135deg, #ef4927, #ed4528);
}

.ticket-stat-card.closed .stat-icon {
    background: linear-gradient(135deg, #1a5e20, #1b5f21);
}

.ticket-stat-card .stat-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
    text-align: center;
}

.ticket-stat-card .stat-value {
    font-size: 22px;
    font-weight: 900;
    margin: 0;
    color: var(--text-dark);
}

/* Create Ticket Button */
.create-ticket-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border: none;
    border-radius: 18px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.3);
    margin-bottom: 20px;
}

.create-ticket-btn:active {
    transform: scale(0.98);
}

.create-ticket-btn i {
    font-size: 18px;
}

/* Ticket Form Card */
.ticket-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.form-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.form-title i {
    color: var(--primary-orange);
}

.close-form-btn {
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-form-btn:active {
    transform: scale(0.95);
    background: #EF4444;
    color: #fff;
}

/* Form Groups */
.form-group-support {
    margin-bottom: 20px;
}

.form-label-support {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-label-support i {
    color: #1b5f21;
}

.form-select-support,
.form-input-support {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-select-support:focus,
.form-input-support:focus {
    outline: none;
    border-color: #1b5f21;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.form-textarea-support {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
}

.form-textarea-support:focus {
    outline: none;
    border-color: #1b5f21;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.btn-submit-ticket {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #1a5e20, #1b5f21);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.btn-submit-ticket:active {
    transform: scale(0.98);
}

/* Section Title */
.section-title-support {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 16px 0;
}

.section-title-support i {
    color: var(--primary-orange);
}

/* My Tickets Section */
.my-tickets-section {
    margin-bottom: 20px;
}

.tickets-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Ticket Card */
.ticket-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.ticket-card:active {
    transform: scale(0.98);
}

.ticket-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ticket-category-badge {
    padding: 6px 12px;
    background: var(--bg-light);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
}

.ticket-category-badge.account-issue {
    background: rgba(59, 130, 246, 0.1);
    color: #f44336;
}

.ticket-category-badge.payment-issue {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.ticket-category-badge.withdrawal-issue {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.ticket-category-badge.referral-issue {
    background: rgba(139, 92, 246, 0.1);
    color: #1b5f21;
}

.ticket-category-badge.technical-issue {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.ticket-status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.ticket-status-badge.open {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.ticket-status-badge.closed {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.ticket-subject {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ticket-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--text-light);
}

.ticket-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Empty Tickets State */
.empty-tickets-state {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.empty-tickets-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5e20, #1b5f21);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    margin: 0 auto 20px;
}

.empty-tickets-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.empty-tickets-desc {
    font-size: 14px;
    color: var(--text-light);
    margin: 0 0 24px 0;
}

.empty-create-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    color: #fff;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.3);
}

.empty-create-btn:active {
    transform: scale(0.97);
}

/* Quick Help Section */
.quick-help-section {
    margin-bottom: 20px;
}

.help-topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.help-topic-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.help-topic-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin: 0 auto 12px;
}

.help-topic-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: var(--text-dark);
}

.help-topic-desc {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   Ticket Detail Page Styles
   ============================================ */

.ticket-detail-screen {
    background: var(--bg-light);
}

/* Ticket Detail Header */
.ticket-detail-header {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.ticket-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.ticket-id-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-light);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
}

.ticket-status-badge-large {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.ticket-status-badge-large.open {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.ticket-status-badge-large.closed {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.ticket-detail-subject {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.ticket-detail-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

.meta-item i {
    color: var(--primary-orange);
}

/* Chat Messages Container */
.chat-messages-container {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 16px;
    max-height: 500px;
    overflow-y: auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.chat-messages-container::-webkit-scrollbar {
    width: 6px;
}

.chat-messages-container::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 999px;
}

.chat-messages-container::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 999px;
}

/* Chat Message */
.chat-message {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.chat-message.admin .message-avatar {
    background: linear-gradient(135deg, #1a5e20, #1b5f21);
}

.message-content {
    flex: 1;
    max-width: 75%;
}

.chat-message.user .message-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.message-header {
    display: flex;
    gap: 10px;
    margin-bottom: 6px;
}

.chat-message.user .message-header {
    flex-direction: row-reverse;
}

.message-sender {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
}

.message-time {
    font-size: 11px;
    color: var(--text-light);
}

.message-text {
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: 16px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
    word-wrap: break-word;
}

.chat-message.user .message-text {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    color: #fff;
    border-radius: 16px 16px 4px 16px;
}

.chat-message.admin .message-text {
    border-radius: 16px 16px 16px 4px;
}

/* Reply Form */
.reply-form-container {
    background: #fff;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    position: sticky;
    bottom: 0;
}

.reply-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.reply-textarea {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-size: 14px;
    color: var(--text-dark);
    font-family: inherit;
    resize: none;
    min-height: 44px;
    max-height: 120px;
    transition: all 0.3s ease;
}

.reply-textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: #fff;
}

.send-btn {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
    flex-shrink: 0;
}

.send-btn:active {
    transform: scale(0.95);
}

.send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Ticket Closed Notice */
.ticket-closed-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 18px;
    color: #059669;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.ticket-closed-notice i {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 380px) {
    .ticket-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .help-topics-grid {
        grid-template-columns: 1fr;
    }
    
    .message-content {
        max-width: 85%;
    }
}


/* Modern Form Group */
.form-group-modern {
    margin-bottom: 24px;
}

.form-label-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-label-modern i {
    color: var(--primary-orange);
    font-size: 14px;
}

.input-wrapper-modern {
    position: relative;
}

.form-input-modern {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.form-input-modern:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.1);
}

.form-input-modern:readonly {
    background: #F3F4F6;
    color: var(--text-light);
    cursor: not-allowed;
    padding-right: 45px;
}

.input-lock-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #EF4444;
    font-size: 16px;
}

/* Field Hints */
.field-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

.field-hint i {
    font-size: 12px;
}

.field-hint.locked {
    color: #EF4444;
}

.field-hint.locked i {
    color: #EF4444;
}

/* Save Address Checkbox */
.save-address-checkbox {
    margin-top: 14px;
    padding: 12px 14px;
    background: rgba(255, 140, 66, 0.05);
    border: 2px solid rgba(255, 140, 66, 0.15);
    border-radius: 12px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    margin: 0;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-color: var(--primary-orange);
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.checkbox-label i {
    color: var(--primary-orange);
    font-size: 14px;
}

/* Warning highlight on hover */
.checkbox-container:hover .checkmark {
    border-color: var(--primary-orange);
}



/* ============================================
   QR Scanner Page Styles
   ============================================ */

.qr-scanner-screen {
    background: var(--bg-light);
}

/* Scanner Header */
.scanner-header-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--dark-brown), var(--dark-brown));
    border-radius: 24px;
    padding: 24px 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.scanner-header-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    flex-shrink: 0;
}

.scanner-header-content {
    flex: 1;
}

.scanner-header-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px 0;
}

.scanner-header-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Scanner Mode Toggle */
.scanner-mode-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    background: #fff;
    padding: 6px;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.mode-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px;
    background: transparent;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 12px;
    color: var(--text-light);
}

.mode-btn i {
    font-size: 20px;
}

.mode-btn.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.3);
}

/* Scanner Container */
.scanner-container {
    position: relative;
    margin-bottom: 20px;
}

.qr-reader-wrapper {
    position: relative;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

#qr-reader {
    border-radius: 24px;
    overflow: hidden;
}

#qr-reader video {
    border-radius: 24px;
}

/* Scanner Overlay */
.scanner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    pointer-events: none;
}

.scanner-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 4px solid var(--primary-orange);
}

.scanner-corner.tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-radius: 8px 0 0 0;
}

.scanner-corner.tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-radius: 0 8px 0 0;
}

.scanner-corner.bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 8px;
}

.scanner-corner.br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
}

/* Scanner Instructions */
.scanner-instructions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #fff;
    border-radius: 16px;
    margin-top: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.scanner-instructions i {
    color: var(--primary-orange);
    font-size: 18px;
}

.scanner-instructions p {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Flash Toggle */
.flash-toggle-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.flash-toggle-btn:active {
    transform: scale(0.95);
}

.flash-toggle-btn.active {
    background: var(--primary-orange);
    color: #fff;
}

/* File Scanner */
.file-scanner-container {
    margin-bottom: 20px;
}

.file-upload-box {
    background: #fff;
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.file-upload-label {
    cursor: pointer;
}

.upload-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    margin: 0 auto 20px;
}

.upload-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.upload-desc {
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 24px 0;
}

.upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    color: #fff;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.3);
}

.upload-btn:active {
    transform: scale(0.97);
}

/* Scan Result Modal */
.scan-result-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.result-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px 24px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f64e25, #e7412a);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    margin: 0 auto 20px;
}

.result-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 20px 0;
}

.result-content {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
}

.result-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    margin: 0 0 8px 0;
}

.result-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    word-break: break-all;
    line-height: 1.6;
}

.result-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.result-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.result-btn.secondary {
    background: var(--bg-light);
    color: var(--text-dark);
}

.result-btn.primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 140, 66, 0.3);
}

.result-btn:active {
    transform: scale(0.97);
}

.scan-again-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scan-again-btn:active {
    transform: scale(0.98);
}

/* Scanner Info Card */
.scanner-info-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.info-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 16px 0;
}

.info-title i {
    color: var(--accent-gold);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    padding-left: 24px;
    position: relative;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}


/* ============================================
   Notification Page Styles
   ============================================ */

.notification-screen {
    background: var(--bg-light);
}

/* Notification Header Card */
.notification-header-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--dark-brown), var(--dark-brown));
    border-radius: 24px;
    padding: 24px 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.3);
}

.notification-header-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    flex-shrink: 0;
    animation: bellRing 2s ease-in-out infinite;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

.notification-header-content {
    flex: 1;
}

.notification-header-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px 0;
}

.notification-header-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Notifications List */
.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

/* Notification Item */
.notification-item {
    display: flex;
    gap: 14px;
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-item:active {
    transform: scale(0.98);
}

.notification-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.notification-icon.primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
}

.notification-icon.success {
    background: linear-gradient(135deg, #f64e25, #e7412a);
}

.notification-icon.warning {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.notification-icon.danger {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.notification-icon.gold {
    background: linear-gradient(135deg, #FBBF24, #F59E0B);
}

.notification-icon.info {
    background: linear-gradient(135deg, #f44336, #2563EB);
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.notification-preview {
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.notification-full-content {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0 0 10px 0;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 3px solid var(--primary-orange);
}

.notification-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
}

.notification-time i {
    font-size: 12px;
}

.notification-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    flex-shrink: 0;
}

.notification-arrow i {
    font-size: 16px;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

/* Empty State */
.empty-notifications-state {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.empty-notifications-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--bg-light), #E5E7EB);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--text-light);
    margin: 0 auto 24px;
}

.empty-notifications-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 10px 0;
}

.empty-notifications-desc {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Responsive */
@media (max-width: 380px) {
    .notification-header-card {
        padding: 20px 16px;
    }
    
    .notification-header-icon {
        width: 56px;
        height: 56px;
        font-size: 26px;
    }
    
    .notification-item {
        padding: 14px;
    }
}



/* ============================================
   Compact Streak Bonus Cards
   ============================================ */

.streak-bonus-card {
    background: linear-gradient(135deg, #f64e25, #e7412a);
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgb(185 26 16 / 30%);
    color: #fff;
}

.streak-bonus-card.team {
    background: linear-gradient(135deg, #059669, #047857);
}

/* Self Streak Card - Compact */
.streak-card-layout {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.streak-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.streak-info {
    flex: 1;
}

.streak-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px 0;
}

.streak-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.3;
}

.streak-reward-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.reward-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.reward-percent {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
}

.reward-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
}

.reward-info {
    text-align: right;
    font-size: 12px;
    font-weight: 700;
    color: #FFF;
    line-height: 1.3;
}

/* Team Streak Card - Compact */
.team-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.team-bonus-badge {
    width: 70px;
    height: 70px;
    background: #fff;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.badge-percent {
    font-size: 14px;
    font-weight: 900;
    background: #ed4528;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.badge-label {
    font-size: 10px;
    font-weight: 700;
    color: #ed4528;
    text-align: center;
    line-height: 1.2;
}

.team-title-wrap {
    flex: 1;
}

.team-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.team-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.3;
}

.team-levels-compact {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.level-item {
    flex: 1;
    text-align: center;
}

.level-percent {
    font-size: 17px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
}

.level-badge {
    padding: 5px 10px;
    background: #FBBF24;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #1F2937;
    display: inline-block;
}

.team-footer {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    font-weight: 700;
    color: #FFF;
}

/* Even more compact for small screens */
@media (max-width: 360px) {
    .streak-bonus-card {
        padding: 14px;
    }
    
    .streak-title {
        font-size: 14px;
    }
    
    .team-title {
        font-size: 14px;
    }
    
    .reward-percent {
        font-size: 16px;
    }
    
    .level-percent {
        font-size: 15px;
    }
    
    .level-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .team-bonus-badge {
        width: 60px;
        height: 60px;
    }
    
    .badge-percent {
        font-size: 18px;
    }
}


/* ============================================
   Bank Details Page Styles
   ============================================ */

.bank-details-screen {
    background: var(--bg-light);
}

/* Bank Header Card */
.bank-header-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--dark-brown), var(--dark-brown));
    border-radius: 24px;
    padding: 24px 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.bank-header-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    flex-shrink: 0;
}

.bank-header-content {
    flex: 1;
}

.bank-header-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px 0;
}

.bank-header-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Saved Bank Card */
.saved-bank-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.saved-bank-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 14px;
    margin-bottom: 20px;
    color: #10B981;
    font-weight: 700;
    font-size: 14px;
}

.saved-bank-header i {
    font-size: 20px;
}

.saved-bank-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.bank-info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.bank-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.info-value {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.bank-locked-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 14px;
    color: #DC2626;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.bank-locked-notice i {
    font-size: 18px;
    flex-shrink: 0;
}

/* Bank Form Card */
.bank-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.bank-form-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid #f44336;
    border-radius: 12px;
    margin-bottom: 24px;
}

.bank-form-notice i {
    color: #f44336;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bank-form-notice p {
    font-size: 12px;
    color: #1E40AF;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

/* Form Groups */
.form-group-bank {
    margin-bottom: 20px;
}

.form-label-bank {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-label-bank i {
    color: #f44336;
    font-size: 14px;
}

.required {
    color: #EF4444;
    margin-left: 2px;
}

.form-input-bank,
.form-select-bank {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-input-bank:focus,
.form-select-bank:focus {
    outline: none;
    border-color: #f44336;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.field-hint-bank {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

/* Form Warning */
.form-warning-bank {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid #F59E0B;
    border-radius: 12px;
    margin-bottom: 20px;
}

.form-warning-bank i {
    color: #F59E0B;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-warning-bank p {
    font-size: 12px;
    color: #92400E;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

/* Checkbox */
.form-checkbox-bank {
    margin-bottom: 24px;
}

.checkbox-container-bank {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container-bank input[type="checkbox"] {
    display: none;
}

.checkmark-bank {
    width: 22px;
    height: 22px;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-container-bank input[type="checkbox"]:checked ~ .checkmark-bank {
    background: linear-gradient(135deg, #f44336, #2563EB);
    border-color: #f44336;
}

.checkbox-container-bank input[type="checkbox"]:checked ~ .checkmark-bank:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label-bank {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

/* Submit Button */
.btn-submit-bank {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #f44336, #2563EB);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.btn-submit-bank:active {
    transform: scale(0.98);
}

.btn-submit-bank:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-spinner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Bank Info Card */
.bank-info-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.info-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 16px 0;
}

.info-card-title i {
    color: #10B981;
}

.info-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card-list li {
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    padding-left: 24px;
    position: relative;
}

.info-card-list li:last-child {
    border-bottom: none;
}

.info-card-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 380px) {
    .bank-header-card {
        padding: 20px 16px;
    }
    
    .bank-form-card {
        padding: 20px 16px;
    }
}


/* ============================================
   Compact Currency Converter
   ============================================ */
/* Flag Icon Sizes */
.flag-icon-small {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    display: inline-block;
}

.flag-icon-large {
    width: 36px;
    height: 27px;
    border-radius: 4px;
    display: inline-block;
}

/* Rest of CSS stays the same... */
.currency-converter-compact {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 14px;
    margin: 16px 0;
}

.converter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.converter-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.converter-label i {
    font-size: 13px;
}

.currency-select-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-select-btn:active {
    transform: scale(0.95);
}

.currency-code-small {
    min-width: 35px;
}

.currency-select-btn i {
    font-size: 10px;
    color: var(--text-light);
}

.converted-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.converted-value-compact {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
}

.rate-info-compact {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 8px;
}

/* Currency Bottom Sheet Modal */
.currency-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.currency-bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 24px 24px 0 0;
    max-height: 60vh;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.currency-bottom-sheet.active {
    transform: translateY(0);
}

.sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 2px solid var(--border-color);
}

.sheet-header h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.sheet-close {
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sheet-close:active {
    transform: scale(0.95);
}

.currency-list {
    padding: 10px;
    max-height: calc(60vh - 80px);
    overflow-y: auto;
}

.currency-option-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-option-btn:active {
    transform: scale(0.98);
}

.currency-option-btn.active {
    background: rgba(255, 140, 66, 0.1);
    border-color: var(--primary-orange);
}

.option-info-sheet {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.option-info-sheet strong {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
}

.option-info-sheet span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
}

.option-check {
    font-size: 18px;
    color: var(--primary-orange);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.currency-option-btn.active .option-check {
    opacity: 1;
}

/* Scrollbar */
.currency-list::-webkit-scrollbar {
    width: 6px;
}

.currency-list::-webkit-scrollbar-track {
    background: var(--bg-light);
}

.currency-list::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 10px;
}
