/* ============================================
   GLOBAL CSS - BIZKAAM ACADEMY
   Complete styling in one file
   ============================================ */

/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    --primary: #2b7a3a;
    --primary-light: #3a9a4e;
    --primary-dark: #1a5a2a;
    --gold: #e6c87a;
    --gold-light: #f0dca0;
    --gold-dark: #c4a85a;
    --bg: #0d1f12;
    --bg-light: #152b1c;
    --bg-card: rgba(255, 255, 255, 0.06);
    --text: #f5f0e8;
    --text-muted: rgba(245, 240, 232, 0.6);
    --text-dim: rgba(255, 255, 255, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.15);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   ANIMATIONS (Global)
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

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

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(43, 122, 58, 0.3); }
    50% { box-shadow: 0 0 40px rgba(43, 122, 58, 0.6); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

/* Animation Classes */
.animate-fade-up { animation: fadeInUp 0.6s ease-out forwards; }
.animate-fade-down { animation: fadeInDown 0.6s ease-out forwards; }
.animate-fade-left { animation: fadeInLeft 0.6s ease-out forwards; }
.animate-fade-right { animation: fadeInRight 0.6s ease-out forwards; }
.animate-scale { animation: scaleIn 0.5s ease-out forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-float-slow { animation: floatSlow 6s ease-in-out infinite; }
.animate-pulse { animation: pulseGlow 2s ease-in-out infinite; }
.animate-spin { animation: spin 1s linear infinite; }

/* Animation Delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }
.delay-9 { animation-delay: 0.9s; }
.delay-10 { animation-delay: 1.0s; }

/* ============================================
   GLASSMORPHISM
   ============================================ */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.glass-sm {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
}

/* ============================================
   TEXT GRADIENTS
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   BUTTONS - Modern
   ============================================ */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-modern::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.btn-modern:hover::after { opacity: 1; }
.btn-modern:active { transform: scale(0.98); }

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(43, 122, 58, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(43, 122, 58, 0.4);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--bg);
    box-shadow: 0 4px 20px rgba(230, 200, 122, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 200, 122, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--glass-border);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(235, 51, 73, 0.3);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(235, 51, 73, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(17, 153, 142, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(17, 153, 142, 0.4);
}

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 40px; font-size: 18px; }
.btn-block { width: 100%; display: flex; }

/* ============================================
   CARDS
   ============================================ */
.card-modern {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.card-modern:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 200, 122, 0.2);
    box-shadow: var(--shadow);
}

.card-dark {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.card-dark:hover {
    border-color: rgba(230, 200, 122, 0.15);
    transform: translateY(-2px);
}

/* ============================================
   BADGES
   ============================================ */
.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: rgba(56, 239, 125, 0.15);
    color: #38ef7d;
}

.badge-danger {
    background: rgba(235, 51, 73, 0.15);
    color: #eb3349;
}

.badge-warning {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.badge-info {
    background: rgba(23, 162, 184, 0.15);
    color: #17a2b8;
}

.badge-gold {
    background: rgba(230, 200, 122, 0.15);
    color: var(--gold);
}

/* ============================================
   FORMS
   ============================================ */
.input-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--text);
    font-size: 16px;
    width: 100%;
    transition: var(--transition);
    outline: none;
}

.input-modern:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(230, 200, 122, 0.1);
}

.input-modern::placeholder {
    color: var(--text-dim);
}

.input-modern:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   TABLES
   ============================================ */
.table-modern {
    width: 100%;
    border-collapse: collapse;
}

.table-modern th {
    text-align: left;
    padding: 12px 16px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--glass-border);
}

.table-modern td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text);
}

.table-modern tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.progress-modern {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.progress-modern .bar {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
    transition: width 1s ease;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 768px) {
    .btn-modern { width: 100%; padding: 12px 24px; font-size: 14px; }
    .card-modern { padding: 16px; }
    .table-modern { font-size: 14px; }
    .table-modern th,
    .table-modern td { padding: 8px 12px; }
}

@media (max-width: 576px) {
    .btn-modern { font-size: 13px; padding: 10px 20px; }
    .card-modern { padding: 14px; border-radius: 16px; }
}

/* ============================================
   DASHBOARD SPECIFIC STYLES
   ============================================ */

.dashboard-container {
    padding: 20px 16px 100px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Welcome Header */
.welcome-header {
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.welcome-header .greeting {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.welcome-header .greeting .highlight {
    color: var(--gold-color);
}

.welcome-header .subtitle {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-top: 2px;
}

.welcome-header .rank-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(230,200,122,0.12);
    border: 1px solid rgba(230,200,122,0.15);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-color);
    margin-top: 6px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 16px;
    transition: all 0.3s ease;
    cursor: default;
}

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

.stat-card .stat-icon {
    font-size: 24px;
    margin-bottom: 6px;
    display: block;
}

.stat-card .stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.stat-card .stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}

.stat-card.gold .stat-value {
    color: var(--gold-color);
}

.stat-card.green .stat-value {
    color: #38ef7d;
}

.stat-card.blue .stat-value {
    color: #4facfe;
}

.stat-card.pink .stat-value {
    color: #f093fb;
}

/* Section Cards */
.section-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.section-card .card-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.section-card .card-title .badge-gold {
    background: rgba(230,200,122,0.12);
    color: var(--gold-color);
    font-size: 10px;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 500;
}

/* Referral Code */
.referral-code-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(13,31,18,0.6);
    border: 1px solid rgba(230,200,122,0.15);
    border-radius: 12px;
    padding: 10px 14px;
    flex-wrap: wrap;
}

