/*
Theme Name: CoinTPro
Theme URI: https://cointpro.com
Author: CoinTPro Team
Author URI: https://cointpro.com
Description: Premium dark neon trading platform theme with glassmorphism, live charts, crypto deposits and real-time trading.
Version: 2.0.0
Requires at least: 5.9
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cointpro
Tags: dark, custom-menu, custom-logo, featured-images
*/

/* ============================================================
   COIN T PRO â€” DESIGN SYSTEM v2  "Neon Violet & Cyan"
   Premium Gen-Z Trading Platform Theme â€” Polished Edition
   ============================================================ */

/* â”€â”€ Google Fonts Import (fallback if not in <head>) â”€â”€â”€â”€â”€â”€â”€ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300..800&family=Outfit:wght@300..900&family=JetBrains+Mono:wght@400;700&display=swap');

/* â”€â”€ Design Tokens â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
    /* Primary Palette: Violet & Cyan */
    --primary: #8B5CF6;
    --primary-hover: #A78BFA;
    --primary-glow: rgba(139, 92, 246, 0.40);
    --primary-muted: rgba(139, 92, 246, 0.15);
    --primary-deep: #6D28D9;

    --accent: #06B6D4;
    --accent-hover: #22D3EE;
    --accent-glow: rgba(6, 182, 212, 0.40);
    --accent-muted: rgba(6, 182, 212, 0.12);

    /* Semantic Colors */
    --profit: #34D399;
    --profit-glow: rgba(52, 211, 153, 0.40);
    --loss: #F43F5E;
    --loss-glow: rgba(244, 63, 94, 0.40);
    --warning: #FBBF24;
    --info: #38BDF8;

    /* Extra Accents */
    --pink: #EC4899;
    --pink-glow: rgba(236, 72, 153, 0.35);
    --orange: #F97316;
    --orange-glow: rgba(249, 115, 22, 0.35);
    --cyan: #22D3EE;
    --cyan-glow: rgba(34, 211, 238, 0.35);

    /* Backgrounds â€” Deep Midnight */
    --bg-deep: #030712;
    --bg-base: #0A0F1E;
    --bg-surface: #111827;
    --bg-card: rgba(17, 24, 39, 0.85);
    --bg-card-hover: rgba(30, 41, 59, 0.92);
    --bg-glass: rgba(15, 23, 42, 0.75);
    --bg-input: rgba(15, 23, 42, 0.90);
    --bg-elevated: rgba(30, 41, 59, 0.80);

    /* Borders */
    --border: rgba(139, 92, 246, 0.15);
    --border-hover: rgba(139, 92, 246, 0.40);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-active: rgba(6, 182, 212, 0.50);

    /* Typography Colors */
    --text-primary: #F8FAFC;
    --text-secondary: #E2E8F0;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    --text-disabled: #475569;

    /* Typography Families */
    --font-display: 'Outfit', 'Space Grotesk', -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', 'Cascadia Code', monospace;

    /* Spacing Scale */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.6);
    --shadow-primary: 0 8px 32px rgba(139, 92, 246, 0.30);
    --shadow-accent: 0 8px 32px rgba(6, 182, 212, 0.25);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.15);
    --shadow-neon: 0 0 20px rgba(139, 92, 246, 0.4), 0 0 60px rgba(139, 92, 246, 0.1);

    /* Transitions */
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-snap: cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: 0.15s var(--ease-smooth);
    --transition-base: 0.3s var(--ease-smooth);
    --transition-slow: 0.5s var(--ease-smooth);

    /* Layout */
    --header-h: 72px;
    --sidebar-w: 280px;
    --max-w: 1280px;
    --max-w-narrow: 520px;

    /* Backward compat aliases */
    --gold: var(--primary);
    --gold-hover: var(--primary-hover);
    --gold-glow: var(--primary-glow);
    --gold-muted: var(--primary-muted);
    --electric: var(--accent);
    --electric-hover: var(--accent-hover);
    --electric-glow: var(--accent-glow);
    --electric-muted: var(--accent-muted);
    --purple: var(--pink);
    --purple-glow: var(--pink-glow);
    --shadow-gold: var(--shadow-primary);
    --shadow-electric: var(--shadow-accent);
}

