/* ==========================================================================
   MEOWQUESTER — Fintech/Crypto Redesigned Design System
   ========================================================================== */

/* ─── CSS Variables ─── */
:root {
    /* Color Palette */
    --bg-root: #04050d;
    --bg-navbar: rgba(4, 5, 13, 0.8);
    --bg-card: rgba(10, 12, 30, 0.35);
    --bg-card-hover: rgba(16, 19, 44, 0.5);
    --bg-input: rgba(6, 7, 20, 0.5);
    --bg-badge: rgba(255, 255, 255, 0.03);
    --bg-console: rgba(3, 4, 10, 0.55);

    /* Glass Borders */
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.03);
    --border-card: rgba(255, 255, 255, 0.07);
    --border-focus: rgba(0, 240, 255, 0.45);

    /* Text Colors */
    --text-1: #f3f4f6;
    --text-2: #9ca3af;
    --text-3: #4b5563;
    --text-muted: #8b92b6;
    --text-code: #a5b4fc;

    /* High-Vibrancy Neon Accents */
    --blue: #5850ec;
    --blue-dim: rgba(88, 80, 236, 0.12);
    --blue-glow: rgba(88, 80, 236, 0.25);
    
    --cyan: #00f0ff;
    --cyan-dim: rgba(0, 240, 255, 0.1);
    --cyan-glow: rgba(0, 240, 255, 0.35);

    --violet: #bd00ff;
    --violet-dim: rgba(189, 0, 255, 0.1);
    --violet-glow: rgba(189, 0, 255, 0.25);

    /* Status Colors */
    --green: #00ff66;
    --green-dim: rgba(0, 255, 102, 0.1);
    --green-glow: rgba(0, 255, 102, 0.25);
    
    --red: #ff3b5c;
    --red-dim: rgba(255, 59, 92, 0.1);
    --red-glow: rgba(255, 59, 92, 0.2);

    --amber: #ffaa00;
    --amber-dim: rgba(255, 170, 0, 0.1);

    /* Border Radii */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 14px;
    --r-xl: 18px;
    --r-2xl: 24px;

    /* Transitions */
    --t-fast: 0.15s ease;
    --t-med: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 0.4s ease;
}

/* ─── Reset & Base Settings ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background-image: linear-gradient(rgba(4, 5, 13, 0.72), rgba(4, 5, 13, 0.88)), url('assets/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-1);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

code {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-code);
    background: rgba(99, 102, 241, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.82em;
}

/* ─── Background Mesh Graphics ─── */
.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
}

.orb-1 {
    width: 800px; height: 800px;
    top: -200px; left: -200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.45) 0%, transparent 65%);
    animation: orb-drift-1 25s ease-in-out infinite alternate;
}

.orb-2 {
    width: 700px; height: 700px;
    bottom: -200px; right: -150px;
    background: radial-gradient(circle, rgba(189, 0, 255, 0.3) 0%, transparent 65%);
    animation: orb-drift-2 28s ease-in-out infinite alternate;
}

.orb-3 {
    width: 600px; height: 600px;
    top: 45%; left: 40%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 65%);
    animation: orb-drift-3 35s ease-in-out infinite alternate;
}

.mesh-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.3;
    mix-blend-mode: overlay;
}

@keyframes orb-drift-1 { 
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.05); }
}
@keyframes orb-drift-2 { 
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, -60px) scale(0.95); }
}
@keyframes orb-drift-3 { 
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-45%, -55%) scale(1.1); }
}

/* ─── Sticky Navbar Header ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: var(--bg-navbar);
    border-b: 1px solid var(--border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-ring {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--cyan), var(--violet), var(--cyan));
    animation: ring-spin 6s linear infinite;
    mask: radial-gradient(circle at center, transparent 61%, black 62%);
    -webkit-mask: radial-gradient(circle at center, transparent 61%, black 62%);
}

.logo-icon {
    position: relative;
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-1);
    letter-spacing: -0.4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--t-fast);
}

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

/* ─── App Main Layout ─── */
.app-root-landing {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 2rem 0;
    position: relative;
    z-index: 10;
}

/* ─── Typography & Accents ─── */
.gradient-text {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-1);
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ─── Standard Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.75rem 1.45rem;
    border-radius: var(--r-md);
    font-size: 0.875rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all var(--t-fast);
    white-space: nowrap;
    text-decoration: none;
}

