/* =========================================
   DEEPLEX CLOUD - LIQUID GLASS DESIGN SYSTEM
   ========================================= */

:root {
    /* Liquid Colors */
    --liquid-bg-start: #f8faff;
    --liquid-bg-mid: #eef2ff;
    --liquid-bg-end: #f1f5f9;
    
    --accent: #6c5ce7;
    --accent-dark: #4834d4;
    --accent-glow: rgba(108, 92, 231, 0.4);
    
    --text-main: #1a1a2e;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    /* Semantic */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* Glass Properties */
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-bg-solid: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-highlight: rgba(255, 255, 255, 0.95);
    
    /* Geometry */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 9999px;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background: radial-gradient(circle at top left, var(--liquid-bg-start) 0%, var(--liquid-bg-mid) 40%, var(--liquid-bg-end) 100%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin: 0;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Utilities */
.lq-text-accent { color: var(--accent); }
.lq-font-display { font-family: var(--font-display); }
.lq-font-body { font-family: var(--font-body); }
.lq-shadow-sm { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02); }
.lq-shadow-md { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03); }

/* =========================================
   GLASS PANELS & CARDS
   ========================================= */

.lq-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.02),
        0 10px 20px -5px rgba(108, 92, 231, 0.05),
        inset 0 1px 1px rgba(255,255,255,0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lq-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.lq-card:hover {
    background: var(--glass-highlight);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -10px rgba(108, 92, 231, 0.15);
}

/* =========================================
   BUTTONS
   ========================================= */

.lq-btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem; padding: 0.875rem 1.5rem;
    font-family: var(--font-display); font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.75rem;
    border-radius: var(--radius-pill); border: none; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lq-btn:active { transform: scale(0.96); }

.lq-btn-sm { padding: 0.5rem 1rem; font-size: 0.65rem; }
.lq-btn-lg { padding: 1.25rem 2.5rem; font-size: 0.85rem; }

.lq-btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    box-shadow: 0 10px 25px -5px var(--accent-glow), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.lq-btn-primary:hover {
    box-shadow: 0 15px 35px -5px var(--accent-glow);
    filter: brightness(1.1);
}

.lq-btn-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.lq-btn-glass:hover {
    background: var(--glass-highlight);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.05);
}

.lq-btn-dark {
    background: var(--text-main);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(26, 26, 46, 0.4);
}

.lq-btn-dark:hover {
    background: #2a2a4a;
    box-shadow: 0 15px 35px -5px rgba(26, 26, 46, 0.5);
}

.lq-btn-icon {
    width: 40px; height: 40px; padding: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-md); background: var(--glass-bg);
    border: 1px solid var(--glass-border); color: var(--text-muted);
    transition: all 0.2s ease; cursor: pointer;
}

.lq-btn-icon:hover {
    color: var(--accent); background: var(--glass-highlight);
}

/* =========================================
   INPUTS & FORMS
   ========================================= */

.lq-form-group {
    display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem;
}

.lq-label {
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-display); font-size: 0.65rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted);
    margin-left: 0.5rem;
}

.lq-input {
    width: 100%; background: rgba(255, 255, 255, 0.6);
    border: 2px solid var(--glass-border); padding: 1rem 1.25rem;
    border-radius: var(--radius-md); font-family: var(--font-body);
    font-size: 0.95rem; color: var(--text-main); font-weight: 500;
    transition: all 0.3s ease; box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.lq-input:focus {
    outline: none; background: var(--glass-highlight);
    border-color: var(--accent); box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.15);
}

.lq-input::placeholder { color: var(--text-light); }

/* Login Box Component */
.lq-login-box {
    position: relative;
    padding: 3rem;
}

