/* ===================================
   VNC TRADING PLATFORM - Styles
   Professional Crypto Platform CSS
   =================================== */

/* Variables */
:root {
    --primary: #6c5ce7;
    --primary-light: #a29bfe;
    --primary-dark: #5f3dc4;
    --accent: #00cec9;
    --accent-light: #55efc4;
    --success: #2ecc71;
    --danger: #e74c3c;
    --warning: #f39c12;
    --info: #3498db;
    --bg-dark: #0a0a1a;
    --bg-card: #12122a;
    --bg-card-hover: #1a1a3e;
    --bg-section: #0e0e24;
    --bg-input: #161633;
    --text-primary: #ffffff;
    --text-secondary: #b0b0cc;
    --text-muted: #6c6c8a;
    --border: #1e1e3e;
    --border-light: #2a2a50;
    --gradient-1: linear-gradient(135deg, #6c5ce7, #a29bfe);
    --gradient-2: linear-gradient(135deg, #6c5ce7, #00cec9);
    --gradient-text: linear-gradient(135deg, #6c5ce7, #00cec9);
    --shadow: 0 8px 32px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 20px rgba(108, 92, 231, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --sidebar-width: 260px;
    --topbar-height: 64px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}
a { color: var(--primary-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
h1, h2, h3, h4, h5 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.2; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.highlight { color: var(--accent); -webkit-text-fill-color: var(--accent); }
.logo-icon { font-size: 1.5em; color: var(--primary); margin-right: 4px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 50px; font-weight: 600;
    font-size: 14px; border: none; cursor: pointer;
    transition: var(--transition); text-decoration: none;
    font-family: 'Inter', sans-serif;
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-primary { background: var(--gradient-1); color: white; box-shadow: 0 4px 15px rgba(108,92,231,0.4); }
.btn-primary:hover { box-shadow: 0 6px 20px rgba(108,92,231,0.6); }
.btn-outline { background: transparent; color: var(--text-primary); border: 2px solid var(--border-light); }
.btn-outline:hover { border-color: var(--primary); background: rgba(108,92,231,0.1); }
.btn-danger { background: linear-gradient(135deg, #e74c3c, #c0392b); color: white; }
.btn-success { background: linear-gradient(135deg, #2ecc71, #27ae60); color: white; }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-xs { padding: 4px 10px; font-size: 11px; border-radius: 6px; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; margin-bottom: 8px; font-size: 13px;
    font-weight: 500; color: var(--text-secondary);
}
.form-group label i { margin-right: 6px; color: var(--primary-light); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
    border: 2px solid var(--border); background: var(--bg-input);
    color: var(--text-primary); font-size: 14px;
    font-family: 'Inter', sans-serif; transition: var(--transition);
}
.form-group input:focus, .form-group select:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108,92,231,0.15);
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group input:disabled { opacity: 0.5; cursor: not-allowed; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; display: block; }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 16px; padding: 12px; border-radius: var(--radius-xs); background: rgba(52,152,219,0.1); }
.form-description { color: var(--text-secondary); margin-bottom: 24px; }
.form-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.password-input { position: relative; }
.toggle-password {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: var(--text-muted); cursor: pointer;
    font-size: 14px; padding: 4px;
}
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); cursor: pointer; margin-bottom: 16px; }
.checkbox-label input { accent-color: var(--primary); }
.forgot-link { font-size: 13px; color: var(--primary-light); }
.input-with-icon { position: relative; }
.input-with-icon i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.input-with-icon input { padding-left: 40px; }
.value-copy { display: flex; gap: 8px; align-items: center; }
.value-copy input, .value-copy code { flex: 1; }
.copy-btn { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-secondary); padding: 8px 12px; border-radius: var(--radius-xs); cursor: pointer; }
.copy-btn:hover { color: var(--accent); border-color: var(--accent); }
.search-input { padding: 10px 16px; border-radius: 50px; border: 2px solid var(--border); background: var(--bg-input); color: white; font-size: 13px; width: 250px; }
.search-input:focus { outline: none; border-color: var(--primary); }

/* ===== ALERTS ===== */
.alert {
    padding: 14px 18px; border-radius: var(--radius-sm); margin: 16px 0;
    font-size: 14px; display: flex; align-items: center; gap: 8px;
}
.alert-success { background: rgba(46,204,113,0.15); color: var(--success); border: 1px solid rgba(46,204,113,0.3); }
.alert-error { background: rgba(231,76,60,0.15); color: var(--danger); border: 1px solid rgba(231,76,60,0.3); }
.alert-warning { background: rgba(243,156,18,0.15); color: var(--warning); border: 1px solid rgba(243,156,18,0.3); }

/* ===== PASSWORD STRENGTH ===== */
.password-strength { margin-bottom: 16px; }
.strength-bar { height: 4px; background: var(--border); border-radius: 4px; overflow: hidden; margin-bottom: 4px; }
.strength-fill { height: 100%; width: 0; transition: all 0.3s; border-radius: 4px; }
#strengthText { font-size: 12px; color: var(--text-muted); }

/* ===== AUTH PAGES ===== */
.auth-page { min-height: 100vh; }
.auth-container { display: flex; min-height: 100vh; }
.auth-left {
    flex: 1; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding: 40px;
    background: linear-gradient(135deg, #0e0e2a 0%, #1a1040 50%, #0e0e2a 100%);
}
.auth-brand { position: relative; z-index: 2; max-width: 400px; }
.auth-logo { display: flex; align-items: center; gap: 8px; font-size: 24px; font-weight: 800; font-family: 'Space Grotesk'; margin-bottom: 32px; }
.auth-brand h1 { font-size: 36px; margin-bottom: 16px; }
.auth-brand p { color: var(--text-secondary); font-size: 16px; line-height: 1.8; }
.auth-features { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.auth-feature { display: flex; align-items: center; gap: 12px; color: var(--text-secondary); font-size: 14px; }
.auth-feature i { color: var(--accent); font-size: 18px; width: 24px; }
.auth-bg-shapes { position: absolute; inset: 0; z-index: 1; }
.shape { position: absolute; border-radius: 50%; opacity: 0.06; }
.shape-1 { width: 300px; height: 300px; background: var(--primary); top: -50px; right: -50px; animation: float 8s infinite ease-in-out; }
.shape-2 { width: 200px; height: 200px; background: var(--accent); bottom: -30px; left: -30px; animation: float 10s infinite ease-in-out reverse; }
.shape-3 { width: 150px; height: 150px; background: var(--primary-light); top: 50%; left: 50%; animation: float 6s infinite ease-in-out; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.auth-right {
    flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px;
    background: var(--bg-dark);
}
.auth-form-container { max-width: 420px; width: 100%; }
.auth-form-container h2 { font-size: 28px; margin-bottom: 8px; }
.auth-subtitle { color: var(--text-secondary); margin-bottom: 32px; }
.auth-divider { text-align: center; margin: 24px 0; position: relative; }
.auth-divider::before { content: ''; position: absolute; left: 0; top: 50%; width: 100%; height: 1px; background: var(--border); }
.auth-divider span { background: var(--bg-dark); padding: 0 16px; position: relative; color: var(--text-muted); font-size: 13px; }
.auth-alt { text-align: center; color: var(--text-secondary); font-size: 14px; }
.auth-alt a { color: var(--primary-light); font-weight: 600; }
.auth-footer { text-align: center; margin-top: 24px; }
.auth-footer a { color: var(--text-muted); font-size: 13px; }

/* ===== DASHBOARD LAYOUT ===== */
.dashboard-page { display: flex; min-height: 100vh; }

/* Sidebar */
.sidebar {
    width: var(--sidebar-width); height: 100vh; position: fixed; left: 0; top: 0;
    background: var(--bg-card); border-right: 1px solid var(--border);
    display: flex; flex-direction: column; z-index: 100;
    transition: var(--transition);
}
.sidebar-header {
    padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--border);
}
.sidebar-logo { display: flex; align-items: center; gap: 6px; font-size: 20px; font-weight: 800; font-family: 'Space Grotesk'; }
.sidebar-close { display: none; background: none; border: none; color: var(--text-secondary); font-size: 20px; cursor: pointer; }
.sidebar-nav { flex: 1; padding: 16px 12px; overflow-y: auto; }
.nav-item {
    display: flex; align-items: center; gap: 12px; padding: 12px 16px;
    border-radius: var(--radius-sm); color: var(--text-secondary);
    font-size: 14px; font-weight: 500; margin-bottom: 4px;
    transition: var(--transition); position: relative;
}
.nav-item:hover { background: rgba(108,92,231,0.1); color: var(--text-primary); }
.nav-item.active { background: rgba(108,92,231,0.15); color: var(--primary-light); }
.nav-item.active::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 3px; height: 24px; background: var(--primary); border-radius: 0 3px 3px 0;
}
.nav-item i { font-size: 16px; width: 20px; text-align: center; }
.nav-badge {
    margin-left: auto; background: var(--danger); color: white;
    font-size: 11px; padding: 2px 8px; border-radius: 10px; font-weight: 700;
}
.sidebar-footer { padding: 16px 20px; border-top: 1px solid var(--border); }
.sidebar-user { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.user-avatar {
    width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-1);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px;
}
.user-avatar-sm { width: 32px; height: 32px; border-radius: 50%; background: var(--gradient-1); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; cursor: pointer; }
.user-info { display: flex; flex-direction: column; }
.user-name { font-size: 14px; font-weight: 600; }
.user-email { font-size: 11px; color: var(--text-muted); }

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width); flex: 1; min-height: 100vh;
    display: flex; flex-direction: column;
}
.topbar {
    height: var(--topbar-height); padding: 0 24px; display: flex;
    align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--border); background: var(--bg-card);
    position: sticky; top: 0; z-index: 50;
}
.topbar-left { display: flex; align-items: center; gap: 16px; }
.topbar-left h2 { font-size: 18px; }
.menu-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 20px; cursor: pointer; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.price-ticker { display: flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 50px; background: var(--bg-section); border: 1px solid var(--border); }
.ticker-label { font-size: 12px; color: var(--text-muted); }
.ticker-price { font-size: 16px; font-weight: 700; color: var(--accent); }
.ticker-change { font-size: 12px; font-weight: 600; }
.ticker-change.positive { color: var(--success); }
.ticker-change.negative { color: var(--danger); }
.topbar-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn { background: none; border: none; color: var(--text-secondary); font-size: 18px; cursor: pointer; position: relative; padding: 6px; }
.icon-btn .badge { position: absolute; top: -2px; right: -2px; background: var(--danger); color: white; font-size: 9px; padding: 2px 5px; border-radius: 8px; }
.admin-label { font-size: 13px; color: var(--warning); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.user-menu { position: relative; }
.user-dropdown {
    display: none; position: absolute; right: 0; top: 100%; margin-top: 8px;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm);
    min-width: 180px; padding: 8px; box-shadow: var(--shadow); z-index: 100;
}
.user-dropdown.show { display: block; }
.user-dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; font-size: 13px; color: var(--text-secondary); border-radius: var(--radius-xs); }
.user-dropdown a:hover { background: rgba(108,92,231,0.1); color: var(--text-primary); }

.page-content { padding: 24px; flex: 1; }
.page { display: none; }
.page.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ===== STAT CARDS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
.stats-grid-5 { grid-template-columns: repeat(5, 1fr); }
.stat-card {
    padding: 24px; border-radius: var(--radius); display: flex;
    align-items: center; gap: 16px; position: relative; overflow: hidden;
}
.stat-card::before {
    content: ''; position: absolute; inset: 0;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); z-index: 0;
}
.stat-icon {
    width: 52px; height: 52px; border-radius: 14px; display: flex;
    align-items: center; justify-content: center; font-size: 22px;
    position: relative; z-index: 1;
}
.gradient-purple .stat-icon { background: rgba(108,92,231,0.2); color: var(--primary-light); }
.gradient-blue .stat-icon { background: rgba(52,152,219,0.2); color: var(--info); }
.gradient-green .stat-icon { background: rgba(46,204,113,0.2); color: var(--success); }
.gradient-orange .stat-icon { background: rgba(243,156,18,0.2); color: var(--warning); }
.gradient-pink .stat-icon { background: rgba(232,67,147,0.2); color: #e84393; }
.stat-info { position: relative; z-index: 1; }
.stat-label { font-size: 12px; color: var(--text-muted); display: block; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-value { font-size: 24px; font-weight: 800; font-family: 'Space Grotesk'; display: block; }
.stat-value-sm { font-size: 16px; }
.stat-sub { font-size: 12px; color: var(--text-muted); }

/* ===== SECTION CARDS ===== */
.section-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px; margin-bottom: 24px;
}
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.section-header h3 { font-size: 18px; }
.view-all { font-size: 13px; color: var(--primary-light); font-weight: 500; }
.form-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px; max-width: 600px; margin: 0 auto;
}
.form-card h3 { font-size: 20px; margin-bottom: 8px; }
.form-card h3 i { margin-right: 8px; color: var(--primary-light); }
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ===== TABLE ===== */
.table-responsive { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
    padding: 12px 16px; text-align: left; font-size: 12px;
    color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border); font-weight: 600;
}
.data-table td {
    padding: 14px 16px; font-size: 13px; border-bottom: 1px solid rgba(30,30,62,0.5);
    color: var(--text-secondary);
}
.data-table tr:hover td { background: rgba(108,92,231,0.03); }
.empty-state { text-align: center; color: var(--text-muted); padding: 40px 16px !important; font-style: italic; }

