/* ============================================================
   DMITRII IANENKO — Cyberpunk Neon Theme
   ============================================================ */

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

:root {
    /* Neon palette */
    --neon-cyan: #00fff0;
    --neon-magenta: #ff00ff;
    --neon-pink: #ff2d7b;
    --neon-yellow: #f0ff00;
    --neon-blue: #00b4ff;
    --neon-green: #39ff14;

    /* Primary = cyan, accent = magenta */
    --primary: var(--neon-cyan);
    --accent: var(--neon-magenta);
    --accent2: var(--neon-pink);

    /* Backgrounds */
    --bg-dark: #050510;
    --bg-card: rgba(10, 10, 30, 0.7);
    --bg-card-hover: rgba(20, 20, 50, 0.85);
    --bg-nav: rgba(5, 5, 16, 0.85);

    /* Text */
    --text-primary: #e0e0ff;
    --text-secondary: #8888aa;
    --text-dim: #555577;

    /* Glow */
    --glow-cyan: 0 0 10px rgba(0, 255, 240, 0.3), 0 0 40px rgba(0, 255, 240, 0.15), 0 0 80px rgba(0, 255, 240, 0.05);
    --glow-magenta: 0 0 10px rgba(255, 0, 255, 0.3), 0 0 40px rgba(255, 0, 255, 0.15), 0 0 80px rgba(255, 0, 255, 0.05);
    --glow-cyan-strong: 0 0 5px rgba(0, 255, 240, 0.6), 0 0 20px rgba(0, 255, 240, 0.4), 0 0 60px rgba(0, 255, 240, 0.2), 0 0 120px rgba(0, 255, 240, 0.1);

    /* Fonts */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;

    /* Sizes */
    --container: 1200px;
    --nav-height: 70px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-primary);
    background: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none; /* Hide default cursor */
}

a, button, .btn, .nav__link {
    cursor: none !important;
}

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

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

/* --- Scanlines overlay --- */
.scanlines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 240, 0.015) 2px,
        rgba(0, 255, 240, 0.015) 4px
    );
}

/* --- Grid overlay --- */
.grid-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image:
        linear-gradient(rgba(0, 255, 240, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 240, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* --- Particles canvas --- */
#particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* --- Glitch text effect --- */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
}

.glitch-text:hover::before {
    animation: glitch-1 0.3s ease-in-out;
    color: var(--neon-cyan);
    opacity: 0.8;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch-text:hover::after {
    animation: glitch-2 0.3s ease-in-out;
    color: var(--neon-magenta);
    opacity: 0.8;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 2px); }
    40% { transform: translate(3px, -2px); }
    60% { transform: translate(-2px, 1px); }
    80% { transform: translate(2px, -1px); }
    100% { transform: translate(0); }
}

@keyframes glitch-2 {
    0% { transform: translate(0); }
    20% { transform: translate(3px, -2px); }
    40% { transform: translate(-3px, 2px); }
    60% { transform: translate(2px, -1px); }
    80% { transform: translate(-2px, 1px); }
    100% { transform: translate(0); }
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 240, 0.08);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav--hidden {
    transform: translateY(-100%);
}

.nav--scrolled {
    box-shadow: 0 4px 30px rgba(0, 255, 240, 0.05);
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: var(--glow-cyan);
    letter-spacing: 0.1em;
}

.nav__links {
    display: flex;
    gap: 2.5rem;
}

.nav__link {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    transition: color 0.3s ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: var(--primary);
}

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

.nav__cta {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--bg-dark);
    background: var(--primary);
    padding: 0.6rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav__cta:hover {
    background: #fff;
    box-shadow: var(--glow-cyan);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn--primary {
    background: var(--primary);
    color: var(--bg-dark);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    font-weight: 600;
}

.btn--primary:hover {
    background: #fff;
    box-shadow: var(--glow-cyan-strong);
    transform: translateY(-2px);
}

.btn--ghost {
    color: var(--primary);
    border: 1px solid rgba(0, 255, 240, 0.3);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.btn--ghost:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 240, 0.05);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.btn__icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn__icon {
    transform: translateX(4px);
}

/* --- Section common --- */
.section__header {
    margin-bottom: 3rem;
}

.section__number {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--primary);
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.section__number::before {
    content: '//';
    margin-right: 0.3rem;
    color: var(--accent);
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 2rem) 3rem 4rem;
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(0, 255, 240, 0.15);
    background: rgba(0, 255, 240, 0.03);
}