.btn-sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.825rem;
    border-radius: var(--r-sm);
}

.btn-xs {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    border-radius: var(--r-sm);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--violet) 100%);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset, 0 4px 16px rgba(88, 80, 236, 0.3);
}

.btn-primary:hover:not(:disabled) {
    filter: brightness(1.15);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15) inset, 0 4px 24px rgba(88, 80, 236, 0.45);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-1);
    border: 1px solid var(--border);
}

.btn-secondary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-ghost {
    background: var(--bg-badge);
    color: var(--text-2);
    border: 1px solid var(--border);
}

.btn-ghost:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-1);
}

.btn-arrow-icon {
    width: 14px;
    height: 14px;
    transition: transform var(--t-fast);
}

.btn-primary:hover .btn-arrow-icon {
    transform: translateX(3px);
}

/* ─── Premium Glassmorphism Card ─── */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--r-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.25), inset 0 1px 1px 0 rgba(255, 255, 255, 0.05);
    transition: border-color var(--t-med), box-shadow var(--t-med), transform var(--t-med), background var(--t-med);
}

.glass-card-hover:hover {
    transform: translateY(-3px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 45px 0 rgba(0, 0, 0, 0.35), inset 0 1px 1px 0 rgba(255, 255, 255, 0.08);
}

/* ─── 1. Hero Layout ─── */
.hero-section {
    padding: 5rem 0 4rem;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 840px;
    margin: 0 auto;
    gap: 2rem;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.15);
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 1.5rem;
    letter-spacing: 0.2px;
}

.tag-dot {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--text-1);
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-indicators {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.hi-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.hi-item svg {
    width: 18px;
    height: 18px;
    color: var(--cyan);
}

/* Hero Line Chart Card */
.hero-right {
    position: relative;
}

.chart-preview-card {
    padding: 1.5rem;
    position: relative;
    z-index: 5;
    background: rgba(10, 12, 30, 0.45);
}

.cpc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cpc-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-1);
}

.cpc-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 1px;
}

.cpc-stats {
    text-align: right;
}

.cpc-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-1);
}

.cpc-pct {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--cyan);
    margin-top: 1px;
}

.cpc-chart {
    height: 120px;
    position: relative;
    margin-bottom: 1rem;
}

.cpc-chart-svg {
    width: 100%;
    height: 100%;
}

.cpc-ranges {
    display: flex;
    gap: 0.4rem;
}

.cpc-range {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-3);
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--t-fast);
}

.cpc-range:hover {
    color: var(--text-2);
}

.cpc-range.active {
    background: var(--blue-dim);
    color: var(--cyan);
    border: 1px solid rgba(0, 240, 255, 0.15);
}

/* Floating Absolute cards */
.absolute-card {
    position: absolute;
    background: rgba(10, 12, 30, 0.75);
    border: 1px solid var(--border-card);
    border-radius: var(--r-md);
    padding: 0.75rem 1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10;
}

.ac-content {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.ac-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
}

.icon-discord { background: #5865F2; }
.icon-terminal { background: #00f0ff; }

.ac-ticker { font-size: 0.7rem; color: var(--text-muted); }
.ac-val { font-size: 0.85rem; font-weight: 700; color: var(--text-1); }

.card-discord {
    top: -1.5rem;
    right: -1.5rem;
}

.card-terminal {
    bottom: -1.5rem;
    left: -1.5rem;
}

.glow-cyan {
    box-shadow: 0 8px 32px rgba(0, 240, 255, 0.2), 0 0 15px rgba(0, 240, 255, 0.1);
}

.glow-violet {
    box-shadow: 0 8px 32px rgba(189, 0, 255, 0.15), 0 0 15px rgba(189, 0, 255, 0.08);
}

/* ─── 2. Metrics Grid ─── */
.metrics-section {
    padding: 3rem 0;
}

.metrics-card {
    padding: 2.25rem;
    background: rgba(10, 12, 30, 0.25);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.metric-item {
    text-align: center;
}

.metric-item + .metric-item {
    border-left: 1px solid var(--border-light);
}

.metric-val {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-1);
}

.metric-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ─── 3. Features Grid ─── */
.features-section {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.feature-card {
    padding: 2rem;
}

.feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--blue-dim);
    border: 1px solid rgba(88, 80, 236, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    margin-bottom: 1.25rem;
}

.feature-icon-box svg {
    width: 20px;
    height: 20px;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-1);
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ─── 4. Security Highlights Layout ─── */
.security-section {
    padding: 6rem 0;
    position: relative;
}

.grid-layout-2 {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
}

.tag-primary {
    background: rgba(88, 80, 236, 0.08);
    border-color: rgba(88, 80, 236, 0.15);
    color: var(--text-code);
}

.inline-shield {
    width: 14px;
    height: 14px;
    color: var(--blue);
}

.security-bullets {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sb-item {
    display: flex;
    gap: 1rem;
}

.sb-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    flex-shrink: 0;
}

.sb-icon svg {
    width: 20px;
    height: 20px;
}

.sb-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 0.2rem;
}

.sb-desc {
    font-size: 0.825rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.security-right {
    position: relative;
}

.security-stats-card {
    padding: 2.5rem;
}

.shield-globe-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2.25rem;
}

.shield-globe {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--cyan-dim) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    position: relative;
}

