/* Beast.cz — Clean Streetwear Light
   Bold, modern, light aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --black:    #ffffff;
    --dark:     #f8f8f8;
    --dark2:    #f0f0f0;
    --dark3:    #e0e0e0;
    --gray:     #cccccc;
    --muted:    #888888;
    --soft:     #666666;
    --light:    #333333;
    --white:    #111111;
    --red:      #e51a1a;
    --red-dark: #c00000;
    --orange:   #e85a1b;
    --green:    #16a34a;
    --blue:     #2563eb;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'DM Sans', sans-serif;
    --radius:    12px;
    --radius-sm: 8px;
    --shadow:    0 2px 16px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.10);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--white); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }

img { max-width: 100%; display: block; }

/* ── Layout ─────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }

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

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ── Typography ─────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.text-red { color: var(--red); }
.text-muted { color: var(--muted); }
.text-soft { color: var(--soft); }
.text-light { color: var(--light); }
.text-small { font-size: 0.85rem; }
.text-xs { font-size: 0.75rem; }
.text-center { text-align: center; }
.text-upper { text-transform: uppercase; letter-spacing: 0.06em; }

.label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--soft);
}

/* ── Navigation ─────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark3);
    padding: 0 1.5rem;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.navbar-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}
.navbar-logo span { color: var(--red); }

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.navbar-nav a {
    display: block;
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
    transition: color var(--transition);
}
.navbar-nav a:hover,
.navbar-nav a.active {
    color: var(--white);
}
.navbar-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 1.1rem;
    right: 1.1rem;
    height: 2px;
    background: var(--red);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Mobile menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .navbar-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 1rem 0;
        border-bottom: 1px solid var(--dark3);
        box-shadow: var(--shadow);
    }
    .navbar-nav.open { display: flex; }
    .navbar-nav a { padding: 0.8rem 1.5rem; }
    .navbar-nav a.active::after { display: none; }
}

/* ── Hero ────────────────────────────────── */
.hero {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 50%, #fdf2f2 100%);
    border-bottom: 1px solid var(--dark3);
}

.hero::before {
    content: 'BEAST';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 18rem);
    color: rgba(229, 26, 26, 0.05);
    letter-spacing: 0.1em;
    pointer-events: none;
    white-space: nowrap;
}

.hero-content {
    position: relative;
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    padding: 0.25rem 0.8rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--soft);
    margin: 1rem 0 2rem;
    max-width: 480px;
}

/* ── Cards ───────────────────────────────── */
.card {
    background: var(--black);
    border: 1px solid var(--dark3);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.card:hover {
    border-color: var(--gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}
.card a { display: block; }

.card-body { padding: 1.2rem; }

.card-emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    font-size: 3.5rem;
    background: var(--dark);
}

.card-brand {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0.3rem;
}

.card-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 0.4rem;
    text-transform: none;
}

.card-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--red);
    letter-spacing: 0.02em;
}

.card-meta {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ── Badges / Tags ──────────────────────── */
.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.badge-red { background: rgba(229,26,26,0.1); color: var(--red); }
.badge-green { background: rgba(22,163,74,0.1); color: var(--green); }
.badge-blue { background: rgba(37,99,235,0.1); color: var(--blue); }
.badge-orange { background: rgba(232,90,27,0.1); color: var(--orange); }
.badge-muted { background: var(--dark2); color: var(--soft); }
.badge-hot {
    background: var(--red);
    color: #fff;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.tag {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    background: var(--dark2);
    border: 1px solid var(--dark3);
    border-radius: 4px;
    font-size: 0.7rem;
    color: var(--soft);
    margin: 0.15rem;
}

/* ── Buttons ─────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.98); }

.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; }

.btn-secondary { background: var(--dark2); color: var(--white); border: 1px solid var(--dark3); }
.btn-secondary:hover { background: var(--dark3); color: var(--white); }

.btn-ghost { background: transparent; color: var(--white); border: 1px solid var(--gray); }
.btn-ghost:hover { background: var(--dark2); color: var(--white); }

.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.75rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: var(--radius-sm);
    background: var(--dark2);
    border: 1px solid var(--dark3);
    color: var(--soft);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all var(--transition);
}
.btn-icon:hover { background: var(--dark3); color: var(--white); }

/* ── Section headers ─────────────────────── */
.section { padding: 4rem 0; }
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.section-header h2 { margin: 0; }
.section-header a {
    font-size: 0.85rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* ── Release list ────────────────────────── */
.release-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--black);
    border: 1px solid var(--dark3);
    border-radius: var(--radius);
    margin-bottom: 0.6rem;
    transition: all var(--transition);
}
.release-item:hover {
    border-color: var(--gray);
    background: var(--dark);
    box-shadow: var(--shadow);
}
.release-item.hot { border-left: 3px solid var(--red); }

.release-emoji {
    font-size: 2rem;
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.release-info { flex: 1; }
.release-name { font-weight: 600; font-size: 0.95rem; }
.release-meta { font-size: 0.8rem; color: var(--muted); margin-top: 0.15rem; }

.release-countdown {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-align: center;
    min-width: 60px;
}
.release-countdown.soon { color: var(--red); }
.release-countdown.normal { color: var(--soft); }
.release-countdown small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

/* ── Blog ────────────────────────────────── */
.post-card {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--black);
    border: 1px solid var(--dark3);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    transition: all var(--transition);
}
.post-card:hover {
    border-color: var(--gray);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.post-emoji { font-size: 2.5rem; flex-shrink: 0; }
.post-info { flex: 1; }
.post-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}
.post-excerpt { font-size: 0.85rem; color: var(--soft); line-height: 1.5; margin-bottom: 0.5rem; }
.post-date { font-size: 0.75rem; color: var(--muted); }

