/* Best API - Professional Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #4f46e5;
    --primary-dark: #3730a3;
    --primary-light: #6366f1;
    --secondary: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --darker: #090e1a;
    --card-bg: #1e293b;
    --card-border: rgba(255,255,255,0.07);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --sidebar-width: 260px;
    --gradient-1: linear-gradient(135deg, #4f46e5, #06b6d4);
    --gradient-2: linear-gradient(135deg, #0f172a, #1e293b);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* =================== PUBLIC PAGES =================== */
.public-body {
    background: #fff;
    color: #1e293b;
}

/* Navbar */
.navbar-public {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand-text {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link-public {
    color: #374151 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-link-public:hover { background: #f3f4f6; color: var(--primary) !important; }

.btn-nav-login {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    border-radius: 10px;
    font-weight: 600;
    padding: 0.4rem 1.2rem !important;
    transition: all 0.2s;
}
.btn-nav-login:hover { background: var(--primary); color: #fff !important; }

.btn-nav-register {
    background: var(--gradient-1);
    color: #fff !important;
    border-radius: 10px;
    font-weight: 600;
    padding: 0.4rem 1.2rem !important;
    transition: all 0.2s;
    border: none;
}
.btn-nav-register:hover { opacity: 0.9; transform: translateY(-1px); }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0c4a6e 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-badge {
    display: inline-block;
    background: rgba(99,102,241,0.2);
    border: 1px solid rgba(99,102,241,0.4);
    color: #a5b4fc;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hero-title span {
    background: linear-gradient(135deg, #818cf8, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
}
.btn-hero-primary {
    background: var(--gradient-1);
    color: #fff;
    border: none;
    padding: 0.85rem 2.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(79,70,229,0.4);
}
.btn-hero-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 6px 30px rgba(79,70,229,0.5); }
.btn-hero-outline {
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 0.83rem 2.2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}
.btn-hero-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }

.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; }
.hero-stat-num { font-size: 1.8rem; font-weight: 800; }
.hero-stat-label { font-size: 0.85rem; color: #94a3b8; }

/* Hero Code Card */
.hero-card {
    background: rgba(30,41,59,0.8);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
}
.code-block {
    background: #090e1a;
    border-radius: 10px;
    padding: 1.2rem;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #94a3b8;
    overflow-x: auto;
}
.code-keyword { color: #f472b6; }
.code-string { color: #34d399; }
.code-key { color: #60a5fa; }
.code-value { color: #fbbf24; }

/* Stats Strip */
.stats-strip {
    background: #0f172a;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 2rem 0;
}
.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 800; color: #fff; }
.stat-label { color: #64748b; font-size: 0.9rem; }

/* Features Section */
.section-public { padding: 80px 0; }
.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 0.8rem;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: #0f172a; }
.section-title span { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-desc { color: #64748b; font-size: 1.05rem; max-width: 550px; margin: 0 auto; }

.feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s;
}
.feature-card:hover { border-color: var(--primary); box-shadow: 0 10px 40px rgba(79,70,229,0.1); transform: translateY(-4px); }
.feature-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}
.feature-icon.blue { background: rgba(79,70,229,0.1); color: var(--primary); }
.feature-icon.cyan { background: rgba(6,182,212,0.1); color: var(--secondary); }
.feature-icon.green { background: rgba(16,185,129,0.1); color: var(--success); }
.feature-icon.orange { background: rgba(245,158,11,0.1); color: var(--warning); }
.feature-title { font-size: 1.1rem; font-weight: 700; color: #0f172a; margin-bottom: 0.6rem; }
.feature-desc { color: #64748b; font-size: 0.9rem; line-height: 1.6; }

/* API List Preview */
.api-preview-section { background: #f8fafc; }
.api-table-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.api-table th { background: var(--primary); color: #fff; font-weight: 600; font-size: 0.9rem; padding: 1rem 1.2rem; }
.api-table td { padding: 0.9rem 1.2rem; vertical-align: middle; border-color: #f1f5f9; font-size: 0.9rem; }
.api-table tr:hover td { background: #f8fafc; }
.badge-active { background: rgba(16,185,129,0.1); color: var(--success); font-size: 0.78rem; padding: 0.3rem 0.7rem; border-radius: 20px; font-weight: 600; border: 1px solid rgba(16,185,129,0.2); }

/* Pricing Section */
.pricing-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}
.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 50px rgba(79,70,229,0.15);
    transform: scale(1.02);
}
.pricing-badge { background: var(--gradient-1); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.8rem; border-radius: 20px; display: inline-block; margin-bottom: 1rem; }
.pricing-name { font-size: 1.1rem; font-weight: 700; color: #374151; }
.pricing-price { font-size: 2.5rem; font-weight: 800; color: #0f172a; margin: 1rem 0; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: #64748b; }
.pricing-feature { display: flex; align-items: center; gap: 0.6rem; text-align: left; margin-bottom: 0.7rem; font-size: 0.9rem; color: #374151; }
.pricing-feature i { color: var(--success); flex-shrink: 0; }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4f46e5, #0284c7);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

/* Footer */
.footer-public { background: #0f172a; color: #94a3b8; padding: 60px 0 30px; }
.footer-logo { font-size: 1.5rem; font-weight: 800; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 1rem; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-heading { font-weight: 700; color: #fff; margin-bottom: 1.2rem; font-size: 0.95rem; }
.footer-link { display: block; color: #64748b; text-decoration: none; margin-bottom: 0.6rem; font-size: 0.9rem; transition: color 0.2s; }
.footer-link:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; margin-top: 2rem; font-size: 0.85rem; }

/* =================== AUTH PAGES =================== */
.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0c4a6e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.auth-card {
    background: rgba(30,41,59,0.95);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 460px;
    backdrop-filter: blur(20px);
}
.auth-logo { font-size: 1.8rem; font-weight: 800; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.auth-title { font-size: 1.5rem; font-weight: 700; color: #f1f5f9; margin-bottom: 0.4rem; }
.auth-subtitle { color: #64748b; font-size: 0.9rem; margin-bottom: 2rem; }
.form-label-dark { color: #94a3b8; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.4rem; }
.form-control-dark {
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    color: #f1f5f9;
    border-radius: 10px;
    padding: 0.7rem 1rem;
    transition: border-color 0.2s;
}
.form-control-dark:focus { background: rgba(15,23,42,0.8); border-color: var(--primary); color: #f1f5f9; box-shadow: 0 0 0 3px rgba(79,70,229,0.15); }
.form-control-dark::placeholder { color: #475569; }
.btn-auth {
    background: var(--gradient-1);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.8rem;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s;
}
.btn-auth:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(79,70,229,0.4); }
.auth-link { color: var(--primary-light); text-decoration: none; font-weight: 600; }
.auth-link:hover { color: var(--secondary); }
.auth-divider { border-color: rgba(255,255,255,0.08); margin: 1.5rem 0; }

/* =================== DASHBOARD =================== */
.dashboard-wrapper { display: flex; min-height: 100vh; background: var(--dark); }

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background: var(--darker);
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0; top: 0; bottom: 0;
    z-index: 100;
    overflow-y: auto;
    transition: transform 0.3s;
}
.sidebar-logo {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sidebar-logo-text { font-size: 1.4rem; font-weight: 800; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sidebar-section-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #334155; padding: 0.8rem 1.5rem 0.3rem; margin-top: 0.5rem; }
.sidebar-nav-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 1.5rem; color: #64748b; text-decoration: none; font-size: 0.875rem; font-weight: 700; transition: all 0.2s; border-radius: 0; }
.sidebar-nav-item:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }
.sidebar-nav-item.active { color: var(--primary-light); background: rgba(79,70,229,0.1); border-right: 3px solid var(--primary); }
.sidebar-nav-item i { width: 18px; text-align: center; font-size: 0.9rem; }
.sidebar-bottom { padding: 1rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); margin-top: auto; }
.sidebar-user-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--gradient-1); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: #fff; flex-shrink: 0; }

/* Main Content */
.dashboard-main {
    margin-left: var(--sidebar-width);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Topbar */
.dashboard-topbar {
    background: var(--darker);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0.85rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
}
.topbar-title { font-size: 1rem; font-weight: 600; color: var(--text-primary); }
.wallet-badge {
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.2);
    color: #34d399;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
}

/* Dashboard Cards */
.dash-content { padding: 2rem; flex: 1; }
.page-header { margin-bottom: 1.8rem; }
.page-title { font-size: 1.4rem; font-weight: 700; color: var(--text-primary); }
.page-subtitle { color: var(--text-secondary); font-size: 0.875rem; margin-top: 0.2rem; }

.welcome-card {
    background: linear-gradient(135deg, #4f46e5, #0284c7);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.welcome-card::after {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.welcome-title { font-size: 1.3rem; font-weight: 700; color: #fff; }
.welcome-sub { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-top: 0.3rem; }
.welcome-badge { background: rgba(255,255,255,0.15); color: #fff; padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.2s;
    height: 100%;
}
.stat-card:hover { border-color: rgba(79,70,229,0.3); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.stat-card-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}
.stat-card-icon.blue { background: rgba(79,70,229,0.15); color: #818cf8; }
.stat-card-icon.cyan { background: rgba(6,182,212,0.15); color: #22d3ee; }
.stat-card-icon.green { background: rgba(16,185,129,0.15); color: #34d399; }
.stat-card-icon.red { background: rgba(239,68,68,0.15); color: #f87171; }
.stat-label { font-size: 0.72rem; color: var(--text-secondary); font-weight: 500; }
.stat-value { font-size: 1.25rem; font-weight: 800; color: var(--text-primary); margin-top: 0.2rem; }

/* Dashboard Table */
.dash-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    overflow: hidden;
}
.dash-card-header {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dash-card-title { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); }
.dash-table { width: 100%; }
.dash-table th { background: rgba(255,255,255,0.03); color: var(--text-secondary); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; padding: 0.85rem 1.5rem; border-bottom: 1px solid var(--card-border); }
.dash-table td { padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.03); color: var(--text-primary); font-size: 0.875rem; vertical-align: middle; }
.dash-table tr:last-child td { border-bottom: none; }
.dash-table tr:hover td { background: rgba(255,255,255,0.02); }

/* Badges */
.badge-status-active { background: rgba(16,185,129,0.15); color: #34d399; padding: 0.3rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; border: 1px solid rgba(16,185,129,0.2); }
.badge-status-inactive { background: rgba(239,68,68,0.15); color: #f87171; padding: 0.3rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; border: 1px solid rgba(239,68,68,0.2); }
.badge-status-pending { background: rgba(245,158,11,0.15); color: #fbbf24; padding: 0.3rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; border: 1px solid rgba(245,158,11,0.2); }

/* Form Controls Dark */
.form-control-dark2 {
    background: rgba(15,23,42,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    transition: all 0.2s;
    width: 100%;
}
.form-control-dark2:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }
.form-control-dark2::placeholder { color: #475569; }

.btn-primary-custom {
    background: var(--gradient-1);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-primary-custom:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-outline-custom { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: var(--text-secondary); border-radius: 10px; padding: 0.65rem 1.2rem; font-size: 0.875rem; cursor: pointer; transition: all 0.2s; }
.btn-outline-custom:hover { border-color: var(--primary); color: var(--primary-light); }
.btn-danger-custom { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.2); border-radius: 8px; padding: 0.4rem 0.8rem; font-size: 0.8rem; cursor: pointer; transition: all 0.2s; }
.btn-danger-custom:hover { background: rgba(239,68,68,0.25); }
.btn-success-custom { background: rgba(16,185,129,0.15); color: #34d399; border: 1px solid rgba(16,185,129,0.2); border-radius: 8px; padding: 0.4rem 0.8rem; font-size: 0.8rem; cursor: pointer; transition: all 0.2s; }

/* API Key display */
.api-key-box {
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #34d399;
    word-break: break-all;
}

/* IP whitelist input */
.ip-chip { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(79,70,229,0.15); border: 1px solid rgba(79,70,229,0.2); color: #a5b4fc; border-radius: 6px; padding: 0.25rem 0.6rem; font-size: 0.8rem; margin: 0.2rem; }
.ip-chip button { background: none; border: none; color: #f87171; cursor: pointer; padding: 0; font-size: 0.75rem; }

/* Info boxes */
.info-box { background: rgba(6,182,212,0.08); border: 1px solid rgba(6,182,212,0.2); border-radius: 12px; padding: 1.2rem 1.5rem; }
.warning-box { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2); border-radius: 12px; padding: 1.2rem 1.5rem; }

/* Add Money Form */
.money-input-group { position: relative; }
.money-input-group .currency-symbol { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-secondary); font-weight: 600; }
.money-input-group input { padding-left: 2rem; }

/* Docs button */
.btn-docs { background: rgba(79,70,229,0.15); color: #818cf8; border: 1px solid rgba(79,70,229,0.2); border-radius: 8px; padding: 0.35rem 0.8rem; font-size: 0.8rem; text-decoration: none; font-weight: 600; transition: all 0.2s; }
.btn-docs:hover { background: rgba(79,70,229,0.25); color: #a5b4fc; }

/* Category pill */
.cat-pill { display: inline-block; background: rgba(6,182,212,0.1); color: #22d3ee; border-radius: 20px; padding: 0.2rem 0.6rem; font-size: 0.72rem; font-weight: 600; }

/* Admin sidebar override */
.admin-sidebar { background: #0a0f1e; }
.admin-sidebar .sidebar-nav-item.active { border-right-color: #f59e0b; color: #fbbf24; background: rgba(245,158,11,0.08); }

/* Page transitions */
.fade-in { animation: fadeIn 0.3s ease-in; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile toggle */
.sidebar-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.3rem; cursor: pointer; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* Responsive */
@media (max-width: 768px) {
    .sidebar { transform: translateX(-100%); }
    .sidebar.open { transform: translateX(0); }
    .dashboard-main { margin-left: 0; }
    .sidebar-toggle { display: block; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
}