.referral-code-box .code {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-color);
    letter-spacing: 1px;
    word-break: break-all;
    min-width: 120px;
}

.referral-code-box .copy-btn {
    background: rgba(230,200,122,0.12);
    border: none;
    color: var(--gold-color);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

/* Progress Bar */
.progress-modern {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 8px;
}

.progress-modern .bar {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--gold-color) 0%, #f0dca0 100%);
    transition: width 1s ease;
}

/* Earnings List */
.earnings-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.earnings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

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

.earnings-item .label {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.earnings-item .value {
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
}

.earnings-item .value.gold {
    color: var(--gold-color);
}

.earnings-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 4px;
    border-top: 2px solid rgba(230,200,122,0.15);
    margin-top: 4px;
}

.earnings-total .label {
    font-weight: 700;
    color: #ffffff;
    font-size: 15px;
}

.earnings-total .value {
    font-size: 20px;
    font-weight: 800;
    color: var(--gold-color);
}

/* Matrix Grid */
.matrix-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.matrix-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.matrix-item:active {
    transform: scale(0.97);
}

.matrix-item .icon {
    font-size: 28px;
    display: block;
    margin-bottom: 4px;
}

.matrix-item .name {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.matrix-item .info {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}

.matrix-item .link {
    font-size: 11px;
    color: var(--gold-color);
    text-decoration: none;
    display: inline-block;
    margin-top: 4px;
}

.matrix-item .link:hover {
    text-decoration: underline;
}

/* Quick Links */
.quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
}

.quick-link {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 500;
}

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

.quick-link .icon {
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
}

.quick-link:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(230,200,122,0.15);
    color: #ffffff;
}

/* Locked State */
.locked-state {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
}

.locked-state .icon {
    font-size: 56px;
    display: block;
    margin-bottom: 12px;
}

.locked-state h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.locked-state p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-bottom: 16px;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 12px;
}

.status-badge.active {
    background: rgba(56,239,125,0.12);
    color: #38ef7d;
}

.status-badge.inactive {
    background: rgba(235,51,73,0.12);
    color: #eb3349;
}

.status-badge.pending {
    background: rgba(255,193,7,0.12);
    color: #ffc107;
}

/* Responsive Dashboard */
@media (max-width: 480px) {
    .dashboard-container {
        padding: 16px 12px 80px;
    }

    .welcome-header .greeting {
        font-size: 20px;
    }

    .stats-grid {
        gap: 10px;
    }

    .stat-card {
        padding: 14px;
    }

    .stat-card .stat-value {
        font-size: 18px;
    }

    .quick-links {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 6px;
    }

    .quick-link {
        padding: 10px 6px;
        font-size: 11px;
    }

    .matrix-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .referral-code-box {
        flex-wrap: wrap;
    }

    .referral-code-box .code {
        font-size: 14px;
        width: 100%;
    }

    .earnings-total .value {
        font-size: 18px;
    }

    .section-card .card-title {
        font-size: 14px;
    }
}

/* ============================================
   DASHBOARD - MODERN 2026 (GLOBAL)
   ============================================ */

.dash-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 16px 16px 100px;
    position: relative;
    z-index: 1;
}

