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

:root {
    /* Light mode colors */
    --vscode-bg: #ffffff;
    --vscode-fg: #24292f;
    --vscode-blue: #0969da;
    --vscode-green: #116329;
    --vscode-cyan: #1b7c83;
    --vscode-purple: #8250df;
    --vscode-orange: #bc4c00;
    --vscode-comment: #6e7781;
    --vscode-keyword: #cf222e;
    --vscode-string: #032f62;
    --vscode-number: #0550ae;
    --vscode-function: #8250df;
    --vscode-variable: #0969da;

    --primary-color: #3b82f6;
    --secondary-color: #8b5cf6;
    --accent-color: #10b981;
    --dark-bg: #ffffff;
    --card-bg: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Dark mode */
body.dark-mode {
    --vscode-bg: #1e1e1e;
    --vscode-fg: #d4d4d4;
    --vscode-blue: #569cd6;
    --vscode-green: #6a9955;
    --vscode-cyan: #4ec9b0;
    --vscode-purple: #c586c0;
    --vscode-orange: #ce9178;
    --vscode-comment: #6a9955;
    --vscode-keyword: #569cd6;
    --vscode-string: #ce9178;
    --vscode-number: #b5cea8;
    --vscode-function: #dcdcaa;
    --vscode-variable: #9cdcfe;

    --dark-bg: #0f172a;
    --card-bg: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    background: transparent;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-mode .navbar {
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand h2 {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.dark-mode-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2000;
    background: var(--card-bg);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.dark-mode-toggle:hover {
    background: var(--primary-color);
    color: #fff;
}

.hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.developer-illustration {
    opacity: 0;
    animation: fadeInScale 1.2s ease-out 0.2s forwards;
}

.developer-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
}

body.dark-mode .developer-svg {
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
}

.animated-code-container {
    opacity: 0;
    animation: slideInRight 1s ease-out 0.8s forwards;
}

/* Simplified SVG Styling */
.bg-workspace {
    fill: #f8fafc;
}

body.dark-mode .bg-workspace {
    fill: #0f172a;
}

.desk-gradient-start {
    stop-color: #a0522d;
}

.desk-gradient-end {
    stop-color: #8b4513;
}

body.dark-mode .desk-gradient-start {
    stop-color: #8b4513;
}

body.dark-mode .desk-gradient-end {
    stop-color: #654321;
}

.desk-shadow {
    fill: rgba(0, 0, 0, 0.1);
}

.monitor-gradient-start {
    stop-color: #4a5568;
}

.monitor-gradient-end {
    stop-color: #2d3748;
}

body.dark-mode .monitor-gradient-start {
    stop-color: #2d3748;
}

body.dark-mode .monitor-gradient-end {
    stop-color: #1a202c;
}

.screen-gradient-start {
    stop-color: #1a1a1a;
}

.screen-gradient-end {
    stop-color: #000000;
}

.screen-reflection {
    fill: #ffffff;
}

.monitor-stand, .monitor-base {
    fill: #4a5568;
}

body.dark-mode .monitor-stand,
body.dark-mode .monitor-base {
    fill: #2d3748;
}

/* Enhanced code syntax highlighting */
.line-bg {
    fill: rgba(100, 100, 100, 0.1);
}

.line-number {
    fill: #6b7280;
    font-family: 'Fira Mono', monospace;
    font-size: 10px;
}

.code-keyword {
    fill: #3b82f6;
    font-family: 'Fira Mono', monospace;
    font-size: 11px;
    font-weight: bold;
}

.code-variable, .code-function {
    fill: #10b981;
    font-family: 'Fira Mono', monospace;
    font-size: 11px;
}

.code-string {
    fill: #f59e0b;
    font-family: 'Fira Mono', monospace;
    font-size: 11px;
}

.code-operator, .code-bracket {
    fill: #e5e7eb;
    font-family: 'Fira Mono', monospace;
    font-size: 11px;
}

.code-tag {
    fill: #8b5cf6;
    font-family: 'Fira Mono', monospace;
    font-size: 11px;
}

.code-attribute {
    fill: #f59e0b;
    font-family: 'Fira Mono', monospace;
    font-size: 11px;
}

.code-text {
    fill: #e5e7eb;
    font-family: 'Fira Mono', monospace;
    font-size: 11px;
}

.code-cursor {
    fill: #3b82f6;
    animation: blink 1s infinite;
}

/* Keyboard styling */
.keyboard-base, .keyboard-surface {
    fill: #4b5563;
    stroke: #374151;
    stroke-width: 1;
}

body.dark-mode .keyboard-base,
body.dark-mode .keyboard-surface {
    fill: #374151;
    stroke: #1f2937;
}

.key, .spacebar {
    fill: #f3f4f6;
    stroke: #d1d5db;
    stroke-width: 0.5;
}

body.dark-mode .key,
body.dark-mode .spacebar {
    fill: #6b7280;
    stroke: #4b5563;
}

/* Enhanced coffee styling */
.coffee-shadow {
    fill: rgba(0, 0, 0, 0.15);
}

.coffee-cup {
    fill: #ffffff;
    stroke: #e5e7eb;
    stroke-width: 2;
}

body.dark-mode .coffee-cup {
    fill: #f3f4f6;
    stroke: #d1d5db;
}

.coffee-surface {
    fill: #92400e;
}

.coffee-foam {
    fill: #fbbf24;
    opacity: 0.8;
}

.foam-bubble {
    fill: #ffffff;
    opacity: 0.6;
}

.coffee-handle {
    stroke: #d1d5db;
    stroke-width: 3;
    fill: none;
}

body.dark-mode .coffee-handle {
    stroke: #9ca3af;
}

.steam-particle {
    fill: #d1d5db;
    opacity: 0.7;
    animation: steamFloat 2s ease-in-out infinite;
}

.steam-line {
    stroke: #d1d5db;
    stroke-width: 1.5;
    fill: none;
    opacity: 0.5;
    animation: steamFloat 2.5s ease-in-out infinite;
}

.steam-particle:nth-child(2) { animation-delay: 0.3s; }
.steam-particle:nth-child(3) { animation-delay: 0.6s; }
.steam-particle:nth-child(4) { animation-delay: 0.9s; }

.steam-line:nth-child(2) { animation-delay: 0.5s; }
.steam-line:nth-child(3) { animation-delay: 1s; }

/* Floating elements */
.floating-code {
    fill: #8b5cf6;
    font-family: 'Fira Mono', monospace;
    font-size: 20px;
    font-weight: bold;
    opacity: 0.4;
    animation: floatUpDown 3s ease-in-out infinite;
}

.floating-dot {
    opacity: 0.5;
    animation: floatUpDown 4s ease-in-out infinite;
}

.floating-dot:nth-child(2) { animation-delay: 1s; }
.floating-dot:nth-child(3) { animation-delay: 2s; }
.animated-code {
    background: var(--vscode-bg);
    color: var(--vscode-fg);
    font-family: 'Fira Mono', 'Consolas', 'Monaco', monospace;
    font-size: 1rem;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.1);
    min-width: 320px;
    max-width: 500px;
    white-space: pre-line;
    overflow-x: auto;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}
.animated-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--vscode-blue), var(--vscode-cyan), var(--vscode-purple));
    border-radius: 12px 12px 0 0;
}
.animated-code .keyword { color: var(--vscode-keyword); }
.animated-code .string { color: var(--vscode-string); }
.animated-code .number { color: var(--vscode-number); }
.animated-code .function { color: var(--vscode-function); }
.animated-code .variable { color: var(--vscode-variable); }
.animated-code .comment { color: var(--vscode-comment); font-style: italic; }
.animated-code .type { color: var(--vscode-cyan); }
.animated-code .punctuation { color: var(--vscode-fg); }


