/* ===========================
   CSS Variables & Root Styles
   =========================== */

:root {
    /* Dark Mode Colors (Default) */
    --bg-primary: #050505;
    --bg-secondary: #0d0d0d;
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --accent-color: #d4a017;
    --grid-color: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --shadow: rgba(0, 0, 0, 0.5);
}

[data-theme="light"] {
    --bg-primary: #F6F3EE;
    --bg-secondary: #FFFFFF;
    --text-primary: #111111;
    --text-secondary: #666666;
    --accent-color: #B8860B;
    --grid-color: rgba(0, 0, 0, 0.05);
    --card-border: rgba(0, 0, 0, 0.1);
    --shadow: rgba(0, 0, 0, 0.1);
}

/* ===========================
   Reset & Base Styles
   =========================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-image: 
        /* Animated grid with subtle pulse */
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px),
        /* Diagonal accent lines */
        linear-gradient(45deg, transparent 24px, rgba(212, 160, 23, 0.02) 25px, rgba(212, 160, 23, 0.02) 26px, transparent 27px, transparent 74px, rgba(212, 160, 23, 0.02) 75px, rgba(212, 160, 23, 0.02) 76px, transparent 77px),
        /* Subtle radial gradient overlay */
        radial-gradient(ellipse at center, transparent 0%, rgba(212, 160, 23, 0.01) 50%, transparent 100%);
    background-size: 50px 50px, 50px 50px, 100px 100px, 200px 200px;
    background-attachment: fixed;
    position: relative;
}

/* Animated grid pulse effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    background-attachment: fixed;
    opacity: 0;
    animation: gridPulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

/* Floating particles effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 160, 23, 0.1) 1px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(212, 160, 23, 0.08) 1px, transparent 2px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 2px),
        radial-gradient(circle at 60% 80%, rgba(212, 160, 23, 0.06) 1px, transparent 2px),
        radial-gradient(circle at 90% 60%, rgba(255, 255, 255, 0.04) 1px, transparent 2px);
    background-size: 300px 300px, 400px 400px, 250px 250px, 350px 350px, 500px 500px;
    animation: floatingParticles 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

/* ===========================
   Custom Cursor - REMOVED
   =========================== */

/* ===========================
   Theme Toggle
   =========================== */

.theme-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.theme-toggle:hover {
    transform: rotate(20deg) scale(1.1);
}

/* ===========================
   Enhanced Grid Effects
   =========================== */

/* Grid distortion on scroll */
@media (prefers-reduced-motion: no-preference) {
    body {
        background-attachment: fixed;
        transition: background-size 0.3s ease;
    }
    
    body:hover {
        background-size: 52px 52px, 52px 52px, 102px 102px, 202px 202px;
    }
}

/* Dynamic grid lines that respond to cursor */
.dynamic-grid-line {
    position: fixed;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 160, 23, 0.2) 20%, 
        rgba(212, 160, 23, 0.4) 50%, 
        rgba(212, 160, 23, 0.2) 80%, 
        transparent 100%);
    height: 1px;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.dynamic-grid-line.vertical {
    width: 1px;
    height: 100%;
    background: linear-gradient(0deg, 
        transparent 0%, 
        rgba(212, 160, 23, 0.2) 20%, 
        rgba(212, 160, 23, 0.4) 50%, 
        rgba(212, 160, 23, 0.2) 80%, 
        transparent 100%);
}

/* Glowing grid intersections */
.grid-glow {
    position: fixed;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: randomGlow 8s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    pointer-events: none;
    z-index: -1;
}

@keyframes randomGlow {
    0%, 90%, 100% { 
        opacity: 0; 
        transform: scale(0.3);
    }
    5%, 15% { 
        opacity: 1; 
        transform: scale(1.2);
    }
}

/* Enhanced light theme grid effects */
[data-theme="light"] body::before {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
}

[data-theme="light"] body::after {
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(184, 134, 11, 0.1) 1px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.08) 1px, transparent 2px),
        radial-gradient(circle at 40% 40%, rgba(0, 0, 0, 0.05) 1px, transparent 2px),
        radial-gradient(circle at 60% 80%, rgba(184, 134, 11, 0.06) 1px, transparent 2px),
        radial-gradient(circle at 90% 60%, rgba(0, 0, 0, 0.04) 1px, transparent 2px);
}

/* ===========================
   Vertical Navigation
   =========================== */

.vertical-nav {
    position: fixed;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.vertical-nav ul {
    list-style: none;
}

.vertical-nav li {
    margin: 1.5rem 0;
}

.vertical-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 1.5rem;
}

.vertical-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.vertical-nav a:hover,
.vertical-nav a.active {
    color: var(--accent-color);
}

.vertical-nav a.active::before {
    width: 12px;
}

/* ===========================
   Main Content
   =========================== */

.main-content {
    margin-left: 200px;
    padding: 2rem 2rem;
    max-width: 1600px;
}