/* ===== Top Bar ===== */
.dash-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.dash-greeting {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.dash-greeting span {
    color: var(--gold-color);
}

.dash-rank {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(230,200,122,0.1);
    border: 1px solid rgba(230,200,122,0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold-color);
}

.dash-rank .star {
    font-size: 14px;
}

/* ===== News Ticker ===== */
.dash-news {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 6px 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.dash-news .tag {
    background: var(--gold-color);
    color: #0d1f12;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 4px;
    white-space: nowrap;
    text-transform: uppercase;
}

.dash-news .track {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.dash-news .track .items {
    display: inline-block;
    animation: scrollNews 30s linear infinite;
    padding-left: 100%;
}

.dash-news .track .items span {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    margin-right: 32px;
}

@keyframes scrollNews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ===== Stats Grid ===== */
.dash-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.stat-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 14px 16px;
    transition: all 0.2s;
    cursor: default;
}

.stat-box:active {
    transform: scale(0.97);
}

.stat-box .icon {
    font-size: 20px;
    display: block;
    margin-bottom: 2px;
}

.stat-box .value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.stat-box .label {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    margin-top: 1px;
}

.stat-box.gold .value { color: var(--gold-color); }
.stat-box.green .value { color: #38ef7d; }
.stat-box.blue .value { color: #4facfe; }
.stat-box.pink .value { color: #f093fb; }

/* ===== Cards ===== */
.dash-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 10px;
}

.dash-card .title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.dash-card .title .badge {
    font-size: 9px;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 500;
    background: rgba(230,200,122,0.12);
    color: var(--gold-color);
}

.dash-card .title .badge.active {
    background: rgba(56,239,125,0.12);
    color: #38ef7d;
}

.dash-card .title .badge.inactive {
    background: rgba(235,51,73,0.12);
    color: #eb3349;
}

/* ===== Referral Box ===== */
.ref-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(13,31,18,0.5);
    border: 1px solid rgba(230,200,122,0.12);
    border-radius: 10px;
    padding: 8px 12px;
    flex-wrap: wrap;
}

.ref-box .code {
    flex: 1;
    font-family: monospace;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold-color);
    letter-spacing: 1px;
    min-width: 100px;
    word-break: break-all;
}

.ref-box .copy {
    background: rgba(230,200,122,0.1);
    border: none;
    color: var(--gold-color);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.ref-box .copy:active {
    transform: scale(0.95);
}

/* ===== Progress ===== */
.progress-track {
    width: 100%;
    height: 5px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 6px;
}

.progress-track .fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--gold-color), #f0dca0);
    transition: width 1s ease;
}

/* ===== Earnings ===== */
.earn-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.earn-item {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

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

.earn-item .lbl {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
}

.earn-item .val {
    font-weight: 600;
    color: #fff;
    font-size: 13px;
}

.earn-item .val.gold {
    color: var(--gold-color);
}

.earn-item .val.green {
    color: #38ef7d;
}

.earn-item .val.red {
    color: #eb3349;
}

.earn-total {
    display: flex;
    justify-content: space-between;
    padding: 8px 0 4px;
    border-top: 2px solid rgba(230,200,122,0.15);
    margin-top: 4px;
}

.earn-total .lbl {
    font-weight: 700;
    color: #fff;
    font-size: 14px;
}

.earn-total .val {
    font-size: 18px;
    font-weight: 800;
    color: var(--gold-color);
}

/* ===== Matrix ===== */
.matrix-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
}

.matrix-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    transition: all 0.2s;
}

.matrix-item:active {
    transform: scale(0.97);
}

.matrix-item .icon {
    font-size: 24px;
    display: block;
    margin-bottom: 2px;
}

.matrix-item .name {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.matrix-item .info {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    margin-top: 2px;
}

.matrix-item .link {
    font-size: 10px;
    color: var(--gold-color);
    text-decoration: none;
    display: inline-block;
    margin-top: 4px;
}

.matrix-item .link:hover {
    text-decoration: underline;
}

/* ===== Quick Links ===== */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-top: 4px;
}

.quick-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 10px 4px;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    color: rgba(255,255,255,0.6);
    font-size: 10px;
    font-weight: 500;
}

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

.quick-item .icon {
    font-size: 18px;
    display: block;
    margin-bottom: 2px;
}

.quick-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(230,200,122,0.12);
    color: #fff;
}

/* ===== Locked State ===== */
.locked {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
}

.locked .icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.locked h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.locked p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-bottom: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
    .dash-container {
        padding: 12px 12px 80px;
    }

    .dash-greeting {
        font-size: 17px;
    }

    .dash-stats {
        gap: 8px;
    }

    .stat-box {
        padding: 12px;
    }

    .stat-box .value {
        font-size: 16px;
    }

    .quick-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
    }

    .quick-item {
        padding: 8px 4px;
        font-size: 9px;
    }

    .quick-item .icon {
        font-size: 16px;
    }

    .ref-box .code {
        font-size: 13px;
    }

    .earn-total .val {
        font-size: 16px;
    }

    .matrix-grid {
        gap: 6px;
    }

    .matrix-item {
        padding: 10px;
    }
}