/* Badges & Status */
.badge { padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; }
.badge-buy { background: rgba(46,204,113,0.15); color: var(--success); }
.badge-sell { background: rgba(231,76,60,0.15); color: var(--danger); }
.badge-deposit { background: rgba(52,152,219,0.15); color: var(--info); }
.badge-withdraw { background: rgba(243,156,18,0.15); color: var(--warning); }
.badge-transfer { background: rgba(108,92,231,0.15); color: var(--primary-light); }
.status { padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.status-pending { background: rgba(243,156,18,0.15); color: var(--warning); }
.status-completed { background: rgba(46,204,113,0.15); color: var(--success); }
.status-failed { background: rgba(231,76,60,0.15); color: var(--danger); }
.status-processing { background: rgba(52,152,219,0.15); color: var(--info); }

.filter-group { display: flex; gap: 10px; }
.filter-group select {
    padding: 8px 14px; border-radius: 8px; border: 1px solid var(--border);
    background: var(--bg-input); color: var(--text-primary); font-size: 13px;
}

/* ===== QUICK ACTIONS ===== */
.quick-actions { margin-bottom: 24px; }
.quick-actions h3 { font-size: 18px; margin-bottom: 16px; }
.action-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.action-card {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 24px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); cursor: pointer; transition: var(--transition);
    font-size: 14px; font-weight: 500; color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}
.action-card i { font-size: 24px; color: var(--primary-light); }
.action-card:hover { border-color: var(--primary); background: rgba(108,92,231,0.05); color: var(--text-primary); transform: translateY(-2px); }

/* ===== TRADE ===== */
.trade-container { max-width: 500px; margin: 0 auto; }
.trade-tabs { display: flex; gap: 4px; margin-bottom: 24px; background: var(--bg-section); border-radius: 50px; padding: 4px; }
.trade-tab {
    flex: 1; padding: 12px; text-align: center; border-radius: 50px;
    border: none; cursor: pointer; font-weight: 600; font-size: 14px;
    background: transparent; color: var(--text-muted);
    font-family: 'Inter', sans-serif; transition: var(--transition);
}
.trade-tab.active { background: var(--gradient-1); color: white; }
.trade-form { display: none; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.trade-form.active { display: block; }
.trade-price-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; padding: 14px 18px; background: var(--bg-section); border-radius: var(--radius-sm); }
.trade-price { font-size: 18px; font-weight: 700; color: var(--accent); }
.trade-arrow { text-align: center; margin: 12px 0; color: var(--text-muted); font-size: 20px; }
.trade-summary { margin: 20px 0; padding: 16px; background: var(--bg-section); border-radius: var(--radius-sm); }
.summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; color: var(--text-secondary); }
.summary-row.total { border-top: 1px solid var(--border); padding-top: 12px; margin-top: 8px; font-weight: 700; color: var(--text-primary); font-size: 15px; }

/* ===== DEPOSIT METHODS ===== */
.deposit-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.method-card {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 20px; background: var(--bg-section); border: 2px solid var(--border);
    border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition);
    font-size: 14px; font-weight: 500; color: var(--text-secondary);
}
.method-card input { display: none; }
.method-card i { font-size: 24px; color: var(--text-muted); }
.method-card.active { border-color: var(--primary); background: rgba(108,92,231,0.1); color: var(--text-primary); }
.method-card.active i { color: var(--primary-light); }
.payment-details-box {
    padding: 20px; background: var(--bg-section); border: 1px dashed var(--border);
    border-radius: var(--radius-sm); margin-bottom: 24px;
}
.payment-details-box h4 { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.detail-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; color: var(--text-secondary); }
.detail-row strong { color: var(--text-primary); }
.balance-display { display: flex; justify-content: space-between; padding: 16px 20px; background: var(--bg-section); border-radius: var(--radius-sm); margin-bottom: 24px; font-size: 14px; }
.balance-display strong { font-size: 20px; color: var(--accent); }

/* ===== QUANTUM WALLET ===== */
.wallet-create-card { text-align: center; max-width: 600px; margin: 0 auto; }
.wallet-hero-icon { font-size: 64px; color: var(--primary-light); margin-bottom: 20px; }
.wallet-create-card h3 { font-size: 24px; margin-bottom: 12px; }
.wallet-create-card > p { color: var(--text-secondary); max-width: 500px; margin: 0 auto 28px; }
.quantum-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.qf { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--bg-section); border-radius: var(--radius-xs); font-size: 13px; color: var(--text-secondary); }
.qf i { color: var(--accent); }