.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
}

body.dark-mode .hero {
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.hero-background {
    display: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

body.dark-mode .hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    justify-content: center;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 
        var(--shadow-lg),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        var(--shadow-xl),
        0 0 30px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

body.dark-mode .btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        var(--shadow-lg),
        0 0 20px rgba(59, 130, 246, 0.2);
}

/* Projects Section */
.projects {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    position: relative;
    overflow: visible;
}
.hero {
    position: relative;
    overflow: hidden;
}



#threejs-header-canvas {
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Filter Buttons */
.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

body.dark-mode .filter-btn {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-out;
}

body.dark-mode .project-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.project-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

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

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

.tag {
    padding: 0.25rem 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    border-radius: 0.25rem;
    font-size: 0.875rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

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

.project-link:hover {
    gap: 0.75rem;
}

.forked-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background: rgba(139, 92, 246, 0.1);
    color: var(--secondary-color);
    border-radius: 0.25rem;
    font-size: 0.75rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: rgba(248, 250, 252, 0.5);
}

body.dark-mode .about {
    background: rgba(30, 41, 59, 0.5);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.skills-container {
    margin-top: 3rem;
}

.skills-container h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.skill-badge {
    padding: 0.75rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

body.dark-mode .skill-badge {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-badge:hover {
    background: var(--gradient-1);
    border-color: transparent;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

body.dark-mode .footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.social-links a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes codeLineAppear {
    from {
        opacity: 0;
        stroke-dasharray: 20;
        stroke-dashoffset: 20;
    }
    to {
        opacity: 1;
        stroke-dasharray: 20;
        stroke-dashoffset: 0;
    }
}

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

@keyframes steamFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
        opacity: 0.3;
    }
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-visual {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .developer-svg {
        max-width: 400px;
    }
    
    .animated-code-container {
        animation: slideInDown 1s ease-out 0.8s forwards;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
        margin: 2rem 0;
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 280px;
        justify-content: center;
    }
    
    .animated-code {
        min-width: 280px;
        max-width: 320px;
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .developer-svg {
        max-width: 300px;
    }
    
    .big-code {
        font-size: 24px;
    }
    
    .medium-code {
        font-size: 18px;
    }
    
    .small-code {
        font-size: 14px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Hide scrollbar for cleaner look */
::-webkit-scrollbar {
    width: 8px;
}

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

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

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