@media (max-width: 380px) {
    .dash-stats {
        grid-template-columns: 1fr 1fr;
    }

    .quick-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .matrix-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-box .value {
        font-size: 14px;
    }

    .stat-box {
        padding: 10px;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 16px 100px;
    position: relative;
    z-index: 1;
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 28px;
}

.contact-header .icon {
    font-size: 56px;
    display: block;
    margin-bottom: 8px;
    animation: float 3s ease-in-out infinite;
}

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

.contact-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.contact-header .highlight {
    background: linear-gradient(135deg, var(--gold-color) 0%, #f0dca0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-top: 4px;
}

/* Contact Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-info-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:active {
    transform: scale(0.97);
}

.contact-info-card .icon {
    font-size: 28px;
    display: block;
    margin-bottom: 6px;
}

.contact-info-card .label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-bottom: 2px;
}

.contact-info-card .value {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    word-break: break-all;
}

.contact-info-card .copy-btn {
    background: rgba(230,200,122,0.1);
    border: none;
    color: var(--gold-color);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 10px;
    cursor: pointer;
    margin-top: 4px;
    transition: all 0.2s;
    font-weight: 600;
}

.contact-info-card .copy-btn:active {
    transform: scale(0.95);
}

.contact-info-card.gold {
    border-color: rgba(230,200,122,0.15);
}

.contact-info-card.gold .value {
    color: var(--gold-color);
}

/* Form Card */
.contact-form-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 20px;
}

.contact-form-card .form-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form-group {
    margin-bottom: 14px;
}

.contact-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4px;
}

.contact-form-group label .required {
    color: #eb3349;
    margin-left: 2px;
}

.contact-form-group .input-wrapper {
    position: relative;
}

.contact-form-group .input-wrapper .input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}

.contact-form-group .input-wrapper input,
.contact-form-group .input-wrapper textarea {
    width: 100%;
    padding: 12px 14px 12px 42px;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.contact-form-group .input-wrapper textarea {
    padding: 12px 14px 12px 14px;
    resize: vertical;
    min-height: 100px;
}

.contact-form-group .input-wrapper input:focus,
.contact-form-group .input-wrapper textarea:focus {
    border-color: var(--gold-color);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 4px rgba(230,200,122,0.1);
}

.contact-form-group .input-wrapper input::placeholder,
.contact-form-group .input-wrapper textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.contact-form-group .helper-text {
    font-size: 10px;
    color: rgba(255,255,255,0.25);
    margin-top: 4px;
}

/* Send Button */
.btn-send {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--gold-color) 0%, #f0dca0 100%);
    border: none;
    border-radius: 12px;
    color: #0d1f12;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(230,200,122,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230,200,122,0.35);
}

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

.btn-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Success Alert */
.alert-success-modern {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(56,239,125,0.12);
    border: 1px solid rgba(56,239,125,0.2);
    color: #38ef7d;
    font-size: 14px;
    animation: slideUp 0.4s ease-out;
}

.alert-success-modern .icon {
    font-size: 20px;
}

/* Social Links */
.contact-social {
    text-align: center;
    margin-top: 20px;
}

.contact-social .links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.contact-social .links a {
    color: rgba(255,255,255,0.3);
    font-size: 24px;
    transition: all 0.3s;
}

.contact-social .links a:hover {
    color: var(--gold-color);
    transform: translateY(-3px);
}

.contact-social .label {
    font-size: 11px;
    color: rgba(255,255,255,0.15);
    margin-top: 8px;
}

/* Security Badge */
.contact-security {
    text-align: center;
    margin-top: 16px;
    color: rgba(255,255,255,0.1);
    font-size: 11px;
}

/* Responsive */
@media (max-width: 480px) {
    .contact-container {
        padding: 16px 12px 80px;
    }

    .contact-header h2 {
        font-size: 24px;
    }

    .contact-header .icon {
        font-size: 44px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .contact-info-card {
        padding: 12px;
    }

    .contact-info-card .value {
        font-size: 12px;
    }

    .contact-form-card {
        padding: 16px;
    }

    .contact-form-group .input-wrapper input,
    .contact-form-group .input-wrapper textarea {
        font-size: 13px;
        padding: 10px 12px 10px 38px;
    }

    .btn-send {
        font-size: 15px;
        padding: 12px;
    }

    .contact-social .links a {
        font-size: 20px;
    }
}

@media (max-width: 380px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   COURSE PAGE STYLES
   ============================================ */

.course-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 16px 100px;
    position: relative;
    z-index: 1;
}

/* Header */
.course-header {
    text-align: center;
    margin-bottom: 24px;
}

.course-header .icon {
    font-size: 48px;
    display: block;
    margin-bottom: 6px;
    animation: float 3s ease-in-out infinite;
}

.course-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.course-header .highlight {
    background: linear-gradient(135deg, var(--gold-color) 0%, #f0dca0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.course-header p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-top: 4px;
}

/* Course Card */
.course-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.course-card:hover {
    border-color: rgba(230,200,122,0.15);
}

.course-card .course-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.course-card .course-title .badge {
    font-size: 9px;
    padding: 2px 10px;
    border-radius: 12px;
    background: rgba(230,200,122,0.12);
    color: var(--gold-color);
    font-weight: 500;
    margin-left: 8px;
}

.course-card .course-description {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.course-card .course-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.course-card .course-meta .meta-item {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    gap: 4px;
}

.course-card .course-meta .meta-item .icon {
    font-size: 14px;
}

.course-card .course-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--gold-color);
    margin-bottom: 14px;
}

.course-card .course-price .label {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.3);
}