.shield-globe svg {
    width: 48px;
    height: 48px;
}

.ssc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ssc-item {
    text-align: center;
    padding: 0.85rem;
    background: rgba(3, 4, 10, 0.4);
    border-radius: var(--r-md);
    border: 1px solid var(--border-light);
}

.ssc-val {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 0.15rem;
}

.ssc-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ─── 5. Control Center / Interactive App ─── */
.terminal-section {
    padding: 6rem 0;
}

/* Terminal Status Bar */
.terminal-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 1.75rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    background: rgba(10, 12, 30, 0.4);
    border: 1px solid var(--border-card);
    border-radius: var(--r-xl);
    gap: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.2), inset 0 1px 1px 0 rgba(255, 255, 255, 0.03);
}

.tsb-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tsb-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.gsb-dot {
    width: 8px;
    height: 8px;
    background: var(--text-3);
    border-radius: 50%;
    transition: background var(--t-fast), box-shadow var(--t-fast);
}

.gsb-dot.active {
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    animation: pulse-dot 1.2s infinite;
}

.gsb-dot.success {
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
}

.gsb-dot.error {
    background: var(--red);
    box-shadow: 0 0 8px var(--red);
    animation: pulse-dot 1.5s infinite;
}

.overall-status-text {
    font-size: 0.825rem;
    font-weight: 700;
    color: var(--text-2);
}

.tsb-stats {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.tsb-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.tsb-stat-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-1);
    line-height: 1.2;
}

.tsb-stat-val.val-active { color: var(--cyan); }
.tsb-stat-val.val-completed { color: var(--green); }
.tsb-stat-val.val-failed { color: var(--red); }

.tsb-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

@media (max-width: 768px) {
    .terminal-status-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        padding: 1.25rem;
    }
    .tsb-status {
        justify-content: space-between;
    }
    .tsb-stats {
        justify-content: space-between;
        gap: 1rem;
    }
    .tsb-stat-item {
        align-items: center;
        flex: 1;
    }
}

/* Bento Terminal Panels */
.bento-container-terminal {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
    margin-bottom: 2rem;
}

.bento-panel-terminal {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--r-xl);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.25), inset 0 1px 1px 0 rgba(255, 255, 255, 0.05);
    transition: border-color var(--t-med), box-shadow var(--t-med), background var(--t-med);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bento-panel-terminal:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 45px 0 rgba(0, 0, 0, 0.35), inset 0 1px 1px 0 rgba(255, 255, 255, 0.08);
}

.bento-panel-terminal:focus-within {
    border-color: rgba(0, 240, 255, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 
                0 0 30px rgba(0, 240, 255, 0.15), 
                inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.bpt-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.015);
    min-height: 58px;
}

.bpt-icon-box {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--blue-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    flex-shrink: 0;
}

.bpt-icon-box svg {
    width: 15px;
    height: 15px;
}

.bpt-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.2;
}

.bpt-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 1px;
}

.terminal-controls {
    margin-left: auto;
    display: flex;
    gap: 0.5rem;
}

/* Bento Panel specifics */
.token-textarea {
    display: block;
    width: calc(100% - 2.5rem) !important;
    margin: 0 1.25rem 1.25rem !important;
    background: rgba(4, 5, 12, 0.55) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: var(--r-md);
    outline: none;
    resize: none;
    padding: 1.25rem;
    color: var(--text-1) !important;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.825rem;
    line-height: 1.65;
    min-height: 220px;
    max-height: 280px;
    caret-color: var(--cyan);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.35);
    transition: border-color var(--t-med), box-shadow var(--t-med);
}