/* â”€â”€ Reset & Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background: var(--bg-deep) !important;
    font-family: var(--font-body);
    color: var(--text-secondary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 0 !important;
}

body {
    min-height: 100vh;
    background: var(--bg-deep) !important;
    color: var(--text-secondary);
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide WP Admin Bar gap top white line glitch */
#wpadminbar {
    display: none !important;
}

/* Ambient Background â€” Violet & Cyan Orbs */
body::before {
    content: '';
    position: fixed;
    top: -30%;
    left: 40%;
    transform: translateX(-50%);
    width: 100vw;
    height: 60vh;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(139, 92, 246, 0.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 50vh;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* â”€â”€ Scrollbar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: rgba(139, 92, 246, 0.25); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* â”€â”€ Typography â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(26px, 4vw, 40px); }
h3 { font-size: clamp(20px, 3vw, 28px); }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p { color: var(--text-muted); line-height: 1.7; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover { color: var(--primary-hover); }

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

.text-gold, .text-primary-c { color: var(--primary) !important; }
.text-electric, .text-accent { color: var(--accent) !important; }
.text-profit { color: var(--profit) !important; }
.text-loss { color: var(--loss) !important; }
.text-muted { color: var(--text-muted) !important; }

/* â”€â”€ Layout Utilities â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: var(--max-w-narrow);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.w-full { width: 100%; }
.text-center { text-align: center; }

/* â”€â”€ Glass Card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.glass-card:hover::before { opacity: 1; }

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease-bounce);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    user-select: none;
    letter-spacing: -0.01em;
}

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

.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

/* Primary â€” Violet */
.btn-primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 50%, #6D28D9 100%);
    color: #FFFFFF;
    font-weight: 800;
    box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.50);
    color: #FFFFFF;
}

/* Neon Glow Button */
.neon-glow-btn {
    box-shadow: var(--shadow-primary), var(--shadow-neon);
}
.neon-glow-btn:hover {
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.50), 0 0 30px rgba(139, 92, 246, 0.5), 0 0 80px rgba(139, 92, 246, 0.15);
}

/* Secondary â€” Glass */
.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Accent â€” Cyan */
.btn-electric {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
    color: #FFFFFF;
    font-weight: 800;
    box-shadow: var(--shadow-accent);
}
.btn-electric:hover {
    background: linear-gradient(135deg, #22D3EE 0%, #06B6D4 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.45);
    color: #FFFFFF;
}

/* Success â€” Profit Green */
.btn-success {
    background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
    color: #022C22;
    font-weight: 800;
}
.btn-success:hover {
    box-shadow: 0 10px 30px rgba(52, 211, 153, 0.4);
    transform: translateY(-2px);
}

/* Danger â€” Loss Rose */
.btn-danger {
    background: linear-gradient(135deg, #F43F5E 0%, #E11D48 100%);
    color: #FFFFFF;
    font-weight: 800;
}
.btn-danger:hover {
    box-shadow: 0 10px 30px rgba(244, 63, 94, 0.4);
    transform: translateY(-2px);
}

/* Ghost / Text */
.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
}
.btn-ghost:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border);
}

/* Sizes */
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 8px; }
.btn-xs { padding: 5px 12px; font-size: 11px; border-radius: 6px; }
.btn-icon { width: 40px; height: 40px; padding: 0; border-radius: var(--radius-sm); }