/* Course Features */
.course-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 16px;
}

.course-features .feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    padding: 4px 0;
}

.course-features .feature .check {
    color: #38ef7d;
    font-weight: 700;
}

/* Purchased State */
.course-purchased {
    text-align: center;
    padding: 30px 20px;
}

.course-purchased .icon {
    font-size: 64px;
    display: block;
    margin-bottom: 12px;
    animation: float 3s ease-in-out infinite;
}

.course-purchased h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.course-purchased p {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    margin-bottom: 16px;
}

/* Locked State */
.course-locked {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
}

.course-locked .icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.course-locked h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.course-locked p {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    margin-bottom: 14px;
}

/* Buttons */
.btn-buy {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--gold-color) 0%, #f0dca0 100%);
    border: none;
    border-radius: 12px;
    color: #0d1f12;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(230,200,122,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230,200,122,0.35);
}

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

.btn-buy:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn-dashboard {
    display: inline-flex;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--gold-color) 0%, #f0dca0 100%);
    border: none;
    border-radius: 12px;
    color: #0d1f12;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(230,200,122,0.25);
}

.btn-dashboard:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230,200,122,0.35);
}

/* Responsive */
@media (max-width: 480px) {
    .course-container {
        padding: 16px 12px 80px;
    }

    .course-header h2 {
        font-size: 22px;
    }

    .course-header .icon {
        font-size: 40px;
    }

    .course-card {
        padding: 16px;
    }

    .course-card .course-title {
        font-size: 16px;
    }

    .course-features {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .course-features .feature {
        font-size: 11px;
    }

    .course-card .course-price {
        font-size: 20px;
    }

    .btn-buy {
        font-size: 15px;
        padding: 12px;
    }
}

/* ============================================
   DEPOSIT PROCESSING PAGE STYLES
   ============================================ */

.processing-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 16px 100px;
    position: relative;
    z-index: 1;
}

.processing-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    animation: slideUp 0.6s ease-out;
}

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

.processing-card .icon {
    font-size: 72px;
    display: block;
    margin-bottom: 12px;
    animation: pulseRotate 2s ease-in-out infinite;
}

@keyframes pulseRotate {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

.processing-card .spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border: 4px solid rgba(230,200,122,0.1);
    border-top-color: var(--gold-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.processing-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.processing-card h2 .highlight {
    color: var(--gold-color);
}

.processing-card .subtitle {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-bottom: 4px;
}

.processing-card .amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold-color);
    margin: 8px 0;
}

.processing-card .amount .currency {
    font-size: 20px;
}

.processing-card .description {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.6;
    margin: 12px 0;
}

/* Status Steps */
.status-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 24px 0;
    padding: 0 8px;
}

.status-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    position: relative;
}

.status-steps .step .circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.status-steps .step .circle.active {
    border-color: var(--gold-color);
    background: var(--gold-color);
    color: #0d1f12;
}

.status-steps .step .circle.done {
    border-color: #38ef7d;
    background: #38ef7d;
    color: #0d1f12;
}

.status-steps .step .step-label {
    font-size: 9px;
    color: rgba(255,255,255,0.3);
    text-align: center;
    font-weight: 500;
}

.status-steps .step .step-label.active {
    color: var(--gold-color);
}

.status-steps .step .step-label.done {
    color: #38ef7d;
}

.status-steps .step .line {
    position: absolute;
    top: 16px;
    left: calc(100% + 4px);
    width: calc(100% - 8px);
    height: 2px;
    background: rgba(255,255,255,0.05);
}

.status-steps .step .line.done {
    background: #38ef7d;
}

.status-steps .step:last-child .line {
    display: none;
}

/* Info Box */
.info-box {
    background: rgba(230,200,122,0.06);
    border: 1px solid rgba(230,200,122,0.1);
    border-radius: 12px;
    padding: 14px 16px;
    margin: 16px 0;
}

.info-box p {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    margin: 0;
}

.info-box .icon {
    font-size: 18px;
    margin-right: 6px;
}

/* Buttons */
.btn-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--gold-color) 0%, #f0dca0 100%);
    border: none;
    border-radius: 12px;
    color: #0d1f12;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(230,200,122,0.25);
    width: 100%;
}

.btn-status:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230,200,122,0.35);
}

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

.btn-outline-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
}

.btn-outline-status:hover {
    border-color: var(--gold-color);
    color: var(--gold-color);
}

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