.lq-login-tag {
    position: absolute; top: -12px; right: 40px;
    background: var(--text-main); color: white;
    padding: 0.35rem 1rem; border-radius: var(--radius-pill);
    font-size: 0.55rem; font-weight: 900; text-transform: uppercase;
    letter-spacing: 0.2em; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* =========================================
   ALERTS / NOTIFICATIONS
   ========================================= */

.lq-alert {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.25rem; border-radius: var(--radius-lg);
    background: var(--glass-bg); backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 20px -5px rgba(0,0,0,0.05);
    margin-bottom: 1rem; position: relative; overflow: hidden;
}

.lq-alert::before {
    content: ''; position: absolute; left: 0; top: 0; width: 6px; height: 100%;
}

.lq-alert-info::before { background: var(--info); }
.lq-alert-success::before { background: var(--success); }
.lq-alert-warning::before { background: var(--warning); }
.lq-alert-error::before { background: var(--error); }
.lq-alert-premium::before { background: linear-gradient(to bottom, var(--accent), var(--accent-dark)); }

.lq-alert-icon {
    width: 32px; height: 32px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: white; flex-shrink: 0; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.lq-alert-info .lq-alert-icon { background: var(--info); }
.lq-alert-success .lq-alert-icon { background: var(--success); }
.lq-alert-warning .lq-alert-icon { background: var(--warning); }
.lq-alert-error .lq-alert-icon { background: var(--error); }
.lq-alert-premium .lq-alert-icon { background: var(--accent); }

.lq-alert-content { flex: 1; }
.lq-alert-title { font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; margin-bottom: 0.25rem; }
.lq-alert-msg { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* Compact inline error (for forms) */
.lq-alert-inline {
    background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-md); padding: 1rem; display: flex; gap: 0.75rem;
    margin-bottom: 1.5rem; color: #991b1b; font-size: 0.8rem; font-weight: 500;
}

/* =========================================
   BADGES & CHIPS
   ========================================= */

.lq-chip {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.35rem 0.875rem; background: var(--glass-bg-solid);
    border: 1px solid var(--glass-border); border-radius: var(--radius-pill);
    font-family: var(--font-display); font-size: 0.65rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02); transition: all 0.2s ease; cursor: pointer;
}

.lq-chip:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

.lq-chip-active {
    background: rgba(108, 92, 231, 0.1); border-color: rgba(108, 92, 231, 0.2);
    color: var(--accent);
}

.lq-dot { width: 8px; height: 8px; border-radius: 50%; }
.lq-dot-success { background: var(--success); box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); }
.lq-dot-warning { background: var(--warning); box-shadow: 0 0 8px rgba(245, 158, 11, 0.6); }

/* Status Badges (Filled) */
.lq-badge {
    font-size: 0.55rem; font-weight: 900; padding: 0.2rem 0.5rem; 
    border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: 0.15em;
    display: inline-flex; align-items: center; gap: 0.25rem;
}
.lq-badge-success { background: #d1fae5; color: #047857; }
.lq-badge-error { background: #fee2e2; color: #b91c1c; }
.lq-badge-warning { background: #fef3c7; color: #b45309; }

/* =========================================
   TABLES & LISTS
   ========================================= */

.lq-table-wrapper {
    background: var(--glass-bg); backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
    overflow-x: auto; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}

.lq-table { width: 100%; border-collapse: collapse; }

.lq-table th {
    background: rgba(255, 255, 255, 0.4); padding: 1.25rem 1.5rem;
    text-align: left; font-family: var(--font-display); font-size: 0.7rem;
    font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--text-light); border-bottom: 1px solid var(--glass-border);
}

.lq-table td {
    padding: 1.25rem 1.5rem; font-size: 0.9rem; color: var(--text-main);
    border-bottom: 1px solid rgba(255,255,255,0.4); transition: background 0.2s ease;
}

.lq-table tr:last-child td { border-bottom: none; }
.lq-table tr:hover td { background: rgba(255, 255, 255, 0.6); }

/* =========================================
   APP LAYOUT (Sidebar & Main)
   ========================================= */
.lq-app-layout {
    display: flex; height: 100vh; overflow: hidden;
}

.lq-sidebar {
    width: 320px; flex-shrink: 0;
    background: var(--glass-bg); border-right: 1px solid var(--glass-border);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    display: flex; flex-direction: column; z-index: 30;
}

.lq-sidebar-header {
    padding: 2rem; display: flex; align-items: center; gap: 1rem;
}

.lq-sidebar-nav {
    flex: 1; overflow-y: auto; padding: 0 1rem;
}

.lq-nav-group { margin-bottom: 2rem; }
.lq-nav-title {
    font-family: var(--font-display); font-size: 0.65rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-light);
    padding: 0 1rem; margin-bottom: 0.75rem;
}

.lq-nav-item {
    display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem;
    border-radius: var(--radius-md); color: var(--text-muted); font-weight: 500;
    font-size: 0.9rem; transition: all 0.2s ease; cursor: pointer; text-decoration: none;
}

.lq-nav-item:hover {
    background: rgba(255,255,255,0.6); color: var(--text-main);
}

.lq-nav-item.active {
    background: rgba(255,255,255,0.8); color: var(--accent);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02); font-weight: 600;
}

.lq-main {
    flex: 1; display: flex; flex-direction: column; min-width: 0; /* min-width 0 prevents flex overflow */
    position: relative; transition: all 0.5s ease;
}