.token-textarea:hover:not(:focus) {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.token-textarea:focus {
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.45);
}

.token-textarea:-webkit-autofill,
.token-textarea:-webkit-autofill:hover,
.token-textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text-1) !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(4, 5, 12, 0.95) inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

.token-textarea::placeholder {
    color: var(--text-3);
    opacity: 0.8;
}

.global-activity-console {
    background: rgba(3, 4, 8, 0.45) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: var(--r-md);
    margin: 0 1.25rem 1.25rem !important;
    height: 220px;
    padding: 1.1rem;
    overflow-y: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    line-height: 1.65;
    color: var(--text-2) !important;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.35);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.05) transparent;
}

.global-activity-console::-webkit-scrollbar {
    width: 4px;
}

.global-activity-console::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}

.token-counter {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cyan);
    background: var(--cyan-dim);
    border: 1px solid rgba(0, 240, 255, 0.15);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.08);
}

/* Active workers list wrap */
.terminal-workers-wrap {
    margin-top: 1.5rem;
}

.tw-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.5rem;
}

.tw-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tw-btn-clear {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-3);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3rem 0.65rem;
    border-radius: var(--r-sm);
    font-family: inherit;
    transition: color var(--t-fast), background var(--t-fast);
}

.tw-btn-clear:hover {
    color: var(--red);
    background: var(--red-dim);
}

.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.25rem;
}

/* ─── Active Worker Card ─── */
.account-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--r-xl);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med), background var(--t-med);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3), inset 0 1px 1px 0 rgba(255, 255, 255, 0.05);
    animation: card-appear 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Card Laser Scan Line */
.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), var(--blue), transparent);
    opacity: 0;
    z-index: 10;
    pointer-events: none;
}

.account-card.state-running .scanner-line {
    animation: laser-sweep 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    opacity: 1;
}

.account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.account-card:hover {
    transform: translateY(-3px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.5), inset 0 1px 1px 0 rgba(255, 255, 255, 0.1);
}

/* State card glows */
.account-card.state-loading { border-color: rgba(0, 240, 255, 0.2); }
.account-card.state-running {
    border-color: rgba(0, 240, 255, 0.35);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.12), 0 8px 32px 0 rgba(0, 0, 0, 0.35), inset 0 1px 1px 0 rgba(255, 255, 255, 0.05);
}
.account-card.state-success {
    border-color: rgba(0, 255, 102, 0.25);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.1), 0 8px 32px 0 rgba(0, 0, 0, 0.35), inset 0 1px 1px 0 rgba(255, 255, 255, 0.05);
}
.account-card.state-error {
    border-color: rgba(255, 59, 92, 0.25);
    box-shadow: 0 0 20px rgba(255, 59, 92, 0.08), 0 8px 32px 0 rgba(0, 0, 0, 0.35), inset 0 1px 1px 0 rgba(255, 255, 255, 0.05);
}

/* Card User details layout */
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.card-user {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
}

.card-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.card-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.card-avatar-letter {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.card-avatar-ring {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--cyan), var(--violet), var(--cyan));
    z-index: -1;
    display: none;
}

.account-card.state-running .card-avatar-ring {
    display: block;
    animation: ring-spin 3s linear infinite;
}

.card-user-info { min-width: 0; }
.card-username {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-token {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 1px;
}

/* Status Chips */
.card-status-chip {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--bg-badge);
    border-radius: 20px;
    padding: 0.25rem 0.65rem;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-3);
    transition: background var(--t-fast);
}

.chip-text {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-3);
    white-space: nowrap;
}

.state-loading .chip-dot { background: var(--cyan); box-shadow: 0 0 6px var(--cyan); animation: pulse-dot 1.5s infinite; }
.state-loading .chip-text { color: var(--cyan); }
.state-running .chip-dot { background: var(--cyan); box-shadow: 0 0 6px var(--cyan); animation: pulse-dot 1.2s infinite; }
.state-running .chip-text { color: var(--cyan); }
.state-success .chip-dot { background: var(--green); box-shadow: 0 0 6px var(--green); }
.state-success .chip-text { color: var(--green); }
.state-error .chip-dot { background: var(--red); box-shadow: 0 0 6px var(--red); }
.state-error .chip-text { color: var(--red); }