/* Responsive */
@media (max-width: 480px) {
    .processing-container {
        padding: 30px 16px 80px;
    }

    .processing-card {
        padding: 24px 16px;
    }

    .processing-card .icon {
        font-size: 56px;
    }

    .processing-card h2 {
        font-size: 20px;
    }

    .processing-card .amount {
        font-size: 28px;
    }

    .status-steps .step .circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .status-steps .step .step-label {
        font-size: 8px;
    }

    .btn-status {
        font-size: 14px;
        padding: 10px 24px;
    }
}

/* ============================================
   DEPOSIT PAGE STYLES
   ============================================ */

.deposit-main-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 16px 100px;
    position: relative;
    z-index: 1;
}

.deposit-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.deposit-main-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.deposit-main-header .highlight {
    color: var(--gold-color);
}

.deposit-main-header .btn-history {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.deposit-main-header .btn-history:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.deposit-main-subtitle {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-bottom: 20px;
}

/* Amount Display */
.amount-display-main {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(230,200,122,0.15);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.amount-display-main .label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.amount-display-main .amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--gold-color);
}

.amount-display-main .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--gold-color);
}

.amount-display-main .desc {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    margin-top: 4px;
}

/* Payment Methods */
.payment-methods-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.payment-method-main {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 14px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method-main:hover {
    border-color: rgba(230,200,122,0.15);
    transform: translateY(-2px);
}

.payment-method-main.active {
    border-color: var(--gold-color);
    background: rgba(230,200,122,0.06);
    box-shadow: 0 0 30px rgba(230,200,122,0.05);
}

.payment-method-main .icon {
    font-size: 28px;
    display: block;
    margin-bottom: 4px;
}

.payment-method-main .name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.payment-method-main .desc {
    font-size: 9px;
    color: rgba(255,255,255,0.3);
}

.payment-method-main.active .name {
    color: var(--gold-color);
}

/* Details Box */
.deposit-details-main {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.deposit-details-main .label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-align: center;
}

.deposit-details-main .value {
    font-size: 14px;
    color: var(--gold-color);
    font-weight: 600;
    word-break: break-all;
    padding: 8px 12px;
    background: rgba(0,0,0,0.2);
    border-radius: 6px;
    margin: 4px 0;
    text-align: center;
}

.deposit-details-main .value-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.deposit-details-main .value-row .val {
    color: var(--gold-color);
    font-weight: 600;
}

.btn-copy-main {
    background: rgba(230,200,122,0.1);
    border: none;
    color: var(--gold-color);
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
}

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

/* File Upload */
.upload-area-main {
    border: 2px dashed rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.upload-area-main:hover {
    border-color: rgba(230,200,122,0.2);
}

.upload-area-main .icon {
    font-size: 36px;
    display: block;
    margin-bottom: 6px;
}

.upload-area-main .text {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.upload-area-main .sub {
    font-size: 11px;
    color: rgba(255,255,255,0.2);
}

.image-preview-main {
    margin-top: 10px;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.image-preview-main img {
    max-width: 100%;
    max-height: 150px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2);
}

.image-preview-main .hint {
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    text-align: center;
    margin-top: 4px;
}

/* Lightbox */
.lightbox-main {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-main.show {
    display: flex;
}

.lightbox-main img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-main .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 36px;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.3s;
}

.lightbox-main .close:hover {
    color: var(--gold-color);
    transform: rotate(90deg);
}

/* Form */
.deposit-form-group-main {
    margin-bottom: 14px;
}

.deposit-form-group-main label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4px;
}

.deposit-form-group-main label .required {
    color: #eb3349;
    margin-left: 2px;
}

.deposit-form-group-main .input-wrapper {
    position: relative;
}

.deposit-form-group-main .input-wrapper .input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}

.deposit-form-group-main .input-wrapper input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.deposit-form-group-main .input-wrapper input:focus {
    border-color: var(--gold-color);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 4px rgba(230,200,122,0.1);
}

.deposit-form-group-main .input-wrapper input::placeholder {
    color: rgba(255,255,255,0.3);
}

/* Info Box */
.deposit-info-main {
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(230,200,122,0.05);
    border-radius: 10px;
    border-left: 3px solid var(--gold-color);
}

.deposit-info-main p {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.deposit-info-main strong {
    color: var(--gold-color);
}

/* Alert */
.alert-deposit-main {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    animation: fadeInUp 0.4s ease-out;
}

.alert-deposit-main.success {
    background: rgba(56,239,125,0.12);
    border: 1px solid rgba(56,239,125,0.2);
    color: #38ef7d;
}

.alert-deposit-main.error {
    background: rgba(235,51,73,0.12);
    border: 1px solid rgba(235,51,73,0.2);
    color: #eb3349;
}

/* Submit Button */
.btn-submit-main {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--gold-color) 0%, #f0dca0 100%);
    border: none;
    border-radius: 12px;
    color: #0d1f12;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(230,200,122,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230,200,122,0.35);
}

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

.btn-submit-main:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Responsive */
@media (max-width: 480px) {
    .deposit-main-container {
        padding: 16px 12px 80px;
    }

    .deposit-main-header h2 {
        font-size: 20px;
    }

    .amount-display-main .amount {
        font-size: 32px;
    }

    .payment-methods-main {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .payment-method-main {
        padding: 10px 4px;
    }

    .payment-method-main .icon {
        font-size: 22px;
    }

    .deposit-details-main .value-row {
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }

    .upload-area-main {
        padding: 16px;
    }

    .upload-area-main .icon {
        font-size: 28px;
    }

    .lightbox-main .close {
        font-size: 28px;
        top: 12px;
        right: 16px;
    }
}

/* ============================================
   DEPOSIT HISTORY PAGE STYLES
   ============================================ */

.deposit-history-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 16px 100px;
    position: relative;
    z-index: 1;
}

.deposit-history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.deposit-history-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.deposit-history-header .highlight {
    color: var(--gold-color);
}

.deposit-history-header .btn-new {
    background: linear-gradient(135deg, var(--gold-color) 0%, #f0dca0 100%);
    border: none;
    color: #0d1f12;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.deposit-history-header .btn-new:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(230,200,122,0.3);
}

/* Deposit Item */
.deposit-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.deposit-item:hover {
    border-color: rgba(230,200,122,0.1);
}

.deposit-item .top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}

.deposit-item .amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-color);
}