.lq-header {
    height: 80px; flex-shrink: 0;
    background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem; z-index: 20;
}

.lq-content {
    flex: 1; overflow-y: auto; padding: 2rem; position: relative;
}

/* =========================================
   CHAT BUBBLES
   ========================================= */
.lq-chat-container {
    width: 100%; max-width: 96%; margin: 0 auto;
    display: flex; flex-direction: column; gap: 2.5rem;
}

.lq-chat-row { display: flex; gap: 1.25rem; align-items: flex-end; }
.lq-chat-row.right { flex-direction: row-reverse; }

.lq-chat-avatar {
    width: 40px; height: 40px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 0.8rem;
    flex-shrink: 0; box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 2px solid white;
}

.lq-chat-row.left .lq-chat-avatar { background: var(--accent); color: white; }
.lq-chat-row.right .lq-chat-avatar { background: var(--text-main); color: white; }

.lq-bubble-wrapper { display: flex; flex-direction: column; max-width: 85%; width: 100%; }
.lq-chat-row.right .lq-bubble-wrapper { align-items: flex-end; max-width: 70%; }

.lq-bubble { padding: 1.5rem; font-size: 1rem; line-height: 1.6; }

.lq-bubble-left {
    background: var(--glass-highlight); border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg); border-bottom-left-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); color: var(--text-main);
}

.lq-bubble-right {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-sm);
    box-shadow: 0 10px 25px -5px var(--accent-glow); color: white;
}

.lq-chat-meta {
    font-family: var(--font-display); font-size: 0.65rem; font-weight: 800;
    color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em;
    margin-top: 0.5rem; display: flex; align-items: center; gap: 0.5rem;
}

/* Chat Input */
.lq-chat-input-area {
    padding: 2rem; flex-shrink: 0;
    background: rgba(255,255,255,0.4); backdrop-filter: blur(12px);
    border-top: 1px solid var(--glass-border); z-index: 20;
}

.lq-chat-input-box {
    background: var(--glass-bg); border: 2px solid var(--glass-border);
    border-radius: var(--radius-lg); padding: 0.5rem;
    display: flex; align-items: flex-end; gap: 0.5rem;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05); transition: all 0.3s ease;
}
.lq-chat-input-box:focus-within {
    background: var(--glass-highlight); border-color: var(--accent);
    box-shadow: 0 15px 40px -10px rgba(108, 92, 231, 0.15);
}

.lq-chat-textarea {
    flex: 1; background: transparent; border: none; outline: none;
    resize: none; padding: 1rem; font-family: var(--font-body); font-size: 1rem;
    color: var(--text-main); max-height: 200px;
}

/* =========================================
   FLOATING CONTEXT PANEL (Lex Hub / Files)
   ========================================= */
.lq-context-panel {
    position: fixed; right: 2rem; top: 2rem; bottom: 2rem; width: 360px;
    background: var(--glass-highlight); border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl); box-shadow: 0 20px 50px -10px rgba(0,0,0,0.15);
    display: flex; flex-direction: column; overflow: hidden;
    border-top: 4px solid var(--accent); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
    z-index: 50;
}

.lq-context-closed { transform: translateX(calc(100% + 3rem)); opacity: 0; pointer-events: none; }

.lq-context-header {
    padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--glass-border); background: rgba(255,255,255,0.6);
    display: flex; justify-content: space-between; align-items: center; flex-shrink: 0;
}

.lq-context-body { padding: 1.25rem; flex: 1; overflow-y: auto; }

/* ─── Upload zone ─── */
.lq-upload-zone {
    border: 2px dashed var(--glass-border); border-radius: var(--radius-lg);
    padding: 1.75rem 1rem; text-align: center; cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: rgba(255,255,255,0.3); margin-bottom: 0.75rem;
}
.lq-upload-zone:hover, .lq-upload-zone.drag-over {
    border-color: var(--accent); background: rgba(108,92,231,0.06);
}
.lq-upload-zone .upload-icon { color: var(--accent); opacity: 0.7; margin-bottom: 0.5rem; }
.lq-upload-zone .upload-label { font-size: 0.85rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.25rem; }
.lq-upload-zone .upload-label span { color: var(--accent); text-decoration: underline; }
.lq-upload-zone .upload-hint { font-size: 0.7rem; color: var(--text-muted); }
.lq-upload-zone .upload-selected { font-size: 0.75rem; font-weight: 700; color: var(--accent); margin-top: 0.5rem; display: none; }