/* ===========================
   Hero Section
   =========================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding: 4rem 0;
}

.hero-content {
    margin-bottom: 3rem;
    text-align: left;
    max-width: 600px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-location {
    font-size: 1rem;
    color: var(--text-secondary);
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-badge {
    position: absolute;
    top: 2rem;
    left: 0;
    background: var(--accent-color);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

/* ===========================
   Terminal Window
   =========================== */

.terminal-window {
    position: fixed;
    right: 4rem;
    top: 20%;
    transform: translateY(-50%);
    width: 450px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px var(--shadow);
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
    z-index: 50;
}

.terminal-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem 1rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--card-border);
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-btn.close {
    background: #ff5f56;
}

.terminal-btn.minimize {
    background: #ffbd2e;
}

.terminal-btn.maximize {
    background: #27c93f;
}

.terminal-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    margin-left: auto;
    color: var(--text-secondary);
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    line-height: 1.8;
    height: 350px;
    overflow-y: auto;
}

.terminal-body::-webkit-scrollbar {
    width: 6px;
}

.terminal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

.terminal-line {
    margin-bottom: 0.5rem;
}

.terminal-prompt {
    color: var(--accent-color);
}

.terminal-output {
    color: var(--text-primary);
    margin-left: 1rem;
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: var(--accent-color);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ===========================
   Section Styles
   =========================== */

section {
    padding: 3rem 0;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.section-number {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 400;
}

/* ===========================
   About Section
   =========================== */

.about-content {
    max-width: 900px;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ===========================
   Skills Section
   =========================== */

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

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

.skill-card {
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.skill-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.skill-tags span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: background 0.3s ease, border-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.skill-card:hover .skill-tags span {
    background: rgba(212, 160, 23, 0.1);
    border-color: var(--accent-color);
}

/* ===========================
   Projects Section
   =========================== */

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

.project-card {
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

/* Masked Project Styles */
.project-masked {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.project-masked:hover {
    border-color: var(--card-border);
    transform: translateY(0);
    cursor: not-allowed;
}

.project-masked h3 {
    filter: blur(0px);
    opacity: 0.3;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    z-index: 5;
}

.masked-overlay {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.5rem;
    z-index: 10;
}

.masked-overlay i {
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.5;
}

.masked-overlay p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.project-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.3;
}

.project-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.project-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.project-tags span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    padding: 0.4rem 0.9rem;
    border-radius: 15px;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.project-link:hover {
    transform: translateX(5px);
}

/* ===========================
   Education Section
   =========================== */

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--card-border);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 3px solid var(--bg-primary);
}

.timeline-year {
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.timeline-institution {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.timeline-cgpa {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
}

/* ===========================
   Certifications Section
   =========================== */

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

.cert-card {
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.cert-badge {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.cert-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cert-date {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.cert-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}



/* ===========================
   Contact Section
   =========================== */

.contact-content {
    max-width: 1000px;
}

.contact-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-row:last-child {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 0;
}

.contact-item {
    display: flex;
    flex-direction: column;
}

.contact-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.contact-item a,
.contact-item span {
    font-size: 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

/* ===========================
   Footer
   =========================== */

.footer {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer i {
    color: #e74c3c;
}

/* ===========================
   Animations
   =========================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gridPulse {
    0%, 100% { 
        opacity: 0; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.3; 
        transform: scale(1.02);
    }
}

@keyframes floatingParticles {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-40px) translateX(-5px);
    }
    75% {
        transform: translateY(-20px) translateX(-15px);
    }
    100% {
        transform: translateY(0px) translateX(0px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Grid intersection glow effect */
.grid-intersection-glow {
    position: fixed;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: intersectionGlow 6s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes intersectionGlow {
    0%, 100% { 
        opacity: 0; 
        transform: scale(0.5);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.5);
    }
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 1400px) {
    .terminal-window {
        width: 450px;
    }
}

@media (max-width: 1400px) {
    .terminal-window {
        right: 2rem;
        width: 420px;
    }
}

@media (max-width: 1200px) {
    .main-content {
        margin-left: 150px;
        padding: 2rem 3rem;
    }

    .vertical-nav {
        left: 2rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .terminal-window {
        width: 400px;
        right: 2rem;
    }

    .skills-grid,
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .vertical-nav {
        display: none;
    }

    .main-content {
        margin-left: 0;
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .skills-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .contact-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .theme-toggle {
        top: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

    .hero-badge {
        position: relative;
        top: auto;
        left: auto;
        display: inline-block;
        margin-top: 1rem;
    }

    .terminal-window {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 2rem auto 0;
        width: 100%;
        max-width: 100%;
    }

    .terminal-body {
        font-size: 0.75rem;
        padding: 1rem;
    }

    .project-card,
    .skill-card,
    .cert-card {
        padding: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .main-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .terminal-window {
        font-size: 0.7rem;
    }

    .terminal-body {
        padding: 0.75rem;
        font-size: 0.7rem;
    }

    .project-card,
    .skill-card,
    .cert-card {
        padding: 1.25rem;
    }

    .skill-tags,
    .project-tags {
        gap: 0.5rem;
    }

    .skill-tags span,
    .project-tags span {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }

    .contact-item a,
    .contact-item span {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ===========================
   Smooth Scrollbar
   =========================== */

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

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

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

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