.wallet-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 28px; max-width: 600px; margin: 0 auto;
}
.wallet-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.wallet-icon-wrap { width: 50px; height: 50px; border-radius: 14px; background: rgba(108,92,231,0.2); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary-light); }
.wallet-card-header h3 { font-size: 18px; }
.wallet-algo { font-size: 12px; color: var(--accent); }
.wallet-badge { margin-left: auto; font-size: 13px; padding: 6px 14px; background: rgba(46,204,113,0.15); color: var(--success); border-radius: 50px; }
.wallet-details { margin-bottom: 20px; }
.wallet-detail { margin-bottom: 16px; }
.wallet-detail .label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 4px; }
.wallet-detail code { font-size: 13px; color: var(--accent); background: var(--bg-section); padding: 8px 12px; border-radius: var(--radius-xs); display: block; overflow: hidden; text-overflow: ellipsis; }
.truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 400px; }
.wallet-balances { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wb { display: flex; align-items: center; gap: 12px; padding: 16px; background: var(--bg-section); border-radius: var(--radius-sm); }
.wb i { font-size: 20px; color: var(--primary-light); }
.wb-label { display: block; font-size: 12px; color: var(--text-muted); }
.wb-value { font-size: 18px; font-weight: 700; }

/* ===== TRANSFER VNC PAGE ===== */
.transfer-balance-card {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    background: linear-gradient(135deg, rgba(108,92,231,0.15), rgba(0,206,209,0.1));
    border: 1px solid rgba(108,92,231,0.3); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 24px;
}
.tbc-left { display: flex; flex-direction: column; gap: 4px; }
.tbc-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.tbc-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.tbc-value { font-size: 26px; font-weight: 800; color: var(--accent); }
.tbc-sub { font-size: 14px; color: var(--text-secondary); }
.transfer-exchanges-info {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 24px;
}
.transfer-exchanges-info h4 { font-size: 14px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.exchange-list { display: flex; flex-direction: column; gap: 10px; }
.exchange-item {
    display: flex; align-items: center; justify-content: space-between; padding: 14px 18px;
    background: var(--bg-section); border-radius: var(--radius-sm); border: 1px solid var(--border);
}
.ex-info { display: flex; align-items: center; gap: 12px; }
.ex-info i { font-size: 20px; color: var(--primary-light); }
.ex-info span { font-weight: 600; font-size: 15px; }
.ex-info small { font-size: 12px; color: var(--text-muted); margin-left: 4px; }
.ex-status { font-size: 12px; padding: 4px 12px; border-radius: 50px; background: rgba(46,204,113,0.15); color: var(--success); font-weight: 600; }
.exchange-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; padding: 5px 14px; border-radius: 50px; background: rgba(108,92,231,0.15); color: var(--primary-light); font-weight: 500; }
.exchange-badge i { font-size: 10px; }
.listed-exchanges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.transfer-estimate {
    margin-top: 16px; padding: 16px 20px;
    background: rgba(108,92,231,0.08); border: 1px solid rgba(108,92,231,0.2); border-radius: var(--radius-sm);
}
.transfer-estimate p { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 6px; }
.transfer-estimate p:last-child { margin-bottom: 0; }
.transfer-estimate span:first-child { color: var(--text-muted); }
.transfer-estimate span:last-child { font-weight: 600; color: var(--accent); }
.transfer-fee { font-size: 13px; color: var(--text-muted); margin-top: 8px; }
.transfer-network-info {
    margin-top: 20px; padding: 16px 20px; background: var(--bg-section); border-radius: var(--radius-sm); border: 1px solid var(--border);
}
.transfer-network-info h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 12px; }
.tni-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 14px; }
.tni-row span:first-child { color: var(--text-muted); }
.tni-row span:last-child { font-weight: 600; color: white; }

/* ===== LANDING PAGE ===== */
.landing-page { overflow-x: hidden; }
.landing-nav {
    padding: 16px 0; position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10,10,26,0.9); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30,30,62,0.5);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 6px; font-size: 22px; font-weight: 800; font-family: 'Space Grotesk'; color: white; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-secondary); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: white; }
.nav-actions { display: flex; gap: 12px; }

.landing-hero {
    min-height: 100vh; display: flex; align-items: center;
    padding-top: 80px; position: relative; overflow: hidden;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0e0e2a 100%);
}
.hero-bg-effects { position: absolute; inset: 0; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.12; }
.orb-1 { width: 500px; height: 500px; background: var(--primary); top: 10%; right: -10%; animation: float 8s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: var(--accent); bottom: 10%; left: -10%; animation: float 10s ease-in-out infinite reverse; }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.hero-tag { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 24px; border-radius: 50px; font-size: 13px; font-weight: 500; background: rgba(108,92,231,0.15); color: var(--primary-light); border: 1px solid rgba(108,92,231,0.3); margin-bottom: 24px; letter-spacing: 0.3px; }
.hero-content h1 { font-size: 52px; margin-bottom: 20px; }
.hero-content p { font-size: 18px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 32px; }
.hero-stats { display: flex; justify-content: center; gap: 40px; margin-bottom: 40px; }
.hs { text-align: center; }
.hs-value { display: block; font-size: 28px; font-weight: 800; font-family: 'Space Grotesk'; }
.hs-label { display: block; font-size: 12px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-actions { display: flex; justify-content: center; gap: 16px; }

.landing-features, .landing-how, .landing-security { padding: 100px 0; }
.landing-features { background: var(--bg-section); }
.section-title { text-align: center; font-size: 36px; margin-bottom: 60px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
    padding: 32px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); transition: var(--transition);
}
.feature-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.feature-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(108,92,231,0.15); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary-light); margin-bottom: 20px; }
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { text-align: center; padding: 32px 20px; }
.step-num {
    width: 60px; height: 60px; border-radius: 50%; background: var(--gradient-1);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 800; margin: 0 auto 20px;
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-secondary); }

.security-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.security-text h2 { font-size: 32px; margin-bottom: 16px; }
.security-text p { color: var(--text-secondary); margin-bottom: 24px; line-height: 1.8; }
.security-list { list-style: none; margin-bottom: 32px; }
.security-list li { padding: 8px 0; font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; }
.security-list i { color: var(--success); }
.security-visual { display: flex; justify-content: center; }
.quantum-visual { position: relative; width: 300px; height: 300px; }
.qv-ring { position: absolute; border: 2px solid; border-radius: 50%; }
.ring-1 { inset: 0; border-color: rgba(108,92,231,0.3); animation: spin 20s linear infinite; }
.ring-2 { inset: 30px; border-color: rgba(0,206,201,0.3); animation: spin 15s linear infinite reverse; }
.ring-3 { inset: 60px; border-color: rgba(108,92,231,0.3); animation: spin 10s linear infinite; }
.qv-center { position: absolute; inset: 90px; display: flex; align-items: center; justify-content: center; font-size: 48px; color: var(--primary-light); background: rgba(108,92,231,0.1); border-radius: 50%; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.landing-cta { padding: 80px 0; text-align: center; background: linear-gradient(135deg, rgba(108,92,231,0.15), rgba(0,206,201,0.1)); }
.landing-cta h2 { font-size: 36px; margin-bottom: 16px; }
.landing-cta p { color: var(--text-secondary); margin-bottom: 32px; font-size: 16px; }

/* ===== PROFESSIONAL FOOTER ===== */
.landing-footer { padding: 50px 0 0; border-top: 1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.3); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-brand-col .footer-logo { font-size: 20px; font-weight: 800; font-family: 'Space Grotesk', sans-serif; margin-bottom: 8px; }
.footer-brand-col .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 12px; }
.footer-brand-col .footer-copyright { font-size: 11px; color: rgba(255,255,255,0.3); line-height: 1.6; }
.footer-heading { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { color: rgba(255,255,255,0.55); font-size: 13px; text-decoration: none; transition: color 0.2s, padding-left 0.2s; display: flex; align-items: center; gap: 6px; line-height: 1.6; }
.footer-col a:hover { color: var(--primary); padding-left: 4px; }
.footer-col a i { font-size: 11px; width: 16px; text-align: center; color: rgba(255,255,255,0.3); }
.footer-col a:hover i { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom i.fa-heart { color: #e74c3c; }

/* Legacy footer support (keep old classes working) */
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; }
.footer-brand { font-size: 18px; font-weight: 700; font-family: 'Space Grotesk'; }
.footer-brand p { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 13px; }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-heading { margin-top: 8px; }
}

/* ===== MOBILE HAMBURGER MENU ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 22px;
    cursor: pointer;
    padding: 6px;
    z-index: 101;
}
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99;
}
.sidebar-overlay.show { display: block; }

/* Landing nav-links mobile dropdown */
.landing-nav .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,26,0.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 14px;
    z-index: 200;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid-5 { grid-template-columns: repeat(3, 1fr); }
    .action-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .settings-grid { grid-template-columns: 1fr; }
    .token-data-grid { grid-template-columns: repeat(2, 1fr); }
    .container { padding: 0 20px; }
}