.hero__tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 6px var(--neon-green), 0 0 12px var(--neon-green);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero__tag-text {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero__title {
    margin-bottom: 1.5rem;
}

.hero__title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

.hero__title-line--accent {
    color: var(--primary);
    text-shadow: var(--glow-cyan);
}

.hero__subtitle {
    font-family: var(--font-mono);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    text-shadow: var(--glow-magenta);
}

.hero__desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 550px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* Hero visual — decorative hex */
.hero__visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.hero__3d-rings {
    width: 450px;
    height: 450px;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1200px;
    pointer-events: none;
}

.ring {
    position: absolute;
    inset: 15%;
    border-radius: 50%;
    border: 2px solid transparent;
    opacity: 0.6;
    box-shadow: 0 0 20px rgba(0,255,240,0.1), inset 0 0 20px rgba(255,0,255,0.1);
    transition: transform 0.1s linear;
}

.ring-1 {
    border-top-color: var(--primary);
    border-bottom-color: var(--accent);
    animation: rotate-3d-1 18s linear infinite;
}

.ring-2 {
    inset: 22%;
    border-top-color: var(--accent);
    border-bottom-color: var(--neon-blue);
    animation: rotate-3d-2 22s linear infinite reverse;
}

.ring-3 {
    inset: 29%;
    border-top-color: var(--neon-blue);
    border-bottom-color: var(--neon-green);
    animation: rotate-3d-3 25s linear infinite;
}

@keyframes rotate-3d-1 {
    from { transform: rotateZ(0deg) rotateX(60deg) rotateY(0deg); }
    to { transform: rotateZ(360deg) rotateX(60deg) rotateY(0deg); }
}
@keyframes rotate-3d-2 {
    from { transform: rotateZ(0deg) rotateX(45deg) rotateY(45deg); }
    to { transform: rotateZ(360deg) rotateX(45deg) rotateY(45deg); }
}
@keyframes rotate-3d-3 {
    from { transform: rotateZ(0deg) rotateX(70deg) rotateY(-45deg); }
    to { transform: rotateZ(360deg) rotateX(70deg) rotateY(-45deg); }
}

/* --- Custom Cursor --- */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 255, 240, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background 0.2s, border-color 0.2s;
}

body.cursor--hover .cursor {
    width: 12px;
    height: 12px;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

body.cursor--hover .cursor-follower {
    width: 60px;
    height: 60px;
    border-color: rgba(255, 0, 255, 0.6);
    background: rgba(255, 0, 255, 0.05);
}

/* --- ABOUT --- */
.about {
    padding: 8rem 3rem;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about__content {
    display: grid;
    grid-template-columns: 320px 1fr 240px;
    gap: 3rem;
    align-items: center;
}

/* --- About Photo (Beautiful Cyberpunk frame) --- */
.about__image-container {
    position: relative;
    width: 100%;
    height: 420px;
    border: 1px solid rgba(0, 255, 240, 0.4);
    background: var(--bg-card);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 255, 240, 0.05);
}

.about__image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-top-color: var(--primary);
    border-bottom-color: var(--accent);
    opacity: 0.8;
    pointer-events: none;
    z-index: 2;
}

.about__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) contrast(1.1) brightness(0.9);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.about__image-container:hover .about__image {
    filter: grayscale(0%) contrast(1.1) brightness(1);
    transform: scale(1.05);
}

.about__image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 0, 255, 0.3), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: overlay;
}

.about__image-container:hover .about__image-glow {
    opacity: 1;
}

.about__lead {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about__text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about__stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
    border: 1px solid rgba(0, 255, 240, 0.1);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    position: relative;
}

.about__stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    box-shadow: var(--glow-cyan);
}

.stat {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.stat__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: var(--glow-cyan);
    line-height: 1;
}

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

.stat__label {
    width: 100%;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.3rem;
}

/* --- SERVICES --- */
.services {
    padding: 8rem 3rem;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.service-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 240, 0.06);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 255, 240, 0.15), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    opacity: 0;
    pointer-events: none;
}

.service-card:hover {
    border-color: rgba(0, 255, 240, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 255, 240, 0.1);
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
}

.service-card__icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 6px rgba(0, 255, 240, 0.3));
    position: relative;
    z-index: 1;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* --- CONTACT --- */
.contact {
    padding: 8rem 3rem;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact__lead {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact__channels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
}

.contact__channel {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 240, 0.08);
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.contact__channel:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
    box-shadow: 0 0 30px rgba(0, 255, 240, 0.05);
    transform: translateX(8px);
}

.contact__channel-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    min-width: 80px;
}

.contact__channel-value {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-primary);
    flex: 1;
}

.contact__channel-arrow {
    font-size: 1.2rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.contact__channel:hover .contact__channel-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* --- FOOTER --- */
.footer {
    padding: 2rem 3rem;
    border-top: 1px solid rgba(0, 255, 240, 0.06);
    position: relative;
    z-index: 2;
}

.footer__content {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__name {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.footer__tagline {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
}

/* --- Scroll reveal animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }
.reveal--delay-6 { transition-delay: 0.6s; }
.reveal--delay-7 { transition-delay: 0.7s; }

/* --- Neon border animation for hero --- */
@keyframes border-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__visual {
        display: none;
    }
    
    .about__content {
        grid-template-columns: 300px 1fr;
        align-items: start;
    }
    .about__stats {
        grid-column: span 2;
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0 1.5rem;
    }

    .nav__links {
        display: none;
    }

    .nav__cta {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .hero {
        padding: calc(var(--nav-height) + 1rem) 1.5rem 3rem;
    }

    .hero__title-line {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero__subtitle {
        letter-spacing: 0.15em;
        font-size: 0.85rem;
    }

    .about {
        padding: 5rem 1.5rem;
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services {
        padding: 5rem 1.5rem;
    }

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

    .contact {
        padding: 5rem 1.5rem;
    }

    .contact__channel {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1.2rem 1.5rem;
    }

    .contact__channel-label {
        min-width: unset;
        width: 100%;
    }

    .footer__content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title-line {
        font-size: 2.2rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }
}

/* --- Selection color --- */
::selection {
    background: rgba(0, 255, 240, 0.3);
    color: #fff;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 240, 0.2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 240, 0.4);
}