/* â”€â”€ Form Elements & Search Input (Dark Glassmorphism) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: var(--space-md);
}

.form-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input, .form-select, .asset-search-box, .asset-search {
    width: 100%;
    padding: 14px 18px !important;
    background: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(139, 92, 246, 0.25) !important;
    border-radius: var(--radius-sm) !important;
    color: #F8FAFC !important;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    transition: all var(--transition-fast) !important;
    outline: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.asset-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.asset-filter-bar .asset-search-box {
    flex: 1;
    min-width: 260px;
    max-width: 450px;
    border-radius: 14px !important;
}

.asset-sidebar .asset-search, .asset-search {
    flex: none !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    border-radius: 12px !important;
    padding: 10px 14px !important;
    font-size: 13px !important;
    width: calc(100% - 24px) !important;
    margin: 12px !important;
}

.form-input::placeholder, .form-select::placeholder, .asset-search-box::placeholder, .asset-search::placeholder {
    color: #64748B !important;
    font-weight: 500;
}

.form-input:focus, .form-select:focus, .asset-search-box:focus, .asset-search:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    background: rgba(17, 24, 39, 0.95) !important;
    transform: translateY(-1px);
}

/* Hard global override to prevent any native white browser inputs */
input[type="text"], input[type="search"], input[type="number"], input[type="email"], input[type="password"] {
    background-color: rgba(15, 23, 42, 0.85) !important;
    color: #F8FAFC !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus {
    -webkit-text-fill-color: #F8FAFC !important;
    -webkit-box-shadow: 0 0 0px 1000px #0F172A inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

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

.form-input-group {
    display: flex;
    gap: 0;
}

.form-input-group .form-input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.form-input-group .form-select {
    max-width: 100px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-checkbox label {
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.5;
}

/* â”€â”€ Badge / Tag â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-gold, .badge-primary { background: var(--primary-muted); color: var(--primary); border: 1px solid rgba(139,92,246,0.3); }
.badge-electric, .badge-accent { background: var(--accent-muted); color: var(--accent); border: 1px solid rgba(6,182,212,0.3); }
.badge-profit { background: rgba(52,211,153,0.12); color: var(--profit); border: 1px solid rgba(52,211,153,0.3); }
.badge-loss { background: rgba(244,63,94,0.12); color: var(--loss); border: 1px solid rgba(244,63,94,0.3); }
.badge-warning { background: rgba(251,191,36,0.12); color: var(--warning); border: 1px solid rgba(251,191,36,0.3); }
.badge-purple { background: rgba(236,72,153,0.12); color: var(--pink); border: 1px solid rgba(236,72,153,0.3); }

/* â”€â”€ Stat Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}

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

.stat-card:hover::before { opacity: 1; }

.stat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xs);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
}

/* â”€â”€ Status Pills â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending { background: rgba(251,191,36,0.12); color: var(--warning); border: 1px solid rgba(251,191,36,0.3); }
.status-approved { background: rgba(52,211,153,0.12); color: var(--profit); border: 1px solid rgba(52,211,153,0.3); }
.status-rejected { background: rgba(244,63,94,0.12); color: var(--loss); border: 1px solid rgba(244,63,94,0.3); }

/* â”€â”€ Tab Group â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tab-group {
    display: flex;
    gap: 2px;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 3px;
}

.tab-btn {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary-muted);
    color: var(--primary);
}

/* â”€â”€ Empty State â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.empty-state {
    text-align: center;
    padding: 48px 24px;
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.empty-state h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
    color: var(--text-dim);
}

/* â”€â”€ Divider â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.divider {
    border: none;
    border-top: 1px solid var(--border-subtle);
    margin: var(--space-lg) 0;
}

/* â”€â”€ Page Content â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-content {
    padding: calc(var(--header-h) + 32px) 0 80px;
    position: relative;
    z-index: 1;
}

.page-hero {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.page-hero p {
    max-width: 500px;
    margin: 12px auto 0;
    font-size: 15px;
}

/* â”€â”€ Toast / Notification System â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.toast-container {
    position: fixed;
    top: var(--space-lg);
    right: var(--space-lg);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: 400px;
}

.toast {
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(0,0,0,0.3);
    animation: slideInRight 0.4s var(--ease-bounce);
    position: relative;
    overflow: hidden;
    min-width: 300px;
}

.toast::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
}

.toast.toast-success::before { background: var(--profit); }
.toast.toast-danger::before { background: var(--loss); }
.toast.toast-warning::before { background: var(--warning); }
.toast.toast-info::before { background: var(--info); }

.toast-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.toast-body {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.toast-close {
    position: absolute;
    top: 8px; right: 8px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.15s;
}

.toast-close:hover {
    background: rgba(255,255,255,0.06);
    color: var(--text-primary);
}

/* â”€â”€ Modal Overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 7, 18, 0.80);
    backdrop-filter: blur(8px);
    z-index: 50000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-smooth);
}

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

.modal-content {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    max-width: 480px;
    width: 90%;
    box-shadow: var(--shadow-xl), var(--shadow-neon);
    animation: pop-in 0.4s var(--ease-bounce);
    position: relative;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--pink));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-subtle);
    color: var(--text-dim);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(244,63,94,0.15);
    color: var(--loss);
    border-color: rgba(244,63,94,0.3);
}

/* â”€â”€ Pulse Dot â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--profit);
    animation: pulse-glow 2s infinite;
}

/* â”€â”€ Section Decorators â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: var(--space-3xl) 0;
}

.section-glow {
    position: relative;
}

.section-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.06), transparent 70%);
    pointer-events: none;
}

/* â”€â”€ Mesh Gradient Background Utility â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mesh-bg {
    position: relative;
}

.mesh-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 15% 25%, rgba(139,92,246,0.08), transparent),
        radial-gradient(ellipse 40% 35% at 85% 30%, rgba(6,182,212,0.06), transparent),
        radial-gradient(ellipse 45% 40% at 50% 80%, rgba(236,72,153,0.04), transparent);
    pointer-events: none;
    z-index: 0;
}

/* â”€â”€ Hero & Stat Cards (Screenshot 2 Match) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
    position: relative;
    padding: 120px 0 60px;
    text-align: center;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-deep);
}

.hero-bg {
    position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.hero-bg::before {
    content: '';
    position: absolute; top: 10%; left: 30%;
    width: 550px; height: 550px; border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 65%);
    filter: blur(80px); animation: float 8s ease-in-out infinite;
}
.hero-bg::after {
    content: '';
    position: absolute; bottom: 10%; right: 20%;
    width: 450px; height: 450px; border-radius: 50%;
    background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 65%);
    filter: blur(80px); animation: float 10s ease-in-out infinite reverse;
}

.hero-orb-pink {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(236,72,153,0.08) 0%, transparent 65%);
    filter: blur(70px); pointer-events: none;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 6vw, 76px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 36px;
    text-shadow: 0 0 40px rgba(139,92,246,0.2);
}

.hero-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.text-cyan-glow {
    background: linear-gradient(135deg, #C084FC 0%, #38BDF8 50%, #22D3EE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.3));
}

/* 3 Glassmorphic Glowing Stat Cards (Screenshot 2 design) */
.hero-stat-cards, .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 280px));
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 0 auto 36px;
    width: 100%;
    max-width: 900px;
}