@media (max-width: 768px) {
    /* Sidebar */
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.open {
        transform: translateX(0);
        box-shadow: 4px 0 20px rgba(0,0,0,0.5);
    }
    .sidebar-close { display: block; }
    .menu-toggle { display: block; }
    .main-content { margin-left: 0; }

    /* Mobile hamburger for landing pages */
    .mobile-menu-btn { display: block; }
    .landing-nav .nav-links { display: none; }
    .landing-nav .nav-actions { gap: 8px; }
    .landing-nav .nav-actions .btn { padding: 8px 16px; font-size: 13px; }

    /* Auth pages */
    .auth-container { flex-direction: column; }
    .auth-left { display: none; }
    .auth-right { padding: 30px 20px; }
    .auth-right h2 { font-size: 22px; }

    /* Stats & grids */
    .stats-grid, .stats-grid-5 { grid-template-columns: 1fr 1fr; }
    .action-grid { grid-template-columns: repeat(2, 1fr); }

    /* Landing hero */
    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 15px; }
    .hero-stats { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .hs-value { font-size: 22px; }
    .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
    .hero-tag { font-size: 12px; padding: 8px 14px; }

    /* Landing sections */
    .features-grid, .steps-grid { grid-template-columns: 1fr; }
    .security-content { grid-template-columns: 1fr; }
    .security-visual { order: -1; }
    .quantum-visual { width: 200px; height: 200px; }
    .section-title { font-size: 26px; margin-bottom: 40px; }
    .landing-features, .landing-how, .landing-security { padding: 60px 0; }
    .landing-cta { padding: 50px 0; }
    .landing-cta h2 { font-size: 26px; }

    /* Forms */
    .form-row-2 { grid-template-columns: 1fr; }
    .form-card { padding: 24px 20px; max-width: 100%; }
    .quantum-features { grid-template-columns: 1fr; }

    /* Wallet */
    .wallet-balances { grid-template-columns: 1fr; }
    .wallet-card { padding: 20px; max-width: 100%; }
    .truncate { max-width: 220px; }

    /* Deposit */
    .deposit-methods { grid-template-columns: 1fr; }

    /* Footer */
    .footer-content { flex-direction: column; gap: 16px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }

    /* Topbar */
    .price-ticker { display: none; }
    .topbar { padding: 0 16px; }
    .topbar-left h2 { font-size: 15px; }
    .topbar-right { gap: 10px; }
    .admin-label { display: none; }

    /* Blockchain */
    .blockchain-banner { padding: 32px 16px; margin: 20px 0; border-radius: 12px; }
    .blockchain-banner h2 { font-size: 22px; line-height: 1.3; }
    .blockchain-content > p { font-size: 13px; line-height: 1.6; margin-bottom: 24px; }
    .blockchain-badge { font-size: 10px; padding: 6px 14px; letter-spacing: 1.5px; margin-bottom: 14px; }
    .countdown-container { margin-bottom: 24px; }
    .countdown-label { font-size: 12px; letter-spacing: 1px; margin-bottom: 14px; }
    .countdown-timer { gap: 8px; flex-wrap: wrap; justify-content: center; }
    .countdown-value { font-size: 28px; min-width: 56px; padding: 12px 10px; border-radius: 10px; }
    .countdown-text { font-size: 10px; margin-top: 6px; }
    .countdown-separator { font-size: 20px; margin-bottom: 16px; }
    .blockchain-features-row { flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 24px; }
    .bf-item { font-size: 11px; padding: 7px 12px; gap: 6px; }
    .bf-item i { font-size: 12px; }
    .blockchain-info-grid { grid-template-columns: 1fr; gap: 12px; max-width: 100%; }
    .bi-card { padding: 20px 16px; }
    .bi-card i { font-size: 24px; margin-bottom: 10px; }
    .bi-card h4 { font-size: 14px; }
    .bi-card p { font-size: 12px; line-height: 1.5; }
    .dashboard-blockchain-banner { flex-direction: column; text-align: center; }
    .dbb-left { flex-direction: column; }

    /* Tables */
    .data-table th, .data-table td { padding: 10px 8px; font-size: 12px; }
    .table-responsive { -webkit-overflow-scrolling: touch; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .filter-group { flex-wrap: wrap; }

    /* Transfer */
    .transfer-balance-card { flex-direction: column; text-align: center; padding: 20px; }
    .tbc-right { align-items: center; }
    .tbc-value { font-size: 22px; }

    /* Trade */
    .trade-container { max-width: 100%; }
    .trade-form { padding: 20px; }

    /* Container */
    .container { padding: 0 16px; }
}

@media (max-width: 480px) {
    .page-content { padding: 12px; }
    .form-card { padding: 16px; }
    .stat-card { padding: 14px; gap: 12px; }
    .stat-icon { width: 42px; height: 42px; font-size: 18px; }
    .stat-value { font-size: 20px; }
    .stat-label { font-size: 11px; }
    .stats-grid, .stats-grid-5 { grid-template-columns: 1fr; gap: 12px; }
    .action-grid { grid-template-columns: 1fr; }
    .countdown-timer { gap: 4px; flex-wrap: wrap; justify-content: center; }
    .countdown-value { font-size: 20px; min-width: 44px; padding: 8px 6px; border-radius: 8px; }
    .countdown-text { font-size: 9px; letter-spacing: 0.5px; margin-top: 4px; }
    .countdown-separator { font-size: 16px; margin-bottom: 12px; }
    .countdown-label { font-size: 11px; letter-spacing: 0.5px; margin-bottom: 10px; }
    .countdown-container { margin-bottom: 18px; }
    .blockchain-banner { padding: 24px 12px; margin: 12px 0; border-radius: 10px; }
    .blockchain-banner h2 { font-size: 18px; margin-bottom: 10px; }
    .blockchain-content > p { font-size: 12px; margin-bottom: 18px; line-height: 1.5; }
    .blockchain-badge { font-size: 9px; padding: 5px 12px; letter-spacing: 1px; margin-bottom: 10px; }
    .blockchain-glow { width: 300px; height: 300px; }
    .blockchain-features-row { gap: 6px; margin-bottom: 18px; }
    .bf-item { font-size: 10px; padding: 6px 10px; gap: 4px; }
    .bf-item i { font-size: 10px; }
    .blockchain-info-grid { gap: 10px; }
    .bi-card { padding: 16px 12px; }
    .bi-card i { font-size: 20px; margin-bottom: 8px; }
    .bi-card h4 { font-size: 13px; margin-bottom: 6px; }
    .bi-card p { font-size: 11px; line-height: 1.4; }
    .hero-content h1 { font-size: 24px; }
    .hero-content p { font-size: 14px; }
    .hero-stats { gap: 12px; }
    .hs-value { font-size: 18px; }
    .hs-label { font-size: 10px; }
    .section-title { font-size: 22px; margin-bottom: 30px; }
    .section-card { padding: 16px; }
    .section-header h3 { font-size: 16px; }
    .topbar { height: auto; min-height: 56px; padding: 8px 12px; }
    .topbar-left h2 { font-size: 14px; }

    /* Auth */
    .auth-right { padding: 24px 16px; }
    .auth-right h2 { font-size: 20px; }
    .auth-right p { font-size: 13px; }

    /* Navbar */
    .landing-nav .nav-actions .btn-outline { display: none; }
    .landing-nav .nav-actions .btn-primary { padding: 8px 14px; font-size: 12px; }
    .logo { font-size: 18px; }

    /* Transfer */
    .tbc-value { font-size: 20px; }
    .exchange-item { flex-direction: column; gap: 8px; text-align: center; }

    /* Dashboard blockchain banner */
    .dbb-countdown { flex-wrap: wrap; justify-content: center; }
    .dbb-unit span { font-size: 16px; padding: 4px 8px; }

    /* Wallet */
    .wallet-detail code { font-size: 11px; padding: 6px 8px; }
    .truncate { max-width: 180px; }

    /* Landing sections */
    .landing-features, .landing-how, .landing-security { padding: 40px 0; }
    .landing-cta { padding: 40px 0; }
    .feature-card { padding: 20px; }
    .feature-icon { width: 44px; height: 44px; font-size: 20px; }
    .step-num { width: 48px; height: 48px; font-size: 20px; }
    .step-card { padding: 20px 12px; }
}

/* Extra-small phones (360px and below) */
@media (max-width: 360px) {
    .blockchain-banner { padding: 18px 10px; }
    .blockchain-banner h2 { font-size: 16px; }
    .blockchain-content > p { font-size: 11px; }
    .countdown-timer { gap: 3px; }
    .countdown-value { font-size: 16px; min-width: 38px; padding: 7px 4px; }
    .countdown-separator { font-size: 14px; }
    .bf-item { font-size: 9px; padding: 5px 8px; }
    .bf-item i { font-size: 9px; }
    .bi-card { padding: 14px 10px; }
    .bi-card h4 { font-size: 12px; }
    .bi-card p { font-size: 10px; }
}

/* ===== VNC BLOCKCHAIN COUNTDOWN SECTION ===== */
.blockchain-countdown-section {
    padding: 0;
    position: relative;
}

.blockchain-banner {
    position: relative;
    background: linear-gradient(135deg, #0a0a2e 0%, #1a0a3e 30%, #0a1a3e 60%, #0a0a2e 100%);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: var(--radius);
    padding: 60px 48px;
    overflow: hidden;
    margin: 40px 0;
}

.blockchain-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.blockchain-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.blockchain-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary-light);
    border: 1px solid rgba(108, 92, 231, 0.4);
    margin-bottom: 20px;
}

.blockchain-banner h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.blockchain-content > p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.blockchain-banner p strong {
    color: var(--accent);
}

/* Countdown Timer */
.countdown-container {
    margin-bottom: 40px;
}

.countdown-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-family: 'Space Grotesk', monospace;
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 14px;
    padding: 16px 20px;
    min-width: 80px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(108, 92, 231, 0.4);
}

.countdown-text {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    font-weight: 500;
}