/* Card Quest logs */
.card-quests {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: var(--r-lg);
    padding: 0.85rem;
}

.quest-placeholder-text {
    font-size: 0.8rem;
    color: var(--text-3);
    text-align: center;
    padding: 0.4rem 0;
    font-weight: 500;
}

.quest-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.quest-row + .quest-row { border-top: 1px solid rgba(255, 255, 255, 0.03); padding-top: 0.65rem; }

.quest-row-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
}

.quest-name {
    font-size: 0.825rem;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.35;
    flex: 1;
    min-width: 0;
}
.quest-row-success .quest-name { color: var(--green); }
.quest-row-failed .quest-name { color: var(--red); }

.quest-task-tag {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--blue);
    background: var(--blue-dim);
    border: 1px solid rgba(88, 80, 236, 0.15);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.quest-time-badge {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-3);
    background: var(--bg-badge);
    border: 1px solid var(--border);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    transition: all var(--t-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}
.quest-row-success .quest-time-badge { color: var(--green); background: var(--green-dim); border-color: rgba(0, 255, 102, 0.15); }
.quest-row-failed .quest-time-badge { color: var(--red); background: var(--red-dim); border-color: rgba(255, 59, 92, 0.15); }

/* Progress bar inside cards */
.quest-progress {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.progress-track {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.01);
}

.progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
    animation: shimmer 2.2s infinite;
}

.quest-row-success .progress-fill { background: var(--green); }
.quest-row-success .progress-fill::after { display: none; }
.quest-row-failed .progress-fill { background: var(--red); }
.quest-row-failed .progress-fill::after { display: none; }

.progress-pct {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-3);
    font-variant-numeric: tabular-nums;
    min-width: 30px;
    text-align: right;
}
.quest-row-success .progress-pct { color: var(--green); }

/* Card Console Logs */
.card-console {
    background: rgba(4, 4, 8, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: var(--r-lg);
    padding: 0.65rem 0.85rem;
    height: 105px;
    overflow-y: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    line-height: 1.6;
    color: var(--text-3);
    display: flex;
    flex-direction: column;
    gap: 1px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.05) transparent;
}
.card-console::-webkit-scrollbar { width: 3px; }
.card-console::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.06); border-radius: 2px; }

.log-line { display: flex; gap: 0.5rem; align-items: baseline; }
.log-ts { color: rgba(255, 255, 255, 0.15); flex-shrink: 0; font-variant-numeric: tabular-nums; }
.log-text { word-break: break-all; }
.log-info { color: var(--text-2); }
.log-success { color: var(--green); }
.log-danger { color: var(--red); }
.log-warning { color: var(--amber); }

/* ─── 6. Empty State ─── */
.empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.06);
    border-radius: var(--r-2xl);
    background: rgba(255, 255, 255, 0.005);
    gap: 1.25rem;
}

.es-illustration {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 0.5rem;
}

.es-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 24px rgba(99, 102, 241, 0.25);
    animation: logo-breathe 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.es-rings { position: absolute; inset: 0; }
.es-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 240, 255, 0.1);
    animation: ring-expand 3.5s ease-in-out infinite;
}
.r1 { inset: -5px; animation-delay: 0s; }
.r2 { inset: -18px; animation-delay: 0.6s; border-color: rgba(99, 102, 241, 0.06); }
.r3 { inset: -32px; animation-delay: 1.2s; border-color: rgba(189, 0, 255, 0.03); }

.empty-state h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-1); letter-spacing: -0.3px; }
.empty-state p { font-size: 0.85rem; color: var(--text-3); max-width: 380px; line-height: 1.6; }

/* ─── 7. Footer Layout ─── */
.footer-section {
    border-top: 1px solid var(--border);
    padding: 6rem 0 3rem;
    margin-top: 6rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.ft-brand {
    max-width: 320px;
}

.ft-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 1rem;
}

.ft-links-group {
    display: flex;
    gap: 5rem;
}

.ft-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1.25rem;
}

.ft-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ft-link-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--t-fast);
}

