/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #1F2937;
    background-color: #F0F2F5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #4D7CF5;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #3B63D4;
}

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

ul, ol {
    list-style: none;
}

/* === NAVBAR === */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #FFFFFF;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

header nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    text-decoration: none;
}

.nav-brand a:hover {
    color: #1F2937;
}

.nav-brand img {
    height: 36px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-menu li a:hover {
    color: #4D7CF5;
    background: rgba(77, 124, 245, 0.06);
}

.nav-menu li a.active {
    color: #4D7CF5;
    background: rgba(77, 124, 245, 0.1);
    font-weight: 600;
}

/* === HAMBURGER === */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hamburger:hover {
    background: rgba(77, 124, 245, 0.06);
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #1F2937;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.is-active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* === ONION BAR === */
.onion-bar {
    background: #1F2937;
    border-bottom: 1px solid #374151;
}

.onion-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    min-width: 0;
}

.onion-bar-label {
    color: #9CA3AF;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.onion-bar #onionUrl {
    color: #22C55E;
    font-family: 'SF Mono', 'Fira Code', 'Roboto Mono', monospace;
    font-size: 13px;
    background: rgba(34, 197, 94, 0.08);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(34, 197, 94, 0.15);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    user-select: all;
    -webkit-user-select: all;
}

.onion-copy-btn {
    background: #4D7CF5;
    color: #FFFFFF;
    border: none;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.onion-copy-btn:hover {
    background: #3B63D4;
}

.onion-copy-btn.copied {
    background: #22C55E;
}

.onion-copy-btn.copied::after {
    content: none;
}

/* === MAIN === */
main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px 60px;
}

/* === HERO BANNER === */
.hero-banner {
    background: linear-gradient(135deg, #4D7CF5 0%, #A855F7 100%);
    border-radius: 12px;
    padding: 48px 40px;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.hero-banner h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.hero-banner p {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.9;
    max-width: 640px;
    line-height: 1.6;
}

/* === SECTION HEADINGS === */
h1 {
    font-size: 26px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
    line-height: 1.3;
}

h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.35;
}

h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1F2937;
    margin-top: 28px;
    margin-bottom: 12px;
    line-height: 1.4;
}

h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1F2937;
    margin-top: 20px;
    margin-bottom: 8px;
}

/* === CARDS === */
.card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

section,
article {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

section section,
article article,
section article,
article section {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: 16px;
    box-shadow: none;
}

/* === CONTENT TYPOGRAPHY === */
main p {
    color: #374151;
    margin-bottom: 14px;
    line-height: 1.7;
}

main ul,
main ol {
    margin-bottom: 14px;
    padding-left: 24px;
}

main ul {
    list-style: disc;
}

main ol {
    list-style: decimal;
}

main li {
    color: #374151;
    margin-bottom: 6px;
    line-height: 1.6;
}

main li a {
    font-weight: 500;
}

strong {
    font-weight: 600;
    color: #1F2937;
}

em {
    font-style: italic;
}

blockquote {
    border-left: 3px solid #4D7CF5;
    padding: 12px 20px;
    margin: 16px 0;
    background: rgba(77, 124, 245, 0.04);
    border-radius: 0 8px 8px 0;
    color: #4B5563;
    font-style: italic;
}

code {
    font-family: 'SF Mono', 'Fira Code', 'Fira Mono', 'Roboto Mono', monospace;
    font-size: 13px;
    background: #F3F4F6;
    padding: 2px 6px;
    border-radius: 4px;
    color: #8B5CF6;
}

pre {
    background: #1F2937;
    color: #E5E7EB;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 16px 0;
    font-size: 13px;
    line-height: 1.6;
}

pre code {
    background: none;
    padding: 0;
    border-radius: 0;
    color: inherit;
}

/* === BADGES === */
.badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
    color: #FFFFFF;
}

.badge-green {
    background: #22C55E;
}

.badge-purple {
    background: #8B5CF6;
}

.badge-amber {
    background: #F59E0B;
}

.badge-red {
    background: #EF4444;
}

.badge-blue {
    background: #4D7CF5;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: #4D7CF5;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #3B63D4;
    color: #FFFFFF;
}

.btn-purple {
    background: #8B5CF6;
    color: #FFFFFF;
}

.btn-purple:hover {
    background: #7C3AED;
    color: #FFFFFF;
}

.btn-outline {
    background: #FFFFFF;
    color: #4D7CF5;
    border: 1px solid #4D7CF5;
}

.btn-outline:hover {
    background: rgba(77, 124, 245, 0.06);
    color: #3B63D4;
}

.btn-pill {
    border-radius: 20px;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 13px;
}

/* === LINKS LIST === */
.link-list {
    list-style: none;
    padding-left: 0;
}

