/* ============ Vercel-inspired Dark Theme ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Vercel-inspired colors */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --bg-hover: #1a1a1a;
    
    --border-color: #222222;
    --border-light: #333333;
    
    --text-primary: #fafafa;
    --text-secondary: #888888;
    --text-muted: #666666;
    
    --accent: #00d395;
    --accent-hover: #00b380;
    --accent-glow: rgba(0, 211, 149, 0.15);
    
    --warning: #f5a623;
    --danger: #ff4444;
    
    --gradient-green: linear-gradient(135deg, #00d395 0%, #00b380 100%);
    --gradient-subtle: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    
    --border-radius: 8px;
    --border-radius-lg: 12px;
    
    --shadow-glow: 0 0 30px rgba(0, 211, 149, 0.1);
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* ============ Layout ============ */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ Navigation ============ */
.navbar {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: inherit;
}

.brand-logo {
    flex-shrink: 0;
}

.brand-text {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

/* ============ Social Icons ============ */
.social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius);
    color: var(--text-muted);
    transition: all 0.15s;
}

.social-icon:hover {
    color: var(--text-primary);
    background: var(--bg-hover);
}

/* ============ Hamburger Menu ============ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    padding: 0;
    margin-left: 12px;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s ease;
    background: transparent;
    color: var(--text-primary);
}

.btn:hover:not(:disabled) {
    background: var(--bg-hover);
    border-color: var(--border-light);
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.btn-primary:hover:not(:disabled) {
    background: #e5e5e5;
    border-color: #e5e5e5;
}

.btn-accent {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.btn-accent:hover:not(:disabled) {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

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

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-full {
    width: 100%;
}

/* ============ Hero Section ============ */
.hero-section {
    position: relative;
    padding: 100px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 70%, transparent 100%);
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(0, 211, 149, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-glow-2 {
    top: 0;
    left: 20%;
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 82, 255, 0.1) 0%, transparent 70%);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 211, 149, 0.1);
    border: 1px solid rgba(0, 211, 149, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 32px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
}

/* Hero Quick Links - Marketing Buttons */
.hero-quick-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 16px;
}

.quick-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}