.ft-link-item:hover {
    color: var(--text-1);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.fb-copyright {
    font-size: 0.8rem;
    color: var(--text-3);
}

.fb-links {
    display: flex;
    gap: 1.5rem;
}

.fb-link {
    font-size: 0.8rem;
    color: var(--text-3);
    text-decoration: none;
    transition: color var(--t-fast);
}

.fb-link:hover {
    color: var(--text-2);
}

/* ─── Shared Animations ─── */
@keyframes ring-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes laser-sweep {
    0% { top: 0%; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ─── Global Scrollbar ─── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.08); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.12); }

/* ─── Responsive Media Queries ─── */
@media (max-width: 1200px) {
    .hero-container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-desc { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .hero-indicators { justify-content: center; }
    .hero-right { max-width: 500px; margin: 0 auto; }
    
    .grid-layout-2 { grid-template-columns: 1fr; gap: 3.5rem; }
    .security-right { max-width: 450px; margin: 0 auto; }
    
    .bento-container-terminal { grid-template-columns: 1fr; }
    .ft-links-group { gap: 3.5rem; }
}

@media (max-width: 900px) {
    .navbar { height: 64px; }
    .nav-links { display: none; } /* collapse links to simplify mobile look */
    .app-root-landing { padding-top: 64px; }
    .metrics-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .metric-item + .metric-item { border-left: none; }
    .footer-top { flex-direction: column; gap: 3rem; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.25rem; }
    .metrics-grid { grid-template-columns: 1fr; }
    .accounts-grid { grid-template-columns: 1fr; }
    .bpt-header { flex-direction: column; align-items: flex-start; gap: 0.65rem; }
    .terminal-controls { margin-left: 0; width: 100%; justify-content: space-between; }
    .nav-container, .app-root-landing, .tw-header, .ft-links-group { padding-left: 1rem; padding-right: 1rem; }
    .ft-links-group { flex-direction: column; gap: 2rem; }
}

/* ─── Secure Lock Screen Overlay ─── */
.terminal-interactive-wrapper {
    position: relative;
    border-radius: var(--r-xl);
}

.terminal-lock-screen {
    position: absolute;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(4, 5, 13, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: opacity var(--t-med), visibility var(--t-med);
    border-radius: var(--r-xl);
    border: 1px dashed rgba(0, 240, 255, 0.15);
}

.lock-card {
    max-width: 440px;
    width: 90%;
    padding: 2.5rem;
    text-align: center;
    background: rgba(10, 12, 30, 0.75) !important;
    border-color: rgba(0, 240, 255, 0.25) !important;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 240, 255, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.lock-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-1);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.lock-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.lock-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lock-input {
    width: 100%;
    background: rgba(4, 5, 12, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-md);
    padding: 0.85rem 1.25rem;
    color: var(--text-1);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    outline: none;
    text-align: center;
    letter-spacing: 2px;
    transition: all var(--t-fast);
}

.lock-input:focus {
    border-color: rgba(0, 240, 255, 0.35);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.08), inset 0 1px 4px rgba(0, 0, 0, 0.5);
}

.btn-login-submit {
    padding: 0.85rem;
}

.login-error-msg {
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 1rem;
    min-height: 1.2em;
}

/* Padlock pulse animation */
.lock-chains-graphic {
    animation: lock-glow 4s ease-in-out infinite alternate;
}

@keyframes lock-glow {
    0% { filter: drop-shadow(0 0 2px rgba(0, 240, 255, 0.15)); }
    100% { filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.45)); }
}

/* ─── Admin Panel Layout & Key Table ─── */
.admin-keys-list {
    margin: 0 1.25rem 1.25rem;
    background: rgba(3, 4, 8, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--r-md);
    height: 220px;
    overflow-y: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.05) transparent;
}

.admin-keys-list::-webkit-scrollbar { width: 4px; }
.admin-keys-list::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.08); border-radius: 2px; }

.key-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    transition: background var(--t-fast);
}

.key-list-item:hover {
    background: rgba(255, 255, 255, 0.015);
}

.key-text {
    color: var(--text-muted);
    user-select: all;
    font-weight: 500;
}

.btn-revoke-key {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--red);
    opacity: 0.6;
    transition: opacity var(--t-fast), transform var(--t-fast);
    padding: 0.2rem;
}

.btn-revoke-key:hover {
    opacity: 1;
    transform: scale(1.1);
}

.admin-keys-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-3);
    font-size: 0.8rem;
    font-weight: 500;
}

