/* ============================================
   VITOR MATOS — PORTFOLIO
   Brutalist / Modern / Awwwards Style
   Colors: Blue, Black, Gray
   ============================================ */

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

:root {
    --blue: #0066ff;
    --blue-dark: #0044aa;
    --blue-light: #3388ff;
    --black: #0a0a0a;
    --black-pure: #000000;
    --gray-dark: #1a1a1a;
    --gray-mid: #2a2a2a;
    --gray: #888888;
    --gray-light: #cccccc;
    --white: #f0f0f0;
    --white-pure: #ffffff;
    
    --font-display: 'Space Grotesk', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --font-body: 'Inter', sans-serif;
    
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    font-size: 16px;
    scroll-behavior: initial;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

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

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.accent {
    color: var(--blue);
}

.label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray);
    display: block;
    margin-bottom: 4px;
}

.highlight {
    color: var(--blue);
    font-style: italic;
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--blue);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.3s var(--ease-out-expo), 
                width 0.3s var(--ease-out-expo), 
                height 0.3s var(--ease-out-expo),
                border-color 0.3s ease;
}

.cursor-follower.hovering {
    width: 60px;
    height: 60px;
    border-color: var(--white);
    background: rgba(0, 102, 255, 0.1);
}

/* ---------- LOADER ---------- */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black-pure);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader__inner {
    text-align: center;
    position: relative;
}

.loader__line {
    width: 200px;
    height: 2px;
    background: var(--gray-mid);
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
}

.loader__line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--blue);
    transition: width 0.1s linear;
}

.loader__counter {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--white);
}

.loader__name {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--gray);
    margin-top: 20px;
}

/* ---------- NAVIGATION ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    mix-blend-mode: difference;
    transition: padding 0.4s var(--ease-out-expo);
}

.nav__logo a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav__links {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding: 4px 0;
    overflow: hidden;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--blue);
    transition: width 0.4s var(--ease-out-expo);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: none;
    z-index: 1001;
}

.nav__menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: transform 0.4s var(--ease-out-expo), opacity 0.3s ease;
}

.nav__menu-btn.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.nav__menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-out-expo);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s var(--ease-out-expo), color 0.3s ease;
}

.mobile-menu.active .mobile-menu__link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu__link:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu__link:hover {
    color: var(--blue);
}

/* ---------- HERO ---------- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero__content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero__title-wrap {
    margin-bottom: 60px;
}

.hero__title-line {
    overflow: hidden;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 14rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.9;
    text-transform: uppercase;
    will-change: transform;
}

.hero__title--stroke {
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
}

.hero__info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero__info p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: var(--gray-mid);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blue);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

.hero__scroll-indicator span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray);
}

/* ---------- MARQUEE ---------- */
.marquee-section {
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid var(--gray-mid);
    border-bottom: 1px solid var(--gray-mid);
}

.marquee-section--alt {
    background: var(--blue);
    border-color: var(--blue);
}

.marquee-section--footer {
    border-top: 1px solid var(--gray-mid);
    border-bottom: none;
    padding: 15px 0;
    background: var(--black-pure);
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.marquee__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    will-change: transform;
    animation: marqueeLeft 25s linear infinite;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.marquee[data-direction="right"] .marquee__inner {
    animation: marqueeRight 25s linear infinite;
}

.marquee__inner--stroke {
    -webkit-text-stroke: 1px var(--black);
    color: transparent;
    font-size: 1.6rem;
}

.marquee__inner--large {
    font-size: 1rem;
    color: var(--gray);
    letter-spacing: 0.2em;
}

.marquee__separator {
    color: var(--blue);
    font-size: 0.8em;
}

.marquee-section--alt .marquee__separator {
    color: var(--black);
}

.marquee-section--footer .marquee__separator {
    color: var(--gray-mid);
}

@keyframes marqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ---------- SECTION COMMON ---------- */
.section-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 60px;
    padding-top: 120px;
}

.section-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--blue);
    letter-spacing: 0.1em;
    padding-top: 8px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    text-transform: uppercase;
}

/* ---------- ABOUT ---------- */
.about {
    padding-bottom: 100px;
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    top: 25%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.about__paragraph {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--gray-light);
    margin-bottom: 24px;
    font-weight: 300;
}

.about__stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}

.stat {
    border-left: 2px solid var(--blue);
    padding-left: 24px;
}

.stat__number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--white);
}

.stat__plus {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
}

.stat__label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray);
    display: block;
    margin-top: 4px;
}

/* ---------- SERVICE ITEMS ---------- */
.about__services {
    border-top: 1px solid var(--gray-mid);
}

.service-item {
    display: grid;
    grid-template-columns: 60px 200px 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid var(--gray-mid);
    transition: background 0.4s ease, padding 0.4s var(--ease-out-expo);
    cursor: none;
}

.service-item:hover {
    background: var(--gray-dark);
    padding-left: 20px;
    padding-right: 20px;
}

.service-item__number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--blue);
}

.service-item__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.service-item__desc {
    font-size: 0.9rem;
    color: var(--gray);
}

.service-item__arrow {
    font-size: 1.5rem;
    color: var(--blue);
    transform: translateX(0);
    transition: transform 0.4s var(--ease-out-expo);
}

.service-item:hover .service-item__arrow {
    transform: translateX(8px);
}

/* ---------- HORIZONTAL SCROLL ---------- */
.horizontal-section {
    padding-bottom: 100px;
    overflow: hidden;
}

.horizontal-scroll {
    overflow: visible;
    padding: 0 5%;
}

.horizontal-scroll__track {
    display: flex;
    gap: 30px;
    will-change: transform;
}