.hero-stat {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.25);
    transition: all 0.35s var(--ease-smooth);
}

.glass-stat-card {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.glass-stat-card:hover, .hero-stat:hover {
    transform: translateY(-4px) scale(1.02);
}

.card-cyan-glow {
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(6, 182, 212, 0.4);
}
.card-cyan-glow:hover {
    box-shadow: 0 0 50px rgba(6, 182, 212, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(34, 211, 238, 0.7);
}

.card-purple-glow {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
}
.card-purple-glow:hover {
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(167, 139, 250, 0.7);
}

.card-blue-purple-glow {
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.25), 0 0 40px rgba(139, 92, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(56, 189, 248, 0.4);
}
.card-blue-purple-glow:hover {
    box-shadow: 0 0 50px rgba(34, 211, 238, 0.45), 0 0 50px rgba(139, 92, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(34, 211, 238, 0.7);
}

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

.stat-number, .hero-stat-value {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-tag, .hero-stat-label {
    font-size: 13px;
    color: #94A3B8;
    font-weight: 600;
    margin-top: 6px;
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Pill CTA Button (Screenshot 2 Match) */
.hero-cta-single, .hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.btn-hero-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 44px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #8B5CF6 0%, #38BDF8 100%);
    color: #FFFFFF;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5), 0 0 20px rgba(56, 189, 248, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
}

.btn-hero-pill:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 0 45px rgba(139, 92, 246, 0.7), 0 0 35px rgba(56, 189, 248, 0.6);
    color: #FFFFFF;
}

/* Marquee Live Ticker */
.ticker-wrapper {
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    margin: 30px 0;
    position: relative;
    background: rgba(3, 7, 18, 0.5);
}
.ticker-wrapper::before, .ticker-wrapper::after {
    content: '';
    position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.ticker-wrapper::before { left: 0; background: linear-gradient(90deg, var(--bg-deep), transparent); }
.ticker-wrapper::after { right: 0; background: linear-gradient(270deg, var(--bg-deep), transparent); }
.ticker-track {
    display: flex; gap: 48px;
    animation: ticker-scroll 40s linear infinite;
    width: max-content;
}
.ticker-item {
    display: flex; align-items: center; gap: 10px;
    white-space: nowrap; flex-shrink: 0;
}
.ticker-name {
    font-weight: 800; font-size: 13px; color: var(--text-secondary);
    font-family: var(--font-display);
}
.ticker-price {
    font-family: var(--font-mono); font-size: 13px; font-weight: 700;
}
.ticker-change {
    font-family: var(--font-mono); font-size: 11px; font-weight: 700;
    padding: 2px 6px; border-radius: 4px;
}
.ticker-up .ticker-price { color: var(--profit); }
.ticker-up .ticker-change { background: rgba(52,211,153,0.1); color: var(--profit); }
.ticker-down .ticker-price { color: var(--loss); }
.ticker-down .ticker-change { background: rgba(244,63,94,0.1); color: var(--loss); }

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* â”€â”€ Features Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.features-section {
    padding: 90px 0;
    position: relative;
}
.features-section-title {
    text-align: center;
    margin-bottom: 56px;
}
.features-section-title h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 12px;
}
.features-section-title p {
    max-width: 540px; margin: 0 auto;
    font-size: 15px; color: var(--text-muted);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: rgba(17, 24, 39, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.18);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139,92,246,0.4);
    box-shadow: 0 16px 48px rgba(139,92,246,0.25), 0 0 60px rgba(139,92,246,0.1);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 64px; height: 64px; border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 30px; margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(6,182,212,0.1));
    border: 1px solid rgba(139,92,246,0.2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.feature-card h3 { margin-bottom: 12px; font-size: 18px; color: #FFF; }
.feature-card p { font-size: 13.5px; line-height: 1.7; color: var(--text-muted); }

/* â”€â”€ How It Works (Steps Section) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.steps-section {
    padding: 80px 0;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.step-card {
    text-align: center; padding: 36px 28px;
    background: rgba(17, 24, 39, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.35s var(--ease-smooth);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.step-card:hover {
    border-color: rgba(6, 182, 212, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(6, 182, 212, 0.2);
}
.step-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff; font-family: var(--font-display);
    font-weight: 900; font-size: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(139,92,246,0.4);
}
.step-card h4 { font-size: 18px; margin-bottom: 10px; color: #FFF; }
.step-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

/* â”€â”€ Trust Bar / Social Proof â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

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

.trust-item span {
    font-size: 18px;
}

/* â”€â”€ CTA Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-section, .final-cta {
    text-align: center;
    padding: var(--space-3xl) 0;
    position: relative;
}

.cta-card {
    background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(6,182,212,0.08));
    backdrop-filter: blur(24px);
    border: 1px solid rgba(139,92,246,0.3);
    border-radius: 24px;
    padding: 56px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(139,92,246,0.15);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--pink));
}

.cta-card h2 {
    margin-bottom: 16px;
    font-size: clamp(28px, 4vw, 40px);
}

.cta-card p {
    max-width: 520px;
    margin: 0 auto 32px;
    font-size: 15px;
}

/* â”€â”€ Comprehensive Mobile Responsive Engine â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 860px) {
    .container { padding: 0 16px; }
    
    .hero {
        padding: 90px 0 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(28px, 7vw, 44px) !important;
        margin-bottom: 24px !important;
    }

    .hero-subtitle {
        font-size: 14px !important;
        margin-bottom: 28px !important;
        padding: 0 10px;
    }

    /* Stack stat cards in 1 clean column on mobile */
    .hero-stat-cards, .hero-stats {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 360px !important;
        margin: 0 auto 28px !important;
        gap: 14px !important;
        padding: 0 8px !important;
    }

    .glass-stat-card, .hero-stat {
        width: 100% !important;
        padding: 18px 22px !important;
        border-radius: 18px !important;
        box-sizing: border-box !important;
    }

    .stat-number, .hero-stat-value {
        font-size: 28px !important;
    }

    .stat-tag, .hero-stat-label {
        font-size: 12px !important;
    }

    .btn-hero-pill {
        width: 100% !important;
        max-width: 320px !important;
        padding: 14px 24px !important;
        font-size: 15px !important;
        box-sizing: border-box !important;
    }

    .features-grid, .steps-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .feature-card, .step-card {
        padding: 24px 20px !important;
        border-radius: 18px !important;
    }

    .cta-card {
        padding: 36px 20px !important;
        border-radius: 20px !important;
    }
}

@media (max-width: 480px) {
    :root {
        --header-h: 60px;
    }
    
    .container { padding: 0 12px; }

    .site-header { height: 60px; }
    .header-inner { padding: 0 8px; gap: 4px; }
    .header-logo { gap: 4px; font-size: 13px; }
    .header-logo-img { height: 24px; }
    .logo-text-full { font-size: 13px; }
    
    #header-auth-actions { gap: 4px; }
    .btn-sm.auth-only-inline { padding: 5px 8px; font-size: 10px; border-radius: 6px; }
    .user-avatar { width: 28px; height: 28px; font-size: 10px; border-radius: 6px; }
    .mobile-menu-toggle { width: 32px; height: 32px; }
    
    .toast-container { right: 8px; left: 8px; max-width: none; }
}

/* ============================================================
   COIN T PRO â€” COMPONENT STYLES v2
   Header, Footer, Navigation, User Avatar, Spinner, Toast
   ============================================================ */

/* â”€â”€ Site Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    z-index: 9000;
    background: rgba(3, 7, 18, 0.82);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
    background: rgba(3, 7, 18, 0.96);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3), 0 1px 0 rgba(139,92,246,0.1);
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: transform 0.2s;
}

.header-logo:hover { 
    color: var(--text-primary); 
    transform: scale(1.02);
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
    transition: box-shadow 0.3s;
}

.header-logo:hover .logo-mark {
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}

.logo-accent {
    color: var(--primary);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
    color: var(--primary);
    background: var(--primary-muted);
}

.nav-item-dropdown:hover .nav-dropdown-menu {
    display: block !important;
    animation: fadeIn 0.15s ease-out;
}

.nav-dropdown-menu .dropdown-item:hover {
    background: rgba(139, 92, 246, 0.12) !important;
    color: var(--primary) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

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

/* â”€â”€ User Avatar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s var(--ease-bounce);
    border: 2px solid rgba(139, 92, 246, 0.3);
    flex-shrink: 0;
    position: relative;
}

.user-avatar::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.user-avatar:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    border-color: var(--primary);
}

.user-avatar:hover::after {
    opacity: 0.15;
}

/* â”€â”€ Mobile Menu Toggle â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-muted);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    border-color: var(--primary);
    background: rgba(139,92,246,0.06);
}

.mobile-menu-toggle:hover span {
    background: var(--primary);
}

/* â”€â”€ Mobile Nav â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    bottom: 0;
    background: rgba(3, 7, 18, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 8999;
    padding: var(--space-lg);
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s var(--ease-smooth);
    pointer-events: none;
}

.mobile-nav.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-link {
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-nav-link:hover {
    background: var(--primary-muted);
    color: var(--primary);
    padding-left: 24px;
}

/* â”€â”€ Site Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer {
    background: linear-gradient(to bottom, var(--bg-base), rgba(3,7,18,0.95));
    border-top: 1px solid var(--border);
    padding: var(--space-3xl) 0 var(--space-xl);
    position: relative;
    z-index: 1;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-muted), var(--accent-muted), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 12px;
}

.footer-links h5 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-dim);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
    font-size: 12px;
    color: var(--text-dim);
}

/* â”€â”€ Spinner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(139, 92, 246, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: inline-block;
}

.spinner-sm {
    width: 16px;
    height: 16px;
    border-width: 2px;
}

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

/* â”€â”€ Ripple Effect â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.3);
    transform: scale(0);
    animation: ripple-anim 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-anim {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* â”€â”€ Confetti â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.confetti-container {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 99999;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    top: -10px;
    width: 8px;
    height: 8px;
    animation: confetti-fall 3s ease-in forwards;
}

@keyframes confetti-fall {
    0% { transform: translateY(-10px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* â”€â”€ Header Scroll Effect â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* â”€â”€ Responsive Rules & Mobile Menu Touch Polish â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        padding: 0;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border);
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.25s ease;
    }
    .mobile-menu-toggle span {
        width: 18px;
        height: 2px;
        background: var(--text-secondary);
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.2s ease, background 0.2s ease;
    }
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background: var(--primary);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background: var(--primary);
    }

    .mobile-nav {
        display: flex;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(3, 7, 18, 0.98);
        backdrop-filter: blur(28px) saturate(200%);
        -webkit-backdrop-filter: blur(28px) saturate(200%);
        z-index: 8999;
        padding: 24px 20px;
        flex-direction: column;
        gap: 6px;
        overflow-y: auto;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth), visibility 0.3s;
    }
    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    .mobile-nav-link {
        padding: 14px 16px;
        font-size: 15px;
        font-weight: 700;
        color: var(--text-secondary);
        text-decoration: none;
        border-radius: 12px;
        border: 1px solid transparent;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(255, 255, 255, 0.02);
    }
    .mobile-nav-link:hover, .mobile-nav-link:active {
        background: var(--primary-muted);
        color: var(--primary);
        border-color: rgba(139, 92, 246, 0.25);
        padding-left: 20px;
    }

    .header-nav { display: none !important; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    .form-input, .form-select {
        font-size: 16px !important; /* Prevents auto-zoom on iOS Safari */
        padding: 12px 14px;
        border-radius: 12px;
    }

    .user-dropdown {
        right: 12px !important;
        left: 12px !important;
        min-width: unset !important;
        width: calc(100% - 24px) !important;
    }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .container { padding: 0 14px; }
    .glass-card, .dep-card, .stat-card { padding: 20px 16px; }
}

/* ============================================================
   COIN T PRO â€” ANIMATIONS & EFFECTS
   Neon Violet & Cyan Gen-Z Animations
   ============================================================ */

/* â”€â”€ Fade In Up â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.anim-fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    animation: fadeInUp 0.7s var(--ease-smooth) forwards;
}

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
.anim-delay-5 { animation-delay: 0.5s; }

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

/* â”€â”€ Fade In Down â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* â”€â”€ Slide In Right â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* â”€â”€ Slide Up (Modals) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

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

/* â”€â”€ Pop In (Popup entrance) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes pop-in {
    0% { opacity: 0; transform: scale(0.85) translateY(20px); }
    50% { transform: scale(1.03) translateY(-4px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* â”€â”€ Glow Pulse (Neon borders) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(139, 92, 246, 0.2), 0 0 24px rgba(139, 92, 246, 0.05); }
    50% { box-shadow: 0 0 16px rgba(139, 92, 246, 0.4), 0 0 48px rgba(139, 92, 246, 0.15); }
}

.glow-pulse {
    animation: glow-pulse 3s ease-in-out infinite;
}

/* â”€â”€ Gradient Shift (Moving gradient backgrounds) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-animated {
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
}

/* â”€â”€ Float (Subtle floating motion) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.float {
    animation: float 4s ease-in-out infinite;
}

/* â”€â”€ Shimmer (Loading placeholder) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer {
    background: linear-gradient(90deg, var(--bg-card) 25%, rgba(139, 92, 246, 0.08) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.8s infinite;
}

/* â”€â”€ Pulse Glow (Live indicator) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes pulse-glow {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
}

/* â”€â”€ Shake (Error feedback) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

/* â”€â”€ Scale Bounce (Button press) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes scale-bounce {
    0% { transform: scale(1); }
    30% { transform: scale(0.92); }
    60% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* â”€â”€ Neon Border Glow â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.neon-border {
    position: relative;
}

.neon-border::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--pink), var(--primary));
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: gradient-shift 3s ease infinite;
}

.neon-border:hover::after {
    opacity: 1;
}

/* â”€â”€ Scroll Reveal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--ease-smooth);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s var(--ease-smooth);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s var(--ease-smooth);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s var(--ease-smooth);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* â”€â”€ Success Celebration â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes celebrate-glow {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.celebrate {
    animation: celebrate-glow 1s ease-out;
}

/* â”€â”€ Danger Pulse â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes danger-pulse {
    0% { box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.4); }
    70% { box-shadow: 0 0 0 16px rgba(244, 63, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(244, 63, 94, 0); }
}

.danger-pulse {
    animation: danger-pulse 1s ease-out;
}

/* â”€â”€ Counter Ticker â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes count-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* â”€â”€ Gradient Text Shimmer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.text-shimmer {
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--pink), var(--primary));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

/* â”€â”€ Market Ticker Scroll â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-scroll {
    display: flex;
    animation: ticker-scroll 30s linear infinite;
}

.ticker-scroll:hover {
    animation-play-state: paused;
}

/* â”€â”€ Particle Dots Background â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes particle-float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-20px) translateX(10px); opacity: 0.6; }
    50% { transform: translateY(-10px) translateX(-5px); opacity: 0.4; }
    75% { transform: translateY(-30px) translateX(15px); opacity: 0.5; }
}

/* â”€â”€ Card Hover Lift â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hover-lift {
    transition: all 0.3s var(--ease-smooth);
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* â”€â”€ Animated Counter â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes number-pop {
    0% { transform: scale(0.8); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.number-pop {
    animation: number-pop 0.4s var(--ease-bounce);
}

/* â”€â”€ Win/Loss Flash â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes win-flash {
    0% { background: transparent; }
    25% { background: rgba(52, 211, 153, 0.15); }
    50% { background: transparent; }
    75% { background: rgba(52, 211, 153, 0.08); }
    100% { background: transparent; }
}

@keyframes loss-flash {
    0% { background: transparent; }
    25% { background: rgba(244, 63, 94, 0.15); }
    50% { background: transparent; }
    75% { background: rgba(244, 63, 94, 0.08); }
    100% { background: transparent; }
}

.win-flash { animation: win-flash 1s ease; }
.loss-flash { animation: loss-flash 1s ease; }

/* â”€â”€ Tooltip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    padding: 6px 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 11px;
    color: var(--text-secondary);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s var(--ease-bounce);
    box-shadow: var(--shadow-md);
}

[data-tooltip]:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}