.deposit-item .meta {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.deposit-item .meta .dot {
    margin: 0 4px;
    color: rgba(255,255,255,0.1);
}

.deposit-item .meta .txid {
    color: rgba(255,255,255,0.25);
    font-size: 11px;
}

.deposit-item .date {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    margin-top: 2px;
}

.deposit-item .right {
    text-align: right;
}

.deposit-item .screenshot-link {
    font-size: 10px;
    color: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.deposit-item .screenshot-link:hover {
    color: var(--gold-color);
}

/* Status Badges */
.status-badge-history {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge-history.approved {
    background: rgba(56,239,125,0.12);
    color: #38ef7d;
    border: 1px solid rgba(56,239,125,0.15);
}

.status-badge-history.pending {
    background: rgba(255,193,7,0.12);
    color: #ffc107;
    border: 1px solid rgba(255,193,7,0.15);
}

.status-badge-history.rejected {
    background: rgba(235,51,73,0.12);
    color: #eb3349;
    border: 1px solid rgba(235,51,73,0.15);
}

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

.deposit-empty .icon {
    font-size: 64px;
    display: block;
    margin-bottom: 12px;
    animation: float 3s ease-in-out infinite;
}

.deposit-empty h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px;
}

.deposit-empty p {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    margin: 4px 0 16px;
}

/* Lightbox */
.lightbox-history {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-history.show {
    display: flex;
}

.lightbox-history img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-history .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 36px;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.3s;
}

.lightbox-history .close:hover {
    color: var(--gold-color);
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 480px) {
    .deposit-history-container {
        padding: 16px 12px 80px;
    }

    .deposit-history-header h2 {
        font-size: 20px;
    }

    .deposit-item {
        padding: 12px 14px;
    }

    .deposit-item .amount {
        font-size: 16px;
    }

    .deposit-item .top-row {
        flex-direction: column;
        align-items: stretch;
    }

    .deposit-item .right {
        text-align: left;
        margin-top: 4px;
    }

    .deposit-empty .icon {
        font-size: 48px;
    }

    .deposit-empty h3 {
        font-size: 18px;
    }

    .lightbox-history .close {
        font-size: 28px;
        top: 12px;
        right: 16px;
    }
}

/* ============================================
   EARNINGS PAGE STYLES
   ============================================ */

.earnings-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 16px 100px;
    position: relative;
    z-index: 1;
}

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

.earnings-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.earnings-header .highlight {
    color: var(--gold-color);
}

.earnings-header p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-top: 2px;
}

/* Stats Grid */
.earnings-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.earnings-stats .stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.earnings-stats .stat-card .value {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-color);
}

.earnings-stats .stat-card .label {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}

.earnings-stats .stat-card.gold {
    border-left: 3px solid var(--gold-color);
}

.earnings-stats .stat-card.green {
    border-left: 3px solid #38ef7d;
}

.earnings-stats .stat-card.blue {
    border-left: 3px solid #4facfe;
}

/* Breakdown */
.earnings-breakdown {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.earnings-breakdown .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border-left: 3px solid var(--gold-color);
    transition: all 0.3s;
}

.earnings-breakdown .item:hover {
    background: rgba(255,255,255,0.05);
}

.earnings-breakdown .item .label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.earnings-breakdown .item .amount {
    font-weight: 600;
    font-size: 14px;
}

.earnings-breakdown .item .amount.positive {
    color: var(--gold-color);
}

.earnings-breakdown .item .amount.negative {
    color: #eb3349;
}