.quick-link-btn:hover {
    background: rgba(0, 211, 149, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.quick-link-btn.featured {
    background: rgba(0, 211, 149, 0.15);
    border-color: rgba(0, 211, 149, 0.4);
    color: var(--accent);
}

.quick-link-btn.featured:hover {
    background: rgba(0, 211, 149, 0.25);
    border-color: var(--accent);
}

.quick-link-btn span {
    font-size: 14px;
}

@media (max-width: 480px) {
    .hero-quick-links {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .quick-link-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.trust-icon {
    font-size: 16px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.stat-card {
    background: var(--bg-secondary);
    padding: 28px 24px;
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-family: var(--font-mono);
    margin-bottom: 4px;
}

.stat-value.green {
    color: var(--accent);
}

.stat-sub {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============ Latest Activity Feed ============ */
.latest-activity {
    margin-top: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.activity-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.activity-header h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: live-pulse 1.5s infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.refresh-icon {
    display: inline-block;
    transition: transform 0.3s;
    font-size: 16px;
}

#refreshActivityBtn {
    padding: 8px 12px;
}

#refreshActivityBtn:hover .refresh-icon {
    transform: rotate(180deg);
}

#refreshActivityBtn.loading .refresh-icon {
    animation: spin 1s linear infinite;
}

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

.activity-list {
    max-height: 420px;
    overflow-y: auto;
}

.activity-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s;
}

.activity-item:hover {
    background: var(--bg-hover);
}

.activity-item.deposit {
    border-left: 3px solid var(--accent);
}

.activity-item.claim {
    border-left: 3px solid var(--warning);
}

.activity-item.withdraw {
    border-left: 3px solid #3b82f6;
}

.activity-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.activity-icon-wrapper.deposit {
    background: rgba(0, 211, 149, 0.12);
}

.activity-icon-wrapper.claim {
    background: rgba(245, 166, 35, 0.12);
}

.activity-icon-wrapper.withdraw {
    background: rgba(59, 130, 246, 0.12);
}

.activity-icon {
    font-size: 18px;
}

.activity-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.activity-row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.activity-type {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.activity-amount {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
}

.activity-amount.green {
    color: var(--accent);
}

.activity-amount.yellow {
    color: var(--warning);
}

.activity-amount.blue {
    color: #3b82f6;
}

.activity-row-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.activity-address {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}

.activity-time {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
}

.activity-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--border-radius);
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.15s;
    flex-shrink: 0;
}

.activity-link-btn:hover {
    background: var(--bg-secondary);
    color: var(--accent);
}

.activity-view-all {
    display: block;
    text-align: center;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    transition: all 0.2s;
}

.activity-view-all:hover {
    color: var(--accent);
    background: var(--bg-hover);
}

.activity-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 50px 20px;
    color: var(--text-muted);
}

.activity-empty .empty-icon {
    font-size: 36px;
    opacity: 0.5;
}

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

.activity-empty .empty-hint {
    font-size: 13px;
}

/* Mobile Activity Feed */
@media (max-width: 768px) {
    .latest-activity {
        margin-top: 24px;
    }
    
    .activity-header {
        padding: 12px 16px;
    }
    
    .activity-header h3 {
        font-size: 13px;
    }
    
    .activity-item {
        padding: 12px 16px;
        gap: 10px;
    }
    
    .activity-icon-wrapper {
        width: 36px;
        height: 36px;
    }
    
    .activity-icon {
        font-size: 16px;
    }
    
    .activity-type {
        font-size: 13px;
    }
    
    .activity-amount {
        font-size: 13px;
    }
    
    .activity-address,
    .activity-time {
        font-size: 11px;
    }
    
    .activity-link-btn {
        width: 28px;
        height: 28px;
    }
    
    .activity-view-all {
        padding: 12px 16px;
        font-size: 12px;
    }
    
    .live-badge {
        padding: 3px 8px;
        font-size: 9px;
    }
    
    .live-dot {
        width: 5px;
        height: 5px;
    }
}

/* ============ Pool Health Indicator ============ */
.pool-health-bar {
    margin-top: 24px;
    padding: 20px 24px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

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

.health-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.health-status {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

.health-status.warning {
    color: var(--warning);
}

.health-status.danger {
    color: var(--danger);
}

.health-progress {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.health-fill {
    height: 100%;
    background: var(--gradient-green);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.health-fill.warning {
    background: var(--warning);
}

.health-fill.danger {
    background: var(--danger);
}

.health-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.health-info strong {
    color: var(--accent);
}

.health-tooltip {
    cursor: help;
    opacity: 0.6;
}

/* ============ Sections ============ */
.section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.section:last-of-type {
    border-bottom: none;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: -32px;
    margin-bottom: 40px;
}

/* ============ Cards ============ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============ Dashboard ============ */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

.balance-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.balance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-green);
}

.balance-display {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.balance-main .balance-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.balance-main .balance-value {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.03em;
    font-family: var(--font-mono);
}

.balance-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.balance-item {
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
}

.balance-item .balance-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.balance-item .balance-value {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-mono);
}

.balance-item .balance-value.green {
    color: var(--accent);
}

.realtime-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ============ Detailed Stats Grid ============ */
.detailed-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.stat-detail-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.stat-detail-icon {
    font-size: 28px;
    opacity: 0.8;
}

.stat-detail-info {
    display: flex;
    flex-direction: column;
}

.stat-detail-value {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.stat-detail-label {
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .detailed-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.pulse {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 211, 149, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(0, 211, 149, 0); }
}

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

.earning-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    transition: border-color 0.15s;
}

.earning-item:hover {
    border-color: var(--border-color);
}

.earning-icon {
    font-size: 20px;
    opacity: 0.6;
}

.earning-info {
    flex: 1;
}

.earning-label {
    font-size: 12px;
    color: var(--text-muted);
}

.earning-value {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-mono);
}

/* ============ Invest Section ============ */
.invest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Enhanced Deposit Card */
.deposit-card {
    position: relative;
    overflow: hidden;
}

.deposit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-green);
}

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

.form-group label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-group {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--bg-secondary);
    transition: all 0.2s;
}

.input-group:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 211, 149, 0.1);
}

.input-group-lg {
    border-radius: var(--border-radius-lg);
}

.input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px 0 16px;
}

.input-group input {
    flex: 1;
    padding: 16px 12px;
    border: none;
    font-size: 24px;
    font-family: var(--font-mono);
    font-weight: 600;
    background: transparent;
    color: var(--text-primary);
}

.input-group-lg input {
    padding: 18px 12px;
    font-size: 28px;
}

.input-group input:focus {
    outline: none;
}

.input-group input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

/* Hide number input spinners */
.input-group input::-webkit-outer-spin-button,
.input-group input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-group input[type=number] {
    -moz-appearance: textfield;
}

