/* ui.css - New unified UI layer (full rewrite) */

/* 1) Reset + base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: #e9e9e9; background: #0b0b0b; line-height: 1.5; display:flex; flex-direction:column; min-height:100vh; padding-bottom: var(--footer-h); }
img { max-width: 100%; height: auto; border: 0; }
html, body { height: 100%; }
/* Make anchor jumps account for sticky header */
html { scroll-padding-top: 80px; }
.site-main { flex: 1 0 auto; display:block; padding-top: 80px; }
/* 1a) Typography & prose defaults */
h1, h2, h3, h4, h5, h6 { margin: 0 0 10px 0; font-weight: 800; letter-spacing: -0.02em; color: #f2f2f2; }
h1 { font-size: 42px; }
h2 { font-size: 28px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }
p { margin: 0 0 10px 0; color: #cfcfcf; }
ul, ol { margin: 0 0 12px 18px; }
li { margin: 4px 0; }
small { color: #a8a8a8; }
strong { color: #fff; }
em { color: #e6e6e6; }
a { color: inherit; text-decoration: none; }
a:link, a:visited { color: inherit; text-decoration: none; }
a:hover, a:focus { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.25); }
/* Buttons should never show underline */
.btn, .btn:hover, .btn:focus, .btn:visited { text-decoration: none !important; color: var(--text-0) !important; }
/* Navigation links: no underline and consistent visited color */
.site-nav a, .site-nav a:link, .site-nav a:visited { text-decoration: none !important; color: var(--text-1); }
.site-nav a:hover, .site-nav a:focus { text-decoration: none !important; color: var(--text-0); }
.site-actions .btn, .site-actions .btn:hover, .site-actions .btn:visited { text-decoration: none !important; }
hr { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 16px 0; }
code { background: #121212; border: 1px solid rgba(255,255,255,0.08); padding: 2px 6px; border-radius: 6px; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; color: #b2ffb2; }
pre { background: #101010; border: 1px solid rgba(255,255,255,0.08); padding: 12px; border-radius: 8px; overflow: auto; }
kbd { background: #111; border: 1px solid rgba(255,255,255,0.14); border-bottom-width: 3px; padding: 2px 6px; border-radius: 6px; box-shadow: inset 0 -1px 0 rgba(255,255,255,0.08); }
mark { background: rgba(125,249,5,0.18); color: #fff; padding: 2px 4px; border-radius: 4px; }
blockquote { margin: 0 0 12px 0; padding: 10px 12px; border-left: 3px solid rgba(125,249,5,0.25); background: rgba(255,255,255,0.03); border-radius: 6px; color: #cfcfcf; }

/* 2) Design tokens */
:root {
  --bg-0: #0b0b0b;
  --bg-1: #101010;
  --bg-2: #151515;
  --bg-3: #1b1b1b;
  --text-0: #f0f0f0;
  --text-1: #bdbdbd;
  --text-2: #8d8d8d;
  --accent: #7df905; /* brand accent used sparingly */
  --accent-2: #63c704;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --shadow-1: 0 8px 30px rgba(0,0,0,0.45);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --footer-h: 64px;
}

/* 3) Layout helpers */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 16px; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 16px; }
.section { padding: 64px 0; }

/* 4) Header */
.site-header { position: sticky; top: 0; z-index: 100; background: linear-gradient(180deg, rgba(10,10,10,0.9), rgba(12,12,12,0.98)); border-bottom: 1px solid var(--border); backdrop-filter: saturate(110%) blur(6px); }
.site-header .wrap { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 16px; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; }
.brand-mark { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 7px; background: #0d0d0d; color: var(--accent); box-shadow: 0 0 12px rgba(125,249,5,0.25) inset; font-weight: 900; }
.brand-name { color: var(--text-0); font-weight: 800; }
.site-nav { display: flex; gap: 16px; align-items: center; }
.site-nav a { color: var(--text-1); padding: 10px 8px; border-radius: var(--radius-sm); }
.site-nav a.is-active, .site-nav a:hover { color: var(--text-0); background: rgba(255,255,255,0.04); }
.site-actions { display: flex; gap: 8px; align-items: center; }
.menu-toggle { display: none; background: none; border: 0; color: var(--text-0); font-size: 20px; }

@media (max-width: 860px) {
  .site-header .wrap { grid-template-columns: auto 1fr auto; }
  .site-nav { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* 5) Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 14px; min-height: 40px; line-height: 1; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--bg-2); color: var(--text-0); box-shadow: var(--shadow-1); transition: transform 120ms ease, box-shadow 160ms ease, background 160ms ease; cursor: pointer; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 36px rgba(0,0,0,0.55); }
.btn:active { transform: translateY(0); }
.btn.primary { border-color: rgba(125,249,5,0.2); background: linear-gradient(180deg, rgba(125,249,5,0.14), rgba(125,249,5,0.06)); }
.btn.subtle { background: var(--bg-1); border-color: var(--border); }
.btn.ghost { background: transparent; border-color: var(--border); }
.btn.block { width: 100%; }
/* Icon-only button helper */
.btn.icon { width: 40px; height: 40px; padding: 0; }

/* 6) Cards */
.card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; box-shadow: var(--shadow-1); }
.card:hover { border-color: var(--border-strong); }

/* 7) Forms */
.form { display: grid; gap: 12px; }
.input, select, textarea, input[type="text"], input[type="password"], input[type="email"], input[type="number"], input[type="url"], input[type="search"], input[type="date"], input[type="time"], input[type="tel"] { width: 100%; background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-0); padding: 10px 12px; font: inherit; transition: border 140ms ease, box-shadow 140ms ease; }
.input:focus, select:focus, textarea:focus, input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(125,249,5,0.12); }
::placeholder { color: #8b8b8b; }
.label { font-size: 13px; color: var(--text-1); margin-bottom: 6px; display: inline-block; }

/* File input (Choose file) */
input[type="file"] { width: 100%; background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-1); padding: 8px; font: inherit; }
input[type="file"]:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(125,249,5,0.12); }
/* Modern browsers */
input[type="file"]::file-selector-button { margin-right: 10px; border: 1px solid var(--border); background: var(--bg-2); color: var(--text-0); padding: 8px 12px; border-radius: var(--radius-sm); cursor: pointer; font-weight: 600; transition: transform 120ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease; }
input[type="file"]::file-selector-button:hover { transform: translateY(-1px); border-color: var(--border-strong); box-shadow: 0 8px 24px rgba(0,0,0,0.45); background: linear-gradient(180deg, rgba(125,249,5,0.10), rgba(125,249,5,0.04)); }
input[type="file"]::file-selector-button:active { transform: translateY(0); }
/* WebKit fallback */
input[type="file"]::-webkit-file-upload-button { margin-right: 10px; border: 1px solid var(--border); background: var(--bg-2); color: var(--text-0); padding: 8px 12px; border-radius: var(--radius-sm); cursor: pointer; font-weight: 600; transition: transform 120ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease; }
input[type="file"]:hover::-webkit-file-upload-button { transform: translateY(-1px); border-color: var(--border-strong); box-shadow: 0 8px 24px rgba(0,0,0,0.45); background: linear-gradient(180deg, rgba(125,249,5,0.10), rgba(125,249,5,0.04)); }

/* Radios */
input[type="radio"] { appearance: none; width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-1); display: inline-grid; place-content: center; cursor: pointer; }
input[type="radio"]::before { content: ""; width: 10px; height: 10px; border-radius: 50%; transform: scale(0); transition: transform 120ms ease; background: var(--accent); }
input[type="radio"]:checked::before { transform: scale(1); }

/* Switch (toggle) using checkbox */
.switch { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.switch input[type="checkbox"] { appearance: none; width: 34px; height: 20px; background: var(--bg-1); border: 1px solid var(--border); border-radius: 999px; position: relative; transition: background 160ms ease, border 160ms ease; }
.switch input[type="checkbox"]::before { content: ""; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%; background: #cfcfcf; transition: transform 160ms ease, background 160ms ease; }
.switch input[type="checkbox"]:checked { background: rgba(125,249,5,0.18); border-color: rgba(125,249,5,0.26); }
.switch input[type="checkbox"]:checked::before { transform: translateX(14px); background: #7df905; }

/* 8) Grid helpers */
.grid { display: grid; gap: 16px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; } }

/* 9) Tables (used for topic lists) */
.table { width: 100%; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.table .thead, .table .row { display: grid; grid-template-columns: 1fr 100px 100px 240px; align-items: center; gap: 12px; }
.table .thead { background: var(--bg-3); color: var(--text-2); font-size: 12px; letter-spacing: 0.02em; padding: 10px 14px; text-transform: uppercase; }
.table .row { background: var(--bg-2); padding: 14px; border-top: 1px solid var(--border); }
.table .row:hover { background: #181818; }
.table .cell-meta { color: var(--text-2); font-size: 13px; }

/* Generic HTML table fallback */
table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
th, td { padding: 10px 12px; border-top: 1px solid var(--border); }
th { text-align: left; background: var(--bg-3); color: var(--text-2); font-size: 12px; letter-spacing: 0.02em; text-transform: uppercase; }
tr:nth-child(even) td { background: #161616; }

/* 10) Forum index */
.forum-list { display: grid; gap: 12px; }
.forum-row { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px 16px; }
.forum-row:hover { border-color: var(--border-strong); }
.forum-title { display: flex; gap: 12px; align-items: center; }
.forum-icon { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; background: rgba(125,249,5,0.08); color: var(--accent); }
.forum-sub { color: var(--text-2); font-size: 13px; margin-top: 2px; }
.forum-stats { display: flex; gap: 12px; color: var(--text-2); font-size: 13px; align-items: center; }

/* 11) Topic view posts */
.post { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px 16px; margin-bottom: 12px; }
.post .head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.post .author { display: flex; align-items: center; gap: 10px; color: var(--text-1); font-size: 14px; }
.post .body { color: var(--text-0); line-height: 1.65; }

/* 12) Dashboard layout */
.dashboard { display: grid; grid-template-columns: 260px 1fr; gap: 20px; align-items: start; }
@media (max-width: 980px) { .dashboard { grid-template-columns: 1fr; } }
.sidebar { position: sticky; top: 84px; }
.avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(125,249,5,0.18); }
.hidden { display: none !important; }
.product-list { display: grid; gap: 12px; }
.product-row { display: grid; grid-template-columns: 1fr auto auto; gap: 16px; align-items: center; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px 14px; }
.product-row .left .title { font-weight: 700; }
.product-row .left .tags { margin-top: 6px; display: flex; gap: 6px; }
.product-row .meta { color: var(--text-2); display: flex; gap: 12px; font-size: 13px; }
.product-row .actions { display: flex; gap: 8px; justify-content: flex-end; }

/* 13) Toasts */
.toast { position: fixed; bottom: 20px; right: 20px; background: #141414f5; border-left: 4px solid var(--accent); border-radius: 10px; padding: 10px 14px; display: flex; gap: 10px; align-items: center; color: #fff; transform: translateX(120%); opacity: 0; transition: transform 320ms cubic-bezier(.22,1,.36,1), opacity 320ms ease; z-index: 2000; box-shadow: var(--shadow-1); }
.toast.show { transform: translateX(0); opacity: 1; }
.toast.error, .toast-error { border-left-color: #ff4d4f; }
.toast.success, .toast-success { border-left-color: #2ecc71; }
.toast.warn, .toast-warning { border-left-color: #f1c40f; }

/* 14) Page transition overlay */
.page-transition { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,0.45); z-index: 9998; backdrop-filter: blur(4px) saturate(120%); }
.page-transition.show { display: flex; }
.page-spinner { width: 40px; height: 40px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.25); border-top-color: var(--accent); animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* 15) Mobile drawer */
.mobile-drawer { position: fixed; inset: 0 0 0 auto; width: 82%; max-width: 360px; background: var(--bg-1); border-left: 1px solid var(--border); transform: translateX(100%); transition: transform 200ms ease; padding: 16px; display: flex; flex-direction: column; gap: 10px; z-index: 9999; }
.mobile-drawer.active { transform: translateX(0); }
.drawer-close { align-self: flex-end; background: transparent; color: var(--text-0); border: none; font-size: 28px; line-height: 1; }
.drawer-actions { margin-top: auto; display: grid; gap: 8px; }

/* 16) Footer */
.site-footer { position: fixed; left: 0; right: 0; bottom: 0; height: var(--footer-h); border-top: 1px solid var(--border); background: var(--bg-1); color: var(--text-2); display: flex; align-items: center; z-index: 999; }
.site-footer .wrap { display: flex; align-items: center; justify-content: space-between; }

/* 17) Legacy page compatibility (home, products, status, support) */
.section-header { margin-bottom: 18px; }
.section-header h1, .section-header h2, .section-header h3 { margin: 0 0 6px 0; }
.section-header p { color: var(--text-2); margin: 0; }

/* Home hero */
.hero-section { position: relative; padding: 60px 16px; min-height: 72vh; display: grid; place-items: center; background: linear-gradient(180deg, #0b0b0b, #0e0e0e 60%); border-bottom: 1px solid var(--border); }
.hero-section::before { content:""; position:absolute; inset:0; pointer-events:none; opacity:0.25; background:
  radial-gradient(800px 400px at 50% -10%, rgba(125,249,5,0.10), rgba(0,0,0,0) 60%),
  repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 24px);
}
.hero-fx { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-fx canvas { width: 100%; height: 100%; display: block; }
.hero-content { text-align: center; max-width: 900px; position: relative; z-index: 1; }
.hero-heading { font-size: 56px; font-weight: 900; margin: 0 0 14px 0; letter-spacing: -0.03em; }
.hero-heading .gradient { background: linear-gradient(90deg, #d8ffd8, #7df905 40%, #a9ff6a); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-subheading { color: var(--text-1); font-size: 18px; margin: 0 auto 18px auto; max-width: 720px; }
.cta-row { display: inline-flex; gap: 10px; margin-top: 8px; }
.cta-row .btn { padding: 12px 18px; font-weight: 700; }
.trust-row { margin-top: 14px; color: var(--text-2); font-size: 13px; display: flex; gap: 14px; justify-content: center; align-items: center; }
.pills { margin-top: 18px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.pill { border: 1px solid var(--border); background: rgba(255,255,255,0.04); color: var(--text-2); padding: 6px 10px; border-radius: 999px; font-size: 12px; }

/* Products */
.products-section { padding: 40px 0; }
.section-title { text-align: center; margin-bottom: 20px; }
.section-title h2 { margin: 0 0 6px 0; }
.section-title p { margin: 0; color: var(--text-2); }
.products-grid, .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.product-card, .product-item { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; box-shadow: var(--shadow-1); }
.product-card:hover, .product-item:hover { border-color: var(--border-strong); }
.product-header { display: flex; align-items: center; gap: 12px; }
.product-title { margin: 0; font-size: 18px; font-weight: 700; }
.product-price { margin-left: auto; color: var(--accent); font-weight: 800; font-family: Roboto Mono, monospace; }
.feature-list { list-style: none; padding: 0; margin: 14px 0; display: grid; gap: 8px; color: var(--text-2); }
.feature-list li i { color: var(--accent); margin-right: 6px; }

/* Modal (purchase) */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1000; opacity: 0; transition: opacity 200ms ease; align-items: center; justify-content: center; }
.modal.active { display: flex; opacity: 1; }
.modal-content { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px; width: 92%; max-width: 520px; box-shadow: var(--shadow-1); transform: translateY(6px); transition: transform 160ms ease; }
.modal.active .modal-content { transform: translateY(0); }
/* Unified close buttons */
.modal-close, .drawer-close { width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--border); background: var(--bg-1); color: var(--text-0); display: grid; place-items: center; font-size: 18px; line-height: 1; cursor: pointer; }
.modal-close:hover, .drawer-close:hover { border-color: var(--border-strong); box-shadow: 0 8px 20px rgba(0,0,0,0.4); }
.modal-close { position: absolute; right: 12px; top: 8px; }
.spinner { width: 20px; height: 20px; border: 3px solid rgba(255,255,255,0.25); border-top-color: var(--accent); border-radius: 50%; display: inline-block; vertical-align: middle; margin-right: 8px; animation: spin 1s linear infinite; }

/* Status */
.status-section { padding: 40px 0; }
.status-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.status-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; box-shadow: var(--shadow-1); }
.status-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.status-badge { display: inline-flex; align-items: center; justify-content: center; height: 24px; padding: 0 8px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.status-up { background: rgba(99, 199, 4, 0.16); color: #7df905; }
.status-down { background: rgba(255, 69, 58, 0.16); color: #ff6b60; }
.status-maintenance { background: rgba(241, 196, 15, 0.16); color: #f1c40f; }
.status-details { display: grid; gap: 8px; color: var(--text-2); }
.status-item { display: flex; gap: 10px; }
.status-item i { color: var(--text-2); margin-top: 2px; }
.status-chart .chart-placeholder { display: grid; grid-auto-flow: column; gap: 6px; align-items: end; height: 110px; margin-top: 10px; }
.status-chart .chart-bar { width: 10px; background: rgba(125,249,5,0.18); border-radius: 3px; }
.status-legend { display: flex; gap: 16px; align-items: center; color: var(--text-2); margin-top: 16px; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.status-dot.status-up { background: #7df905; }
.status-dot.status-maintenance { background: #f1c40f; }
.status-dot.status-down { background: #ff6b60; }

/* Support */
.support-section { padding: 40px 0; }
.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.support-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; text-align: center; }
.support-card .btn { margin-top: 10px; }
.support-icon { width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center; background: rgba(125,249,5,0.08); color: var(--accent); margin: 0 auto 10px auto; }
.faq-section { margin-top: 28px; }
.faq-list { display: grid; gap: 10px; }
.faq-item { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-md); }
.faq-question { padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 200ms ease; padding: 0 14px; color: var(--text-2); }
.faq-item.active .faq-answer { padding: 12px 14px; }

/* 18) Custom checkbox */
input[type="checkbox"] { appearance: none; -webkit-appearance: none; width: 18px; height: 18px; border: 1px solid var(--border); border-radius: 4px; background: var(--bg-1); display: inline-grid; place-content: center; cursor: pointer; transition: border 120ms ease, background 120ms ease, box-shadow 120ms ease; }
input[type="checkbox"]::before { content: ""; width: 10px; height: 10px; transform: scale(0); transition: transform 120ms ease; background: var(--accent); border-radius: 2px; }
input[type="checkbox"]:checked::before { transform: scale(1); }
input[type="checkbox"]:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(125,249,5,0.12); }

/* 19) Custom scrollbar with shader-like animation */
html { scrollbar-width: thin; scrollbar-color: #6bf25a rgba(255,255,255,0.06); }
/* Chrome/Edge/Safari */
::-webkit-scrollbar { width: 14px; height: 14px; }
::-webkit-scrollbar-track { background: linear-gradient(180deg, #0e0e0e, #0b0b0b); border-left: 1px solid var(--border); }
::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 1px solid rgba(125,249,5,0.25);
  box-shadow: inset 0 0 8px rgba(125,249,5,0.35), 0 0 6px rgba(125,249,5,0.25);
  background: linear-gradient(135deg,
    rgba(20,60,20,0.95) 0%,
    rgba(40,120,40,0.95) 25%,
    rgba(25,85,25,0.95) 50%,
    rgba(40,120,40,0.95) 75%,
    rgba(20,60,20,0.95) 100%
  );
  background-size: 200% 200%;
  animation: liquid 6s ease-in-out infinite;
}
::-webkit-scrollbar-thumb:hover { border-color: rgba(125,249,5,0.45); box-shadow: inset 0 0 10px rgba(125,249,5,0.5), 0 0 8px rgba(125,249,5,0.35); }
@keyframes liquid { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