/* Post detail */
.post-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--light);
    max-width: 680px;
}
.post-body p { margin-bottom: 1.2rem; }

/* ── Sneaker detail ──────────────────────── */
.sneaker-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}
@media (max-width: 768px) {
    .sneaker-detail { grid-template-columns: 1fr; gap: 1.5rem; }
}

.sneaker-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    background: var(--dark);
    border: 1px solid var(--dark3);
    border-radius: var(--radius);
    min-height: 300px;
}

.sneaker-info h1 { margin-bottom: 0.3rem; }

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin: 1.5rem 0;
}
.stat-box {
    background: var(--dark);
    border: 1px solid var(--dark3);
    border-radius: var(--radius-sm);
    padding: 1rem;
    text-align: center;
}
.stat-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
}
.stat-label {
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
}

.hype-bar {
    height: 6px;
    background: var(--dark3);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.5rem;
}
.hype-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--red), var(--orange));
    transition: width 1s ease;
}

/* ── DNA Page ────────────────────────────── */
.dna-container { max-width: 600px; margin: 0 auto; padding: 3rem 1rem; text-align: center; }

.dna-card {
    background: var(--black);
    border: 2px solid var(--dark3);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2rem 0;
    transition: border-color var(--transition);
}
.dna-card:hover { border-color: var(--red); }

.dna-emoji { font-size: 4rem; margin-bottom: 1rem; }
.dna-buttons { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; }

.dna-progress {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 2rem;
}
.dna-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dark3);
    transition: all var(--transition);
}
.dna-dot.active { background: var(--red); width: 24px; border-radius: 4px; }
.dna-dot.done { background: var(--muted); }

.dna-result-type {
    background: linear-gradient(135deg, var(--dark), #fdf2f2);
    border: 1px solid var(--red);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2rem 0;
}

.dna-bar { margin-bottom: 0.8rem; }
.dna-bar-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}
.dna-bar-track {
    height: 6px;
    background: var(--dark3);
    border-radius: 3px;
    overflow: hidden;
}
.dna-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Forms ────────────────────────────────── */
.form-group { margin-bottom: 1.2rem; }
.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    background: var(--black);
    border: 1px solid var(--dark3);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(229,26,26,0.08);
}
.form-textarea { min-height: 120px; resize: vertical; }

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--light);
    cursor: pointer;
}
.form-check input[type="checkbox"] { accent-color: var(--red); }

.form-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}
.form-tag {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    cursor: pointer;
    border: 1px solid var(--dark3);
    background: var(--dark);
    color: var(--soft);
    transition: all var(--transition);
}
.form-tag.selected {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

/* ── Filters bar ─────────────────────────── */
.filters {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-pills {
    display: flex;
    gap: 0.3rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
}
.filter-pill {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    background: var(--dark);
    border: 1px solid var(--dark3);
    color: var(--soft);
    transition: all var(--transition);
}
.filter-pill:hover { border-color: var(--gray); color: var(--white); }
.filter-pill.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.search-bar {
    flex: 1;
    min-width: 200px;
    position: relative;
}
.search-bar input {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    background: var(--black);
    border: 1px solid var(--dark3);
    border-radius: 50px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
}
.search-bar input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(229,26,26,0.08); }
.search-bar::before {
    content: '🔍';
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
}

/* ── Admin ───────────────────────────────── */
.admin-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: calc(100vh - 64px);
}
@media (max-width: 768px) {
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
}

.admin-sidebar {
    background: var(--dark);
    border-right: 1px solid var(--dark3);
    padding: 1.5rem 0;
}
.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    color: var(--soft);
    transition: all var(--transition);
}
.admin-sidebar a:hover { color: var(--white); background: var(--dark2); }
.admin-sidebar a.active { color: var(--red); border-right: 2px solid var(--red); }

.admin-content { padding: 2rem; }

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

/* Admin table */
.table-wrapper { overflow-x: auto; }
.admin-table {
    width: 100%;
    border-collapse: collapse;
}
.admin-table th {
    text-align: left;
    padding: 0.8rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    background: var(--dark);
    border-bottom: 1px solid var(--dark3);
}
.admin-table td {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--dark2);
    color: var(--light);
}
.admin-table tr:hover td { background: var(--dark); }
.admin-table .actions { white-space: nowrap; }
.admin-table .actions a { margin-right: 0.5rem; }

/* ── Flash messages ──────────────────────── */
.flash {
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
}
.flash-success { background: rgba(22,163,74,0.08); border: 1px solid rgba(22,163,74,0.25); color: var(--green); }
.flash-error { background: rgba(229,26,26,0.08); border: 1px solid rgba(229,26,26,0.25); color: var(--red); }

/* ── Pagination ──────────────────────────── */
.pagination {
    display: flex;
    gap: 0.3rem;
    justify-content: center;
    margin-top: 2rem;
}
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--black);
    border: 1px solid var(--dark3);
    color: var(--soft);
}
.pagination a:hover { border-color: var(--red); color: var(--white); }
.pagination .current {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

/* ── Footer ──────────────────────────────── */
.footer {
    border-top: 1px solid var(--dark3);
    padding: 3rem 0;
    margin-top: 4rem;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-copy { font-size: 0.8rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: var(--soft); }

@media (max-width: 768px) {
    .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── Profile ─────────────────────────────── */
.profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
}
.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    flex-shrink: 0;
}

/* ── Utility ─────────────────────────────── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }

.divider { border: none; border-top: 1px solid var(--dark3); margin: 2rem 0; }

/* ── Scrollbar ───────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray); }