.input-addon {
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-hover);
    border-left: 1px solid var(--border-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.input-group-lg .input-addon {
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
}

.input-hints {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Quick Amount Buttons */
.quick-amounts {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.quick-btn {
    padding: 10px 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s;
}

.quick-btn:hover {
    background: var(--bg-hover);
    border-color: var(--accent);
    color: var(--accent);
}

.quick-btn.active {
    background: var(--accent-glow);
    border-color: var(--accent);
    color: var(--accent);
}

/* Enhanced Deposit Preview */
.deposit-preview {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: 0;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.preview-header {
    padding: 12px 16px;
    background: var(--bg-hover);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

.preview-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: background 0.15s;
}

.preview-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.preview-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-icon {
    font-size: 16px;
}

.preview-value {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
}

.preview-value small {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
}

.preview-value.green {
    color: var(--accent);
}

.preview-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0 16px;
}

.preview-row.success-row {
    background: rgba(0, 211, 149, 0.05);
}

.preview-row.success-row .preview-label {
    color: var(--text-primary);
}

/* Deposit Button */
.deposit-btn-main {
    position: relative;
    overflow: hidden;
    font-size: 16px;
    padding: 18px 28px;
}

.deposit-btn-main .btn-icon {
    margin-right: 8px;
}

.deposit-btn-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.deposit-btn-main:hover:not(:disabled)::after {
    left: 100%;
}

.deposit-footer {
    text-align: center;
    padding-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .quick-amounts {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .input-group-lg input {
        font-size: 22px;
    }
}

/* ============ Deposits List ============ */
.deposits-list {
    max-height: 400px;
    overflow-y: auto;
}

.deposit-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    border: 1px solid transparent;
    transition: border-color 0.15s;
}

.deposit-item:hover {
    border-color: var(--border-color);
}

.deposit-info {
    display: flex;
    flex-direction: column;
}

.deposit-amount {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-mono);
}

.deposit-date {
    font-size: 12px;
    color: var(--text-muted);
}

.deposit-stats {
    display: flex;
    gap: 24px;
}

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

.deposit-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.deposit-stat-value {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-mono);
}

.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted);
}

.empty-icon {
    font-size: 40px;
    opacity: 0.3;
}

.empty-state p {
    margin-top: 16px;
    font-size: 15px;
    color: var(--text-secondary);
}

.empty-hint {
    font-size: 13px;
}

/* ============ Referrals Section ============ */
.referral-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.referral-link-box {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.referral-link-box input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-mono);
    font-size: 13px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

.referral-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ref-stat {
    text-align: center;
    padding: 20px 16px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.ref-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--accent);
}

.ref-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* ============ Levels Grid ============ */
.levels-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.level-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.level-item.highlight {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.level-item.featured {
    background: linear-gradient(135deg, rgba(0, 211, 149, 0.2) 0%, rgba(0, 179, 128, 0.1) 100%);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 211, 149, 0.15);
}

.level-item.featured .level-pct {
    font-size: 18px;
    color: var(--accent);
}

.level-item.small {
    grid-column: span 2;
}

.level-num {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
}

.level-pct {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-mono);
}

.level-item.highlight .level-pct {
    color: var(--accent);
}

.levels-total {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

.levels-total strong {
    color: var(--accent);
}

/* ============ Ranks Section ============ */
.ranks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.rank-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.2s;
}

.rank-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.rank-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.rank-badge {
    font-size: 36px;
    margin-bottom: 12px;
}

.rank-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.rank-requirement {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.rank-bonus {
    display: inline-block;
    padding: 6px 12px;
    background: var(--accent-glow);
    color: var(--accent);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-mono);
}

/* ============ Features Section ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 32px 20px;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.feature-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============ Network Stats Grid ============ */
.network-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.network-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.network-stat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.network-stat-icon {
    font-size: 20px;
}

.network-stat-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.network-stat-body {
    padding: 16px 20px;
}

.network-stat-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.network-stat-row:last-child {
    border-bottom: none;
}

.network-stat-row span:first-child {
    color: var(--text-muted);
}

.network-stat-row span:last-child {
    font-weight: 500;
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.network-stat-row.highlight {
    background: var(--accent-glow);
    margin: 0 -20px;
    padding: 10px 20px;
}

.network-stat-row.highlight span:last-child {
    color: var(--accent);
    font-weight: 600;
}

.mono-text {
    font-family: var(--font-mono);
    font-size: 12px;
}

/* ============ Referrals List Card ============ */
.referrals-list-card {
    margin-bottom: 32px;
}

.referrals-list {
    max-height: 300px;
    overflow-y: auto;
}

.referral-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    margin-bottom: 8px;
    border: 1px solid transparent;
    transition: border-color 0.15s;
}

.referral-list-item:hover {
    border-color: var(--border-color);
}