.countdown-separator {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 20px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.countdown-launched {
    font-size: 28px;
    font-weight: 800;
    color: var(--success);
    padding: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Blockchain Features Row */
.blockchain-features-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.bf-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(0, 206, 201, 0.08);
    border: 1px solid rgba(0, 206, 201, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
}

.bf-item i {
    font-size: 14px;
}

/* Blockchain Info Cards */
.blockchain-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.bi-card {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.bi-card:hover {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.05);
    transform: translateY(-4px);
}

.bi-card i {
    font-size: 28px;
    color: var(--primary-light);
    margin-bottom: 14px;
}

.bi-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.bi-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== DASHBOARD BLOCKCHAIN BANNER ===== */
.dashboard-blockchain-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 28px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.08), rgba(0, 206, 201, 0.06));
    border: 1px solid rgba(108, 92, 231, 0.25);
    border-radius: var(--radius);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.dashboard-blockchain-banner::before {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1), transparent 70%);
    pointer-events: none;
}

.dbb-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.dbb-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(108, 92, 231, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.dbb-text h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.dbb-text p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.dbb-text strong {
    color: var(--accent);
}

.dbb-countdown {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.dbb-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 44px;
}

.dbb-unit span {
    font-family: 'Space Grotesk', monospace;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.25);
    border-radius: 8px;
    padding: 6px 10px;
    line-height: 1;
}

.dbb-unit small {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

.dbb-sep {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 14px;
    animation: blink 1s infinite;
}

/* ===== SECTION SUBTITLE ===== */
.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: -40px;
    margin-bottom: 48px;
    line-height: 1.7;
}
.section-title i {
    margin-right: 10px;
    color: var(--primary-light);
}

/* ===== TOKEN DATA SECTION ===== */
.token-data-section {
    padding: 100px 0;
    background: var(--bg-section);
}

.token-data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.td-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.td-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.td-card.td-highlight {
    border-color: rgba(108, 92, 231, 0.4);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.08), var(--bg-card));
}

.td-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(108, 92, 231, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.td-info {
    display: flex;
    flex-direction: column;
}

.td-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.td-value {
    font-size: 15px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.td-accent { color: var(--accent); }
.td-success { color: var(--success); }

/* Token Contract Box */
.token-contract-box {
    padding: 24px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.tcb-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.tcb-label i { margin-right: 8px; color: var(--primary-light); }

.tcb-address {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tcb-address code {
    flex: 1;
    font-size: 14px;
    color: var(--accent);
    background: var(--bg-section);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-family: 'Space Grotesk', monospace;
    word-break: break-all;
}

/* Token Distribution */
.token-distribution {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.token-distribution h3 {
    font-size: 18px;
    margin-bottom: 24px;
    text-align: center;
}

.td-dist-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.td-dist-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 16px;
}

.td-dist-bar {
    height: 10px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--clr), transparent);
    width: var(--pct);
    max-width: 100%;
    transition: width 1s ease;
    position: relative;
}

.td-dist-label {
    font-size: 13px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.td-dist-val {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
    min-width: 50px;
    text-align: right;
}

/* ===== LISTINGS SECTION ===== */
.listings-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.listings-group {
    margin-bottom: 48px;
}

.listings-group-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lg-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.lg-live {
    background: var(--success);
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.5);
    animation: pulse 2s infinite;
}

.lg-upcoming {
    background: var(--warning);
    box-shadow: 0 0 8px rgba(243, 156, 18, 0.5);
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.listing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 28px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    transition: var(--transition);
}

.listing-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(108, 92, 231, 0.15);
}

.listing-card.listing-live { border-color: rgba(46, 204, 113, 0.3); }
.listing-card.listing-live:hover { border-color: var(--success); }
.listing-card.listing-upcoming { border-color: rgba(243, 156, 18, 0.2); }
.listing-card.listing-tier1 { border-color: rgba(108, 92, 231, 0.3); }
.listing-card.listing-tier1:hover { border-color: var(--accent); }

.listing-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.listing-status-badge.live {
    background: rgba(46, 204, 113, 0.15);
    color: var(--success);
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.listing-status-badge.upcoming {
    background: rgba(243, 156, 18, 0.15);
    color: var(--warning);
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.listing-status-badge.tier1 {
    background: rgba(108, 92, 231, 0.15);
    color: var(--primary-light);
    border: 1px solid rgba(108, 92, 231, 0.3);
}

.listing-logo {
    margin-bottom: 4px;
}

.listing-card h4 {
    font-size: 17px;
    margin: 0;
}

.listing-pair {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
}

.listing-type {
    font-size: 12px;
    color: var(--text-muted);
}

.listing-share {
    font-size: 12px;
    color: var(--text-secondary);
    padding: 4px 12px;
    background: var(--bg-section);
    border-radius: 20px;
}

.listing-date {
    font-size: 12px;
    color: var(--text-secondary);
}

.listing-date i {
    margin-right: 4px;
    color: var(--primary-light);
}

/* Listings Timeline */
.listings-timeline {
    position: relative;
}

.lt-phase {
    margin-bottom: 36px;
}

.lt-phase-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 12px 20px;
    background: rgba(108, 92, 231, 0.06);
    border: 1px solid rgba(108, 92, 231, 0.15);
    border-radius: var(--radius-sm);
}

.lt-quarter {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-light);
    padding: 4px 14px;
    background: rgba(108, 92, 231, 0.15);
    border-radius: 8px;
}

.lt-phase-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ===== ROADMAP SECTION ===== */
.roadmap-section {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--success), var(--primary), var(--accent), var(--warning));
    border-radius: 3px;
}

.rm-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 28px;
}

.rm-marker {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-muted);
    z-index: 2;
}

.rm-item.rm-completed .rm-marker {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.rm-item.rm-active .rm-marker {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 16px rgba(108, 92, 231, 0.5);
}

.rm-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.rm-content:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.rm-item.rm-completed .rm-content {
    border-color: rgba(46, 204, 113, 0.3);
}

.rm-item.rm-active .rm-content {
    border-color: rgba(108, 92, 231, 0.4);
    box-shadow: 0 0 24px rgba(108, 92, 231, 0.08);
}

.rm-date {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.rm-content h4 {
    font-size: 18px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.rm-status {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.rm-done {
    background: rgba(46, 204, 113, 0.15);
    color: var(--success);
}

.rm-current {
    background: rgba(108, 92, 231, 0.15);
    color: var(--primary-light);
}

.rm-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rm-content li {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.rm-content li i {
    font-size: 10px;
    flex-shrink: 0;
}

.rm-item.rm-completed li i { color: var(--success); }
.rm-item.rm-active li i { color: var(--primary-light); }
.rm-content li i.fa-circle { color: var(--text-muted); }
.rm-content li strong { color: var(--accent); }

/* ===== RESPONSIVE — TOKEN DATA, LISTINGS, ROADMAP ===== */
@media (max-width: 1024px) {
    .token-data-grid { grid-template-columns: repeat(2, 1fr); }
    .listings-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .token-data-grid { grid-template-columns: 1fr; }
    .listings-grid { grid-template-columns: 1fr 1fr; }
    .tcb-address { flex-direction: column; }
    .td-dist-item { grid-template-columns: 1fr; gap: 4px; }
    .roadmap-timeline { padding-left: 30px; }
    .rm-marker { left: -30px; width: 28px; height: 28px; font-size: 11px; }
    .rm-item { padding-left: 20px; }
    .rm-content h4 { font-size: 16px; }
    .section-subtitle { margin-top: -30px; font-size: 14px; }
}

@media (max-width: 480px) {
    .listings-grid { grid-template-columns: 1fr; }
    .rm-content { padding: 20px; }
    .rm-content li { font-size: 13px; }
    .lt-phase-header { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== NAV SECTION LABELS ===== */
.nav-section-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    padding: 16px 20px 6px;
    margin-top: 8px;
}

/* ===== VNC TOKEN OVERVIEW ===== */
.vnc-overview-section {
    margin-top: 24px;
}
.vnc-overview-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.vnc-overview-section h3 i { color: var(--accent); }
.vnc-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.vnc-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s;
}
.vnc-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    border-color: rgba(108,92,231,0.3);
}
.vnc-info-card.vnc-balance-highlight {
    background: linear-gradient(135deg, rgba(108,92,231,0.12), rgba(0,206,209,0.08));
    border-color: rgba(108,92,231,0.3);
}
.vic-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(108,92,231,0.15);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.vnc-balance-highlight .vic-icon {
    background: rgba(0,206,209,0.2);
    color: var(--accent);
}
.vic-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.vic-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.vic-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}
.vic-contract {
    font-size: 14px;
    font-family: 'Courier New', monospace;
    color: var(--accent);
}
.vic-sub {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===== CRYPTO WALLET CARDS ===== */
.crypto-wallet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.crypto-wallet-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}
.crypto-wallet-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 24px rgba(108,92,231,0.1);
}
.cwc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.cwc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}
.cwc-icon.btc { background: rgba(247,147,26,0.15); color: #f7931a; }
.cwc-icon.eth { background: rgba(98,126,234,0.15); color: #627eea; }
.cwc-icon.sol { background: rgba(0,255,163,0.15); color: #00ffa3; }
.cwc-icon.usdt { background: rgba(38,161,123,0.15); color: #26a17b; }
.cwc-icon.vnc { background: rgba(108,92,231,0.15); color: var(--primary); }
.cwc-name {
    font-weight: 600;
    color: var(--text);
}
.cwc-address {
    font-size: 12px;
    font-family: 'Space Grotesk', monospace;
    color: var(--text-muted);
    word-break: break-all;
    background: var(--bg);
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 12px;
}
.cwc-balance {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

/* ===== GATEWAY CARDS ===== */
.gateway-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.gateway-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.gateway-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}
.gateway-card.active {
    border-color: var(--primary);
    background: rgba(108,92,231,0.05);
    box-shadow: 0 0 24px rgba(108,92,231,0.15);
}
.gw-logo {
    font-size: 36px;
    margin-bottom: 12px;
}
.gateway-card h4 {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 6px;
}
.gw-tag {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(46,204,113,0.1);
    color: var(--success);
    font-weight: 600;
}
.gateway-form-section {
    display: none;
    margin-top: 24px;
}
.gateway-form-section h4 {
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text);
}

/* ===== SWAP ===== */
.swap-rate {
    text-align: center;
    padding: 12px;
    font-size: 14px;
    color: var(--primary-light);
    font-weight: 600;
    background: rgba(108,92,231,0.05);
    border-radius: 10px;
    margin-top: 12px;
}
.live-prices-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
}
.live-prices-card h4 {
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text);
}
.price-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: var(--bg);
    border-radius: 10px;
}
.price-row .pr-name {
    font-weight: 600;
    color: var(--text);
}
.price-row .pr-value {
    font-weight: 700;
    color: var(--accent);
}

/* ===== CRYPTO BALANCE MINI ===== */
.crypto-balance-mini {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-secondary);
}
.crypto-balance-mini:last-child { border-bottom: none; }
.crypto-balance-mini .cbm-label { font-weight: 500; }
.crypto-balance-mini .cbm-value { font-weight: 700; color: var(--text); }