.project-card {
    flex: 0 0 450px;
    cursor: none;
}

.project-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.project-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.project-card:hover .project-card__img,
.project-card--link:hover .project-card__img {
    transform: scale(1.05);
}

.project-card__image {
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--gray-mid);
}

.project-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.15);
    transition: transform 0.6s var(--ease-out-expo);
}

.project-card:hover .project-card__placeholder {
    transform: scale(1.05);
}

.project-card__info {
    padding: 20px 0;
}

.project-card__info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.project-card__info p {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ---------- SOCIAL MEDIA ---------- */
.social {
    padding-bottom: 100px;
}

.social__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.social__item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-mid);
    cursor: none;
}

.social__item--tall {
    grid-row: span 2;
}

.social__item--wide {
    grid-column: span 2;
}

.social__placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    position: relative;
    transition: transform 0.6s var(--ease-out-expo);
}

.social__item:hover .social__placeholder {
    transform: scale(1.05);
}

.social__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s var(--ease-out-expo), opacity 0.5s ease;
}

.social__item:hover .social__overlay {
    transform: translateY(0);
    opacity: 1;
}

.social__tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--blue);
    display: block;
    margin-bottom: 8px;
}

.social__overlay h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ---------- VIDEO EDITING ---------- */
.video {
    padding-bottom: 100px;
}

.video__showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video__item {
    cursor: none;
}

.video__player {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-mid);
    margin-bottom: 16px;
}

.video__placeholder-vid {
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.6s var(--ease-out-expo);
}

.video__item:hover .video__placeholder-vid {
    transform: scale(1.03);
}

.video__play-btn {
    width: 70px;
    height: 70px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.video__play-btn svg {
    width: 20px;
    height: 20px;
    color: var(--white);
    margin-left: 3px;
}

.video__item:hover .video__play-btn {
    background: var(--blue);
    border-color: var(--blue);
    transform: scale(1.1);
}

.video__duration {
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--gray-light);
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 10px;
    letter-spacing: 0.05em;
}

.video__info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.video__info p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 12px;
}

.video__tags {
    display: flex;
    gap: 8px;
}

.video__tags span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    border: 1px solid var(--gray-mid);
    padding: 6px 12px;
}

/* ---------- CONTACT ---------- */
.contact {
    padding-top: 120px;
    padding-bottom: 0;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.contact__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact__heading {
    margin-bottom: 60px;
}

.contact__title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 9rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    text-transform: uppercase;
}

.reveal-line {
    display: block;
    overflow: hidden;
}

.contact__email {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 500;
    display: inline-block;
    padding: 16px 0;
    border-bottom: 2px solid var(--blue);
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

.contact__email:hover {
    color: var(--blue);
}

.contact__socials {
    display: flex;
    gap: 32px;
}

.contact__social {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding: 4px 0;
}

.contact__social::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--blue);
    transition: width 0.4s var(--ease-out-expo);
}

.contact__social:hover::after {
    width: 100%;
}

/* ---------- FOOTER ---------- */
.footer {
    padding: 30px 0;
    border-top: 1px solid var(--gray-mid);
    margin-top: 80px;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ---------- REVEAL ANIMATIONS (default state) ---------- */
.reveal-text {
    opacity: 0;
    transform: translateY(40px);
}

.stat {
    opacity: 0;
    transform: translateY(30px);
}

.service-item {
    opacity: 0;
    transform: translateY(20px);
}

.project-card {
    opacity: 0;
    transform: translateY(40px);
}

.social__item {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.video__item {
    opacity: 0;
    transform: translateY(30px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .about__content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about__stats {
        flex-direction: row;
        gap: 30px;
    }

    .service-item {
        grid-template-columns: 40px 1fr auto;
    }

    .service-item__desc {
        display: none;
    }

    .video__showcase {
        grid-template-columns: 1fr;
    }

    .project-card {
        flex: 0 0 350px;
    }

    .project-card__image {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .cursor, .cursor-follower {
        display: none;
    }

    body {
        cursor: auto;
    }

    .nav__links {
        display: none;
    }

    .nav__menu-btn {
        display: flex;
    }

    .nav {
        padding: 20px 24px;
        mix-blend-mode: normal;
    }

    .hero__title {
        font-size: clamp(3rem, 14vw, 6rem);
    }

    .hero__info {
        flex-direction: column;
        gap: 20px;
    }

    .section-header {
        padding-top: 80px;
    }

    .section-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .about__paragraph {
        font-size: 1.1rem;
    }

    .about__stats {
        flex-direction: column;
    }

    .service-item {
        grid-template-columns: 1fr auto;
        gap: 16px;
    }

    .service-item__number {
        display: none;
    }

    .social__grid {
        grid-template-columns: 1fr 1fr;
    }

    .social__item--tall {
        grid-row: span 1;
    }

    .social__item--wide {
        grid-column: span 2;
    }

    .social__overlay {
        transform: translateY(0);
        opacity: 1;
    }

    .project-card {
        flex: 0 0 300px;
    }

    .project-card__image {
        height: 360px;
    }

    .contact__title {
        font-size: clamp(2.5rem, 10vw, 5rem);
    }

    .contact__socials {
        flex-direction: column;
        gap: 16px;
    }

    .footer__inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 12px;
    }

    .social__grid {
        grid-template-columns: 1fr;
    }

    .social__item--wide {
        grid-column: span 1;
    }

    .project-card {
        flex: 0 0 260px;
    }

    .project-card__image {
        height: 300px;
    }
}

/* ---------- SELECTION ---------- */
::selection {
    background: var(--blue);
    color: var(--black);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-mid);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue);
}