/* =========================================
   LEX SEARCH HERO (Database Landing)
   ========================================= */
.lq-lex-hero {
    background: linear-gradient(135deg, rgba(26,26,46,0.9), rgba(15,15,30,0.95));
    border-radius: var(--radius-xl); padding: 3rem; position: relative;
    overflow: hidden; margin-bottom: 3rem; box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2);
}

.lq-lex-hero::before {
    content: ''; position: absolute; right: -50px; top: -50px;
    width: 300px; height: 300px; background: var(--accent);
    border-radius: 50%; filter: blur(80px); opacity: 0.4;
}

.lq-lex-hero-title { color: white; font-size: 2.5rem; margin-bottom: 0.5rem; position: relative; z-index: 2; font-family: var(--font-display); font-weight: 900; letter-spacing: -0.02em; }
.lq-lex-hero-desc { color: rgba(255,255,255,0.7); font-size: 1rem; position: relative; z-index: 2; }

/* Stats grid */
.lq-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 2.5rem; }
.lq-stat-card { padding: 1.5rem; display: flex; align-items: center; gap: 1.25rem; border-radius: 20px; }
.lq-stat-icon { width: 48px; height: 48px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: rgba(108, 92, 231, 0.1); color: var(--accent); }
.lq-stat-value { font-family: var(--font-display); font-size: 1.75rem; font-weight: 900; line-height: 1; margin-bottom: 0.25rem; color: var(--text-main); }
.lq-stat-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }


/* =========================================
   PRICING & SCORES (Landing Page Features)
   ========================================= */

/* Pricing */
.lq-pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem; align-items: center;
}

.lq-pricing-card { padding: 2.5rem; }

.lq-pricing-premium {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 30, 0.95) 100%);
    border: 1px solid rgba(108, 92, 231, 0.5); color: white;
    box-shadow: 0 25px 50px -12px rgba(108, 92, 231, 0.25);
    transform: scale(1.05); position: relative;
}

.lq-pricing-premium:hover {
    transform: scale(1.07); border-color: var(--accent);
    box-shadow: 0 30px 60px -15px rgba(108, 92, 231, 0.4);
}

.lq-pricing-header {
    margin-bottom: 2rem; border-bottom: 1px solid var(--glass-border); padding-bottom: 1.5rem;
}
.lq-pricing-premium .lq-pricing-header { border-bottom-color: rgba(255, 255, 255, 0.1); }

.lq-pricing-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; margin-bottom: 0.5rem; }
.lq-pricing-price { font-family: var(--font-display); font-size: 3rem; font-weight: 900; letter-spacing: -0.05em; display: flex; align-items: baseline; gap: 0.5rem; }
.lq-pricing-period { font-family: var(--font-body); font-size: 0.875rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.lq-pricing-premium .lq-pricing-period { color: rgba(255, 255, 255, 0.6); }

.lq-pricing-features { list-style: none; margin-bottom: 2.5rem; }
.lq-pricing-feature { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.95rem; font-weight: 500; }
.lq-pricing-feature i { color: var(--accent); margin-top: 3px; }
.lq-pricing-premium .lq-pricing-feature i { color: #8172ea; }

/* AI Exam Scores */
.lq-score-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.lq-score-agent { font-family: var(--font-display); font-size: 1.125rem; font-weight: 800; margin-bottom: 0.25rem; color: var(--text-main); }
.lq-score-exam { font-size: 0.65rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; display: block; }
.lq-score-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 0.5rem; }
.lq-score-bar-bg { width: 100%; height: 8px; background: rgba(255,255,255,0.6); border-radius: 999px; overflow: hidden; box-shadow: inset 0 1px 2px rgba(0,0,0,0.05); }
.lq-score-bar-fill { height: 100%; border-radius: 999px; transition: width 1s ease; }

/* =========================================
   ANIMATIONS
   ========================================= */
.lq-shine { position: relative; overflow: hidden; }
.lq-shine::after {
    content: ''; position: absolute; top: 0; left: 0; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-25deg); animation: shine 5s infinite;
}
@keyframes shine { 0% { transform: translateX(-150%) skewX(-25deg); } 20%, 100% { transform: translateX(250%) skewX(-25deg); } }

/* Scrollbar */
.lq-scrollbar::-webkit-scrollbar { width: 6px; }
.lq-scrollbar::-webkit-scrollbar-track { background: transparent; }
.lq-scrollbar::-webkit-scrollbar-thumb { background: rgba(108, 92, 231, 0.2); border-radius: 10px; }