/* ===== DEPOSIT ADDRESS DISPLAY ===== */
.deposit-address-display {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}
.deposit-address-display label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.deposit-address-display .addr-text {
    font-family: 'Space Grotesk', monospace;
    font-size: 14px;
    color: var(--accent);
    word-break: break-all;
}

/* ===== QUANTUM INFO CARD ===== */
.quantum-info-card {
    background: linear-gradient(135deg, rgba(108,92,231,0.05), rgba(78,205,196,0.05));
    border: 1px solid rgba(108,92,231,0.2);
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
}
.quantum-info-card h4 {
    margin-bottom: 16px;
    color: var(--primary-light);
    font-size: 16px;
}
.qi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.qi-item {
    text-align: center;
}
.qi-item .qi-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.qi-item .qi-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

/* ===== CRYPTO WALLET HEADER ===== */
.crypto-wallet-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.wallet-badge-lg {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}
.wallet-badge-lg.active {
    background: rgba(46,204,113,0.1);
    color: var(--success);
}
.wallet-badge-lg.inactive {
    background: rgba(255,107,107,0.1);
    color: var(--error);
}

/* ===== ACTION GRID 6 ===== */
.action-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 20px;
}
.action-grid-6 .action-card {
    padding: 16px 8px;
    font-size: 12px;
}

/* ===== CRYPTO CREATE CARD ===== */
.crypto-create-card {
    text-align: center;
    padding: 60px 40px;
}
.crypto-create-card .ccc-icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--primary);
}
.crypto-create-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text);
}
.crypto-create-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== INFO ROW ===== */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }
.info-row label {
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 120px;
}
.info-row span {
    font-family: 'Space Grotesk', monospace;
    font-size: 13px;
    color: var(--text);
    word-break: break-all;
    text-align: right;
}

/* ===== STAT CARD VARIANTS ===== */
.stat-vnc .stat-icon { background: rgba(108,92,231,0.15); color: var(--primary-light); }

/* ===== ADMIN BADGE ===== */
.admin-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,107,107,0.1);
    color: var(--error);
}

/* ===== BADGE TYPES ===== */
.badge-crypto_deposit { background: rgba(38,161,123,0.15); color: #26a17b; }
.badge-crypto_withdraw { background: rgba(255,149,0,0.15); color: #ff9500; }
.badge-crypto_swap { background: rgba(139,92,246,0.15); color: var(--primary); }
.badge-payment_gateway { background: rgba(46,204,113,0.15); color: var(--success); }
.badge-swap { background: rgba(108,92,231,0.15); color: var(--primary-light); }
.badge-transfer { background: rgba(78,205,196,0.15); color: var(--accent); }

/* ===== MT UTILITY ===== */
.mt-20 { margin-top: 20px; }

/* ===== RESPONSIVE — CRYPTO WALLET & PAYMENT ===== */
@media (max-width: 1024px) {
    .vnc-overview-grid { grid-template-columns: repeat(2, 1fr); }
    .gateway-grid { grid-template-columns: repeat(2, 1fr); }
    .action-grid-6 { grid-template-columns: repeat(3, 1fr); }
    .qi-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .vnc-overview-grid { grid-template-columns: 1fr; }
    .gateway-grid { grid-template-columns: 1fr 1fr; }
    .action-grid-6 { grid-template-columns: repeat(2, 1fr); }
    .qi-grid { grid-template-columns: 1fr; }
    .crypto-wallet-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .vnc-overview-grid { grid-template-columns: 1fr; }
    .gateway-grid { grid-template-columns: 1fr; }
    .action-grid-6 { grid-template-columns: 1fr 1fr; }
}

/* ===================================================================
   TIER PROGRESS BANNER
   =================================================================== */
.tier-progress-banner {
    background: linear-gradient(135deg, rgba(139,92,246,0.1) 0%, rgba(6,214,160,0.1) 100%);
    border: 1px solid rgba(139,92,246,0.3);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}
.tier-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.tier-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #fff; flex-shrink: 0;
}
.tier-info { flex: 1; }
.tier-info h4 { margin: 0; color: #fff; font-size: 16px; }
.tier-info p { margin: 4px 0 0; color: var(--text-secondary); font-size: 13px; }
.tier-info strong { color: var(--accent); font-size: 16px; }
.tier-progress-bar {
    height: 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
}
.tier-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 10px;
    transition: width 0.8s ease;
}
.tier-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.tier-step {
    text-align: center;
    padding: 10px 8px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
}
.tier-step.active {
    border-color: var(--primary);
    background: rgba(139,92,246,0.15);
}
.tier-step.completed {
    border-color: var(--success);
    background: rgba(6,214,160,0.1);
}
.tier-step .ts-label {
    display: block; font-size: 11px; font-weight: 600;
    color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px;
}
.tier-step.active .ts-label { color: var(--primary-light); }
.tier-step.completed .ts-label { color: var(--success); }
.tier-step .ts-price {
    display: block; font-size: 18px; font-weight: 700;
    color: #fff; margin: 4px 0;
}
.tier-step .ts-amount {
    display: block; font-size: 11px; color: var(--text-secondary);
}

/* ===================================================================
   QUANTUM SECURITY BADGE
   =================================================================== */
.quantum-security-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(0,200,150,0.08), rgba(139,92,246,0.08));
    border: 1px solid rgba(0,200,150,0.25);
    border-radius: 14px;
    padding: 18px 24px;
    margin-bottom: 24px;
}
.qsb-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #06d6a0, #8b5cf6);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff; flex-shrink: 0;
    animation: qsb-pulse 2s ease-in-out infinite;
}
@keyframes qsb-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(6,214,160,0.4); }
    50% { box-shadow: 0 0 20px 4px rgba(6,214,160,0.2); }
}
.qsb-info { flex: 1; }
.qsb-info h4 { margin: 0; color: #fff; font-size: 14px; }
.qsb-info p { margin: 4px 0 0; color: var(--text-secondary); font-size: 12px; }
.qsb-status {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--success); font-weight: 600;
    white-space: nowrap;
}
.status-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--success);
    animation: dot-blink 1.5s ease-in-out infinite;
}
@keyframes dot-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ===================================================================
   TRADING CHART PAGE
   =================================================================== */