.link-list li {
    padding: 10px 0;
    border-bottom: 1px solid #E5E7EB;
}

.link-list li:last-child {
    border-bottom: none;
}

.link-list li a {
    font-weight: 500;
    font-size: 14px;
}

.link-list li span {
    display: block;
    font-size: 13px;
    color: #9CA3AF;
    margin-top: 2px;
}

/* === VIDEO WRAPPER === */
.video-wrapper,
.responsive-video {
    position: relative;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16 / 9;
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
    background: #1F2937;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@supports not (aspect-ratio: 16 / 9) {
    .video-wrapper,
    .responsive-video {
        height: 0;
        padding-bottom: min(56.25%, 405px);
    }
}

.video-wrapper iframe,
.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* === TABLES === */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
}

thead th {
    text-align: left;
    padding: 12px 16px;
    background: #F9FAFB;
    color: #6B7280;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #E5E7EB;
}

tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #E5E7EB;
    color: #374151;
}

tbody tr:hover {
    background: rgba(77, 124, 245, 0.02);
}

/* === ASIDE === */
aside {
    background: rgba(77, 124, 245, 0.04);
    border: 1px solid rgba(77, 124, 245, 0.12);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

aside h3,
aside h4 {
    color: #4D7CF5;
    margin-top: 0;
}

/* === PAGE CONTENT LAYOUT === */
.page-content {
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

.page-content > section,
.page-content > nav {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.page-hero,
.hero-section {
    background: linear-gradient(135deg, #4D7CF5 0%, #A855F7 100%) !important;
    color: #FFFFFF;
}

.page-hero h1,
.hero-section h1 {
    color: #FFFFFF;
    margin-bottom: 12px;
}

.page-hero p,
.hero-section p {
    color: rgba(255, 255, 255, 0.9);
}

/* === TABLE OF CONTENTS === */
.table-of-contents {
    display: block;
    height: auto;
    border-left: 3px solid #4D7CF5;
}

.table-of-contents h2 {
    font-size: 17px;
    margin: 0 0 12px;
    color: #4D7CF5;
}

.table-of-contents ol {
    list-style: decimal;
    padding-left: 20px;
    margin: 0;
}

.table-of-contents li {
    padding: 4px 0;
    font-size: 14px;
}

.table-of-contents li a {
    color: #374151;
    font-weight: 500;
}

.table-of-contents li a:hover {
    color: #4D7CF5;
}

/* === MIRROR LINKS TOP === */
.mirror-links-top {
    border: 1px solid rgba(34, 197, 94, 0.2);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.03) 0%, rgba(77, 124, 245, 0.03) 100%) !important;
}

.mirror-links-top h2 {
    margin-top: 0;
}

/* === VIDEO EMBED === */
.video-embed {
    margin-bottom: 32px;
}

.video-embed h3 {
    margin-top: 0;
}

/* === MIRROR LINKS CONTAINER === */
#mirror-links-container,
#mirror-links {
    background: #FFFFFF;
    border: 1px dashed #D1D5DB;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    min-height: 80px;
}

/* === MIRROR LINK CARDS === */
.mirror-link-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 12px;
}

.mirror-link-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.mirror-label {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
}

.mirror-verified {
    font-size: 12px;
    font-weight: 500;
    color: #22C55E;
    margin-left: auto;
}

.mirror-url-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mirror-url-row code {
    flex: 1;
    font-size: 13px;
    color: #22C55E;
    background: rgba(34, 197, 94, 0.06);
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid rgba(34, 197, 94, 0.12);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    user-select: all;
    -webkit-user-select: all;
    min-width: 0;
}

.mirror-meta {
    font-size: 12px;
    color: #9CA3AF;
    margin-top: 10px;
}

/* === ARTICLE META === */
article header {
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-bottom: 16px;
    border-radius: 0;
}

article time {
    display: inline-block;
    font-size: 13px;
    color: #9CA3AF;
    font-weight: 400;
}

/* === FOOTER === */
footer {
    background: #1F2937;
    color: #D1D5DB;
    margin-top: 60px;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px 32px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

footer h3 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 0;
}

footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #9CA3AF;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: #9CA3AF;
    font-size: 14px;
    transition: color 0.2s ease;
}

footer ul li a:hover {
    color: #4D7CF5;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    font-size: 13px;
    color: #6B7280;
    text-align: center;
}