.earnings-breakdown .item.total {
    border-top: 2px solid rgba(230,200,122,0.15);
    border-left-color: var(--gold-color);
    background: rgba(230,200,122,0.05);
}

.earnings-breakdown .item.total .label {
    font-weight: 700;
    color: #ffffff;
}

.earnings-breakdown .item.total .amount {
    font-size: 18px;
    color: var(--gold-color);
}

/* Cap Progress */
.cap-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 12px;
}

.cap-card .cap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.cap-card .cap-header .title {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.cap-card .cap-header .status {
    font-size: 11px;
    font-weight: 600;
}

.cap-card .cap-header .status.active {
    color: #38ef7d;
}

.cap-card .cap-header .status.frozen {
    color: #eb3349;
}

.cap-card .cap-numbers {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    margin-top: 4px;
}

.cap-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
    margin: 6px 0;
}

.cap-bar .fill {
    height: 100%;
    background: var(--gold-color);
    border-radius: 10px;
    transition: width 1s ease;
}

.cap-bar .fill.warning {
    background: #ffc107;
}

.cap-bar .fill.danger {
    background: #eb3349;
}

.cap-card .remaining {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    margin-top: 2px;
}

.cap-card .frozen-box {
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(235,51,73,0.1);
    border-radius: 8px;
    text-align: center;
}

.cap-card .frozen-box p {
    color: #eb3349;
    font-size: 12px;
    margin: 0;
}

/* Global Pool */
.global-pool-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 12px;
}

.global-pool-card .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.global-pool-card .header .title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.global-pool-card .header .status-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 12px;
}

.global-pool-card .header .status-badge.qualified {
    background: rgba(56,239,125,0.12);
    color: #38ef7d;
    border: 1px solid rgba(56,239,125,0.15);
}

.global-pool-card .header .status-badge.pending {
    background: rgba(255,193,7,0.12);
    color: #ffc107;
    border: 1px solid rgba(255,193,7,0.15);
}

.global-pool-card .header .status-badge.expired {
    background: rgba(235,51,73,0.12);
    color: #eb3349;
    border: 1px solid rgba(235,51,73,0.15);
}

.global-pool-card .pool-amount {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.global-pool-card .pool-amount .value {
    font-weight: 600;
    color: var(--gold-color);
}

.global-pool-card .requirements {
    margin-top: 8px;
}

.global-pool-card .requirements .req-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.global-pool-card .requirements .req-item .check {
    font-size: 14px;
}

.global-pool-card .requirements .req-item .count {
    margin-left: auto;
    font-size: 11px;
    color: rgba(255,255,255,0.25);
}

/* Passive Income */
.passive-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 12px;
}

.passive-card .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.passive-card .header .title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.passive-card .header .status-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 12px;
}

.passive-card .header .status-badge.active {
    background: rgba(56,239,125,0.12);
    color: #38ef7d;
    border: 1px solid rgba(56,239,125,0.15);
}

.passive-card .header .status-badge.locked {
    background: rgba(235,51,73,0.12);
    color: #eb3349;
    border: 1px solid rgba(235,51,73,0.15);
}

.passive-card .info {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.passive-card .info .value {
    font-weight: 600;
    color: var(--gold-color);
}

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

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

.transactions-list .tx-item:last-child {
    border-bottom: none;
}

.transactions-list .tx-item .left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.transactions-list .tx-item .left .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.transactions-list .tx-item .left .tx-type {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
}

.transactions-list .tx-item .left .tx-level {
    font-size: 10px;
    color: rgba(255,255,255,0.25);
}

.transactions-list .tx-item .left .tx-status {
    font-size: 10px;
    color: rgba(255,255,255,0.25);
}

.transactions-list .tx-item .right {
    text-align: right;
}

.transactions-list .tx-item .right .amount {
    font-weight: 600;
    font-size: 14px;
}

.transactions-list .tx-item .right .amount.credit {
    color: var(--gold-color);
}

.transactions-list .tx-item .right .amount.debit {
    color: #eb3349;
}

.transactions-list .tx-item .right .date {
    font-size: 10px;
    color: rgba(255,255,255,0.2);
}

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

.earnings-empty .icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.earnings-empty h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px;
}

.earnings-empty p {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 480px) {
    .earnings-container {
        padding: 16px 12px 80px;
    }

    .earnings-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .earnings-stats .stat-card .value {
        font-size: 17px;
    }

    .earnings-breakdown .item {
        padding: 8px 12px;
        font-size: 12px;
    }

    .earnings-breakdown .item .label {
        font-size: 12px;
    }

    .earnings-breakdown .item.total .amount {
        font-size: 16px;
    }

    .global-pool-card .requirements .req-item {
        font-size: 11px;
    }

    .transactions-list .tx-item {
        flex-wrap: wrap;
        gap: 4px;
    }

    .transactions-list .tx-item .right {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