.chart-page-header {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}
.chart-token-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.chart-token-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #fff;
}
.chart-token-info h3 { margin: 0; color: #fff; font-size: 20px; }
.chart-token-name { color: var(--text-secondary); font-size: 14px; font-weight: 400; margin-left: 8px; }
.chart-price-display { margin-top: 4px; }
.chart-current-price { font-size: 28px; font-weight: 800; color: var(--accent); }
.chart-tier-badge {
    display: inline-block;
    background: rgba(139,92,246,0.2);
    color: var(--primary-light);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 12px;
    border: 1px solid rgba(139,92,246,0.3);
}
.chart-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.chart-stat { text-align: center; }
.chart-stat span { display: block; font-size: 11px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }
.chart-stat strong { display: block; font-size: 15px; color: #fff; margin-top: 4px; }
.truncate-addr { font-family: 'Space Grotesk', monospace; font-size: 13px !important; }

.chart-container-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}
.chart-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.chart-timeframes, .chart-type-btns {
    display: flex; gap: 6px;
}
.tf-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    padding: 6px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}
.tf-btn:hover { background: rgba(139,92,246,0.15); color: #fff; }
.tf-btn.active {
    background: rgba(139,92,246,0.2);
    border-color: var(--primary);
    color: var(--primary-light);
}
.chart-canvas-wrap {
    position: relative;
    height: 350px;
    margin-bottom: 8px;
}
.chart-canvas-wrap canvas { width: 100% !important; }
.chart-volume-wrap {
    position: relative;
    height: 100px;
    border-top: 1px solid var(--border);
    padding-top: 8px;
}
.chart-volume-wrap canvas { width: 100% !important; }

/* Tier Cards on Chart Page */
.chart-tier-section {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}
.chart-tier-section h4 { margin: 0 0 16px; color: #fff; font-size: 16px; }
.chart-tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.chart-tier-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s;
}
.chart-tier-card.active {
    border-color: var(--primary);
    background: rgba(139,92,246,0.1);
    box-shadow: 0 0 20px rgba(139,92,246,0.15);
}
.chart-tier-card.completed {
    border-color: var(--success);
    background: rgba(6,214,160,0.08);
}
.ctc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.ctc-badge {
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ctc-badge.tier1 { background: rgba(139,92,246,0.2); color: var(--primary-light); }
.ctc-badge.tier2 { background: rgba(6,214,160,0.2); color: var(--accent); }
.ctc-badge.tier3 { background: rgba(249,168,37,0.2); color: #f9a825; }
.ctc-badge.tier4 { background: rgba(33,150,243,0.2); color: #42a5f5; }
.ctc-price { font-size: 18px; font-weight: 700; color: #fff; }
.ctc-bar {
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}
.ctc-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 6px;
    transition: width 0.8s ease;
}
.chart-tier-card.completed .ctc-fill { background: var(--success); }
.ctc-info {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-secondary);
}
.chart-buy-cta {
    text-align: center;
    padding: 10px 0 20px;
}
.chart-buy-cta .btn-lg {
    padding: 14px 40px;
    font-size: 16px;
}

/* Trade tier info on buy/sell page */
.trade-tier-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(139,92,246,0.1);
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--text-secondary);
}
.tier-badge-sm {
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(139,92,246,0.25);
    color: var(--primary-light);
    text-transform: uppercase;
}

/* ===================================================================
   RESPONSIVE — CHART PAGE
   =================================================================== */
@media (max-width: 1024px) {
    .chart-stats-row { grid-template-columns: repeat(2, 1fr); }
    .chart-tiers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .chart-stats-row { grid-template-columns: 1fr 1fr; }
    .chart-tiers-grid { grid-template-columns: 1fr 1fr; }
    .tier-steps { grid-template-columns: repeat(2, 1fr); }
    .chart-canvas-wrap { height: 250px; }
    .quantum-security-badge { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .chart-stats-row { grid-template-columns: 1fr; }
    .chart-tiers-grid { grid-template-columns: 1fr; }
    .tier-steps { grid-template-columns: 1fr 1fr; }
    .tier-header { flex-direction: column; text-align: center; }
    .chart-token-info { flex-direction: column; text-align: center; }
}

/* ==========================================
   UNIFIED DEPOSIT FLOW
   ========================================== */

/* Step Indicator */
.deposit-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 20px 0 10px;
}
.deposit-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}
.deposit-step .step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}
.deposit-step .step-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.deposit-step.active .step-num {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.4);
}
.deposit-step.active .step-label { color: var(--primary-light); }
.deposit-step.completed .step-num {
    background: var(--success);
    border-color: var(--success);
    color: #fff;
}
.deposit-step.completed .step-label { color: var(--success); }
.step-line {
    width: 80px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin: 0 8px;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}
.step-line.active { background: var(--success); }

/* Flow Steps */
.deposit-flow-step { display: none; }
.deposit-flow-step.active { display: block; animation: fadeSlideUp 0.35s ease; }
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Amount Input */
.deposit-amount-section { margin-bottom: 24px; }
.deposit-amount-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}
.deposit-amount-input {
    position: relative;
    margin-bottom: 8px;
}
.deposit-amount-input .amount-prefix {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-light);
}
.deposit-amount-input input {
    width: 100%;
    padding: 16px 20px 16px 44px;
    font-size: 28px;
    font-weight: 700;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
}
.deposit-amount-input input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.15);
}
.deposit-amount-input input::placeholder {
    color: rgba(255,255,255,0.25);
    font-size: 20px;
    font-weight: 400;
}
.form-hint {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

/* Quick Amounts */
.quick-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.quick-amt {
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.quick-amt:hover {
    background: rgba(0, 212, 170, 0.15);
    border-color: var(--primary);
    color: var(--primary-light);
}

/* VNC Estimate */
.deposit-vnc-estimate {
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--primary-light);
    margin-bottom: 8px;
}
.deposit-vnc-estimate i { margin-right: 8px; }
.deposit-vnc-estimate strong { color: #fff; font-size: 16px; }

/* Step 2 Summary Bar */
.deposit-summary-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 24px;
}
.deposit-summary-bar span { color: rgba(255,255,255,0.6); font-size: 14px; }
.deposit-amount-display {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-light);
    flex: 1;
}
.btn-link {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s;
}
.btn-link:hover { background: rgba(0, 212, 170, 0.1); }