.referral-address {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-primary);
}

.referral-volume {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--accent);
}

/* ============ Safety Section ============ */
.safety-section {
    padding-top: 24px;
}

.safety-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.safety-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.safety-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
}

.safety-icon.good {
    background: rgba(0, 211, 149, 0.15);
    color: var(--accent);
}

.safety-icon.warning {
    background: rgba(245, 166, 35, 0.15);
    color: var(--warning);
}

.safety-icon.danger {
    background: rgba(255, 68, 68, 0.15);
    color: var(--danger);
}

.safety-info {
    display: flex;
    flex-direction: column;
}

.safety-label {
    font-size: 12px;
    color: var(--text-muted);
}

.safety-value {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .network-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .safety-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ Community Grid ============ */
.community-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.community-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    transition: all 0.2s;
}

.community-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.community-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    color: var(--text-primary);
}

.community-icon.telegram {
    color: #0088cc;
}

.community-icon.bscscan {
    color: #f0b90b;
}

.community-icon.audit {
    color: var(--accent);
}

.community-icon.dappradar {
    color: #5865f2;
}

.community-info {
    display: flex;
    flex-direction: column;
}

.community-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.community-desc {
    font-size: 13px;
    color: var(--text-muted);
}

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

@media (max-width: 480px) {
    .community-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ Resources Grid ============ */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.resource-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.2s;
}

.resource-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.resource-card:hover::before {
    background: var(--gradient-green);
}

.resource-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(0, 211, 149, 0.08) 0%, rgba(0, 179, 128, 0.04) 100%);
}

.resource-card.featured::before {
    background: var(--gradient-green);
}

.resource-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    font-size: 24px;
    flex-shrink: 0;
}

.resource-card.featured .resource-icon {
    background: rgba(0, 211, 149, 0.15);
}

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

.resource-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.resource-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.resource-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.resource-badge.highlight {
    background: rgba(0, 211, 149, 0.15);
    border-color: rgba(0, 211, 149, 0.3);
    color: var(--accent);
}

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

@media (max-width: 600px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-card {
        padding: 20px;
    }
    
    .resource-badge {
        position: static;
        margin-top: 8px;
    }
    
    .resource-card {
        flex-wrap: wrap;
    }
}

/* ============ Trust Grid ============ */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
}

.trust-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ How It Works ============ */
.how-it-works-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 211, 149, 0.1);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-primary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-card h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

.step-arrow {
    color: var(--accent);
    font-size: 2rem;
    font-weight: 300;
    opacity: 0.5;
}

.how-it-works-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .how-it-works-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: -0.5rem 0;
    }
    
    .step-card {
        max-width: 100%;
    }
}

/* ============ Footer ============ */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ============ Badge ============ */
.badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
}

.info-badge {
    background: var(--accent-glow);
    color: var(--accent);
    border: 1px solid rgba(0, 211, 149, 0.3);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.info-badge.success {
    background: rgba(0, 211, 149, 0.2);
    color: var(--accent);
    border: 1px solid var(--accent);
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 211, 149, 0.3); }
    50% { box-shadow: 0 0 10px 2px rgba(0, 211, 149, 0.2); }
}

/* ============ Modal ============ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    max-width: 420px;
    width: 100%;
    margin: 24px;
}

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

.modal-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.15s;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    margin-bottom: 24px;
}

.modal-body p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 14px;
}

.modal-body input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-family: var(--font-mono);
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.modal-body input:focus {
    outline: none;
    border-color: var(--text-secondary);
}

.modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* ============ Toast ============ */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast.success { border-left: 3px solid var(--accent); }
.toast.error { border-left: 3px solid var(--danger); }
.toast.warning { border-left: 3px solid var(--warning); }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-grid,
    .invest-grid,
    .referral-grid {
        grid-template-columns: 1fr;
    }
    
    .ranks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-color);
        padding: 16px 24px;
        gap: 0;
        z-index: 99;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links .nav-link {
        padding: 14px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 16px;
    }
    
    .nav-links .nav-link:last-child {
        border-bottom: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .social-icons {
        display: none;
    }
    
    #connectWallet .wallet-icon {
        margin-right: 0;
    }
    
    #connectWallet span:not(.wallet-icon) {
        display: none;
    }
    
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 16px;
    }

    .trust-item {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .balance-main .balance-value {
        font-size: 36px;
    }
    
    .balance-row {
        grid-template-columns: 1fr;
    }
    
    .referral-stats {
        grid-template-columns: 1fr;
    }
    
    .levels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ranks-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

/* ============ Scrollbar ============ */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}