/* === GALLERY SHOWCASE === */
.gallery-showcase {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 40px;
    background: linear-gradient(180deg, #1F2937 0%, #111827 100%);
    padding: 48px 0 0;
    overflow: hidden;
}

@supports (width: 100dvw) {
    .gallery-showcase {
        width: 100dvw;
        margin-left: calc(-50dvw + 50%);
    }
}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gallery-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.gallery-slide picture {
    width: 100%;
    max-width: 1100px;
    display: block;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -4px 40px rgba(77, 124, 245, 0.15), 0 8px 32px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px 0 0;
}

.gallery-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.gallery-btn:hover {
    background: rgba(77, 124, 245, 0.3);
    border-color: #4D7CF5;
}

.gallery-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-dot.active {
    width: 28px;
    border-radius: 4px;
    background: #4D7CF5;
}

.gallery-caption {
    text-align: center;
    padding: 28px 24px 40px;
}

.gallery-caption h2 {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
    background: linear-gradient(135deg, #4D7CF5, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-caption p {
    color: #9CA3AF;
    font-size: 14px;
    margin: 0 auto 24px;
    max-width: 480px;
}

.gallery-cta {
    display: inline-block;
    padding: 14px 48px;
    background: linear-gradient(135deg, #4D7CF5 0%, #A855F7 100%);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(77, 124, 245, 0.35);
}

.gallery-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(77, 124, 245, 0.5);
    color: #FFFFFF;
}

/* === SCROLL TO TOP === */
.scroll-indicator {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: #4D7CF5;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(77, 124, 245, 0.3);
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 999;
}

.scroll-indicator:hover {
    background: #3B63D4;
    transform: translateY(-2px);
}

.scroll-indicator.visible {
    display: flex;
}

/* === RESPONSIVE: TABLET === */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    main {
        padding: 24px 20px 48px;
    }

    section,
    article {
        padding: 24px;
    }
}

/* === RESPONSIVE: MOBILE === */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 16px 24px;
        gap: 0;
        overflow-y: auto;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu li a {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 8px;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        background: rgba(77, 124, 245, 0.06);
    }

    main {
        padding: 20px 16px 40px;
    }

    section,
    article {
        padding: 20px;
        border-radius: 10px;
    }

    .hero-banner {
        padding: 32px 24px;
        border-radius: 10px;
    }

    .hero-banner h1 {
        font-size: 22px;
    }

    h1 { font-size: 22px; }
    h2 { font-size: 18px; }
    h3 { font-size: 16px; }

    .page-content > section,
    .page-content > nav {
        padding: 20px;
        border-radius: 10px;
    }

    .table-of-contents {
        padding: 16px 20px;
    }

    .onion-bar-inner {
        padding: 8px 16px;
        gap: 8px;
    }

    .onion-bar-label {
        display: none;
    }

    .onion-bar #onionUrl {
        font-size: 10px;
        padding: 4px 8px;
        min-width: 0;
        flex: 1;
    }

    .onion-copy-btn {
        padding: 5px 12px;
        font-size: 11px;
    }

    .mirror-url-row {
        flex-wrap: wrap;
    }

    .mirror-url-row code {
        width: 100%;
        flex: none;
        font-size: 11px;
        padding: 8px 10px;
    }

    .mirror-url-row .onion-copy-btn {
        width: 100%;
        padding: 8px;
        text-align: center;
    }

    .mirror-link-row {
        flex-wrap: wrap;
        gap: 6px;
    }

    .gallery-showcase {
        padding: 32px 0 0;
        margin-bottom: 24px;
    }

    .gallery-slide {
        padding: 0 16px;
    }

    .gallery-slide img {
        border-radius: 8px 8px 0 0;
    }

    .gallery-caption h2 {
        font-size: 18px;
    }

    .gallery-caption p {
        font-size: 13px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 16px 24px;
    }

    .footer-bottom {
        padding: 16px;
    }

    .video-wrapper,
    .responsive-video {
        max-width: 100%;
        border-radius: 8px;
    }

    table {
        display: block;
        overflow-x: auto;
    }
}

/* === RESPONSIVE: SMALL MOBILE === */
@media (max-width: 480px) {
    header nav {
        padding: 0 16px;
    }

    .hero-banner {
        padding: 24px 20px;
    }

    .hero-banner h1 {
        font-size: 20px;
    }

    section,
    article {
        padding: 16px;
    }

    h1 { font-size: 20px; }
    h2 { font-size: 17px; }

    .gallery-slide {
        padding: 0 12px;
    }

    .gallery-controls {
        gap: 12px;
    }

    .gallery-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
        border-radius: 8px;
    }

    .gallery-caption {
        padding: 20px 16px 28px;
    }

    .gallery-caption h2 {
        font-size: 16px;
    }

    .onion-bar #onionUrl {
        font-size: 9px;
    }
}

/* === UTILITY === */
.text-muted {
    color: #9CA3AF;
}

.text-secondary {
    color: #6B7280;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* === SELECTION === */
::selection {
    background: rgba(77, 124, 245, 0.2);
    color: #1F2937;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F0F2F5;
}

::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}