/* Step 3 Success */
.deposit-success-container { text-align: center; padding: 20px 0; }
.success-checkmark {
    font-size: 72px;
    color: var(--success);
    margin-bottom: 16px;
    animation: scaleIn 0.5s ease;
}
@keyframes scaleIn {
    from { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.15); }
    to { transform: scale(1); opacity: 1; }
}
.deposit-success-container h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
}
.success-amount {
    font-size: 18px;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 24px;
}
.success-balance-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 0 auto 24px;
    max-width: 400px;
    text-align: left;
}
.sbc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sbc-row:last-child { border-bottom: none; }
.sbc-row span { color: rgba(255,255,255,0.5); font-size: 14px; }
.sbc-row strong { color: #fff; font-size: 15px; }
.sbc-row code {
    background: rgba(255,255,255,0.06);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-lg {
    padding: 14px 28px !important;
    font-size: 16px !important;
}

/* Responsive */
@media (max-width: 600px) {
    .deposit-steps { gap: 0; }
    .step-line { width: 40px; }
    .deposit-amount-input input { font-size: 22px; padding: 14px 18px 14px 38px; }
    .deposit-amount-input .amount-prefix { font-size: 20px; }
    .quick-amounts { gap: 6px; }
    .quick-amt { padding: 6px 12px; font-size: 13px; }
    .success-actions { flex-direction: column; }
    .deposit-amount-display { font-size: 18px; }
    .gateway-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 400px) {
    .gateway-grid { grid-template-columns: 1fr !important; }
    .deposit-step .step-num { width: 34px; height: 34px; font-size: 14px; }
    .step-line { width: 30px; }
}

/* =====================================================
   QUANTUM WALLET — Unified Wallet Page
   ===================================================== */
.crypto-wallet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.crypto-wallet-header h3 {
    margin: 0;
    font-size: 20px;
    color: #fff;
}
.crypto-wallet-header h3 i {
    color: var(--primary, #00d4aa);
    margin-right: 8px;
}
.wallet-badge-lg {
    background: rgba(0,212,170,0.1);
    border: 1px solid rgba(0,212,170,0.3);
    color: var(--primary, #00d4aa);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* INR + VNC main balance cards */
.wallet-main-balances {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.wmb-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 20px;
}
.wmb-card.vnc-highlight {
    background: rgba(0,212,170,0.06);
    border-color: rgba(0,212,170,0.2);
}
.wmb-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(0,212,170,0.12);
    color: var(--primary, #00d4aa);
    flex-shrink: 0;
}
.wmb-info {
    display: flex;
    flex-direction: column;
}
.wmb-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.wmb-value {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

/* Crypto wallet grid */
.crypto-wallet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.crypto-wallet-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 18px;
    transition: border-color 0.2s;
}
.crypto-wallet-card:hover {
    border-color: rgba(255,255,255,0.15);
}
.crypto-wallet-card.btc-card { border-left: 3px solid #f7931a; }
.crypto-wallet-card.eth-card { border-left: 3px solid #627eea; }
.crypto-wallet-card.sol-card { border-left: 3px solid #9945ff; }
.crypto-wallet-card.usdt-card { border-left: 3px solid #26a17b; }
.crypto-wallet-card.vnc-card { border-left: 3px solid var(--primary, #00d4aa); }

.cwc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.cwc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.btc-card .cwc-icon { background: rgba(247,147,26,0.12); color: #f7931a; }
.eth-card .cwc-icon { background: rgba(98,126,234,0.12); color: #627eea; }
.sol-card .cwc-icon { background: rgba(153,69,255,0.12); color: #9945ff; }
.usdt-card .cwc-icon { background: rgba(38,161,123,0.12); color: #26a17b; }
.vnc-card .cwc-icon { background: rgba(0,212,170,0.12); color: var(--primary, #00d4aa); }

.cwc-header h4 {
    margin: 0;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}
.cwc-balance {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}
.cwc-address {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 12px;
}
.cwc-address label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
}
.value-copy {
    display: flex;
    align-items: center;
    gap: 8px;
}
.value-copy code {
    flex: 1;
    background: rgba(255,255,255,0.04);
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    word-break: break-all;
    border: 1px solid rgba(255,255,255,0.06);
    font-family: 'Courier New', monospace;
}
.value-copy input {
    flex: 1;
}
.copy-btn {
    background: rgba(0,212,170,0.1);
    border: 1px solid rgba(0,212,170,0.2);
    color: var(--primary, #00d4aa);
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}
.copy-btn:hover {
    background: rgba(0,212,170,0.2);
}

/* Quantum info card */
.quantum-info-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 20px;
}
.quantum-info-card h4 {
    margin: 0 0 16px 0;
    color: #fff;
    font-size: 16px;
}
.quantum-info-card h4 i {
    color: var(--primary, #00d4aa);
    margin-right: 8px;
}
.qi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}
.qi-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.qi-item span {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.qi-item strong {
    font-size: 14px;
    color: var(--primary, #00d4aa);
    font-weight: 600;
}

/* Responsive wallet */
@media (max-width: 600px) {
    .wallet-main-balances { grid-template-columns: 1fr; }
    .crypto-wallet-grid { grid-template-columns: 1fr; }
    .qi-grid { grid-template-columns: 1fr 1fr; }
    .wmb-value { font-size: 18px; }
    .crypto-wallet-header { flex-direction: column; align-items: flex-start; }
}

/* =====================================================
   DEPOSIT CRYPTO — Wallet Address Display
   ===================================================== */
.deposit-wallet-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 20px;
    margin-top: 8px;
}
.deposit-network-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,212,170,0.1);
    border: 1px solid rgba(0,212,170,0.25);
    color: var(--primary, #00d4aa);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}
.deposit-addr-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.deposit-addr-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 16px;
}
.deposit-addr-box code {
    flex: 1;
    font-size: 13px;
    color: #fff;
    word-break: break-all;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    font-weight: 600;
    background: none;
    border: none;
    padding: 0;
}
.copy-btn-lg {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary, #00d4aa);
    border: none;
    color: #0a0e17;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
}
.copy-btn-lg:hover {
    background: #00f0c0;
    transform: translateY(-1px);
}
.deposit-warnings {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.deposit-warnings p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.deposit-warnings p i {
    margin-top: 2px;
    flex-shrink: 0;
}
.deposit-warnings p strong {
    color: #fff;
}
.form-hint {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}
.form-note {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 16px;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border-left: 3px solid rgba(0,212,170,0.4);
}
.form-note i {
    color: var(--primary, #00d4aa);
    margin-right: 6px;
}
.form-description {
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
    font-size: 14px;
}
@media (max-width: 600px) {
    .deposit-addr-box { flex-direction: column; align-items: stretch; }
    .deposit-addr-box code { font-size: 11px; text-align: center; }
    .copy-btn-lg { justify-content: center; }
}

/* ========== STAKING PAGE ========== */
.staking-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}
.staking-plan-card {
    background: var(--bg-input, #1a1a2e);
    border: 2px solid var(--border, rgba(255,255,255,0.08));
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}
.staking-plan-card:hover {
    border-color: rgba(0,212,170,0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,212,170,0.1);
}
.staking-plan-card.selected {
    border-color: var(--primary, #00d4aa);
    background: rgba(0,212,170,0.08);
    box-shadow: 0 0 20px rgba(0,212,170,0.15);
}
.staking-plan-card.recommended {
    border-color: rgba(168,85,247,0.4);
}
.staking-plan-card.recommended.selected {
    border-color: #a855f7;
    background: rgba(168,85,247,0.08);
}
.spc-recommended {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: linear-gradient(90deg, #a855f7, #6c5ce7);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 0;
    letter-spacing: 1px;
}
.spc-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted, #888);
    margin-bottom: 6px;
    margin-top: 4px;
}
.spc-apy {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary, #00d4aa);
    line-height: 1.2;
}
.spc-apy span {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.7;
    margin-left: 2px;
}
.spc-lock {
    font-size: 11px;
    color: var(--text-muted, #888);
    margin: 6px 0 2px;
}
.spc-lock i {
    font-size: 10px;
    margin-right: 3px;
}
.spc-desc {
    font-size: 10px;
    color: var(--text-muted, #666);
}
.quick-amt {
    padding: 6px 14px;
    background: var(--bg-input, #1a1a2e);
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    color: var(--text, #e0e0e0);
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
.quick-amt:hover {
    background: rgba(0,212,170,0.1);
    border-color: var(--primary, #00d4aa);
    color: var(--primary, #00d4aa);
}
.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 6px;
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--border, rgba(255,255,255,0.1));
    color: var(--text, #e0e0e0);
    cursor: pointer;
    transition: all 0.2s;
}
.btn-outline:hover {
    border-color: var(--primary, #00d4aa);
    color: var(--primary, #00d4aa);
    background: rgba(0,212,170,0.05);
}

/* ========== AI CHAT WIDGET ========== */
.ai-chat-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4aa 0%, #6c5ce7 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(0,212,170,0.35);
    transition: all 0.3s ease;
    z-index: 9998;
}
.ai-chat-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(0,212,170,0.45);
}
.ai-chat-fab.active {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 6px 24px rgba(231,76,60,0.35);
}
.ai-fab-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary, #00d4aa);
    animation: fabPulse 2s infinite;
    pointer-events: none;
}
.ai-chat-fab.active .ai-fab-pulse {
    display: none;
}
@keyframes fabPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

.ai-chat-widget {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 380px;
    max-height: 520px;
    background: var(--bg-section, #141425);
    border-radius: 16px;
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ai-chat-widget.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.ai-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(0,212,170,0.15) 0%, rgba(108,92,231,0.15) 100%);
    border-bottom: 1px solid var(--border, rgba(255,255,255,0.06));
    cursor: pointer;
}
.ai-chat-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ai-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4aa, #6c5ce7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}
.ai-chat-header-left strong {
    font-size: 14px;
    color: var(--text, #fff);
}
.ai-status {
    display: block;
    font-size: 11px;
    color: #00d4aa;
    font-weight: 400;
}
.ai-chat-close {
    background: none;
    border: none;
    color: var(--text-muted, #888);
    font-size: 14px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s;
}
.ai-chat-close:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}
.ai-chat-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}
.ai-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 320px;
    min-height: 200px;
}
.ai-msg {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    animation: msgSlide 0.3s ease;
}
@keyframes msgSlide {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.ai-msg-user {
    flex-direction: row-reverse;
}
.ai-msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,212,170,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--primary, #00d4aa);
    flex-shrink: 0;
}
.ai-msg-user .ai-msg-avatar {
    background: rgba(108,92,231,0.15);
    color: #a855f7;
}
.ai-msg-content {
    background: var(--bg-input, #1a1a2e);
    border-radius: 12px;
    padding: 10px 14px;
    max-width: 85%;
    border: 1px solid var(--border, rgba(255,255,255,0.05));
}
.ai-msg-user .ai-msg-content {
    background: rgba(0,212,170,0.1);
    border-color: rgba(0,212,170,0.15);
}
.ai-msg-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text, #e0e0e0);
    word-break: break-word;
}
.ai-msg-time {
    display: block;
    font-size: 10px;
    color: var(--text-muted, #666);
    margin-top: 4px;
    text-align: right;
}
.ai-chat-quick-actions {
    display: flex;
    gap: 6px;
    padding: 8px 16px;
    overflow-x: auto;
    border-top: 1px solid var(--border, rgba(255,255,255,0.05));
    flex-shrink: 0;
}
.ai-chat-quick-actions button {
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 16px;
    border: 1px solid var(--border, rgba(255,255,255,0.1));
    background: var(--bg-input, #1a1a2e);
    color: var(--text, #e0e0e0);
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}
.ai-chat-quick-actions button:hover {
    background: rgba(0,212,170,0.1);
    border-color: var(--primary, #00d4aa);
    color: var(--primary, #00d4aa);
}
.ai-chat-input {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid var(--border, rgba(255,255,255,0.06));
    background: var(--bg-section, #141425);
    flex-shrink: 0;
}
.ai-chat-input input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 20px;
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    background: var(--bg-input, #1a1a2e);
    color: var(--text, #e0e0e0);
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
}
.ai-chat-input input:focus {
    border-color: var(--primary, #00d4aa);
}
.ai-chat-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4aa, #6c5ce7);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}
.ai-chat-input button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0,212,170,0.3);
}

/* Typing dots animation */
.typing-dots {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}
.typing-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text-muted, #888);
    animation: typingBounce 1.4s infinite both;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* ========== PWA INSTALL BANNER ========== */
.pwa-install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-section, #141425);
    border-top: 1px solid var(--border, rgba(255,255,255,0.08));
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease;
}
@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
.pwa-install-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text, #e0e0e0);
}
.pwa-install-content i {
    font-size: 24px;
    color: var(--primary, #00d4aa);
}
.pwa-install-content strong {
    display: block;
    font-size: 14px;
}
.pwa-install-content span {
    display: block;
    font-size: 12px;
    color: var(--text-muted, #888);
}
.pwa-install-actions {
    display: flex;
    gap: 8px;
}

/* ========== MOBILE RESPONSIVE for Chat ========== */
@media (max-width: 480px) {
    .ai-chat-widget {
        right: 8px;
        left: 8px;
        bottom: 80px;
        width: auto;
        max-height: 70vh;
    }
    .ai-chat-fab {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .staking-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pwa-install-banner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ===== KYC UPLOAD BOX ===== */
.kyc-upload-box {
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-input);
}
.kyc-upload-box:hover {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.05);
}
.kyc-upload-box.has-file {
    border-color: var(--success);
    border-style: solid;
    background: rgba(46, 204, 113, 0.05);
}
