:root {
    --bg-primary: #080c14;
    --bg-secondary: #0f172a;
    --bg-tertiary: #1e293b;
    --glass-bg: rgba(15, 23, 42, 0.65);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-shadow: rgba(0, 0, 0, 0.4);
    
    --accent-cyan: #38bdf8;
    --accent-purple: #c084fc;
    --accent-pink: #f472b6;
    --accent-green: #4ade80;
    --accent-yellow: #fbbf24;
    --accent-red: #f87171;
    --accent-blue: #60a5fa;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    
    --font-outfit: 'Outfit', sans-serif;
    --font-mono: 'Fira Code', monospace;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --glow-cyan: 0 0 20px rgba(56, 189, 248, 0.2);
    --glow-purple: 0 0 20px rgba(192, 132, 252, 0.2);
    --glow-green: 0 0 20px rgba(74, 222, 128, 0.2);
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-outfit);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Grids & Ambient Glows */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    z-index: -2;
    pointer-events: none;
}

.bg-glow {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    animation: pulse-glow 10s infinite alternate;
}

@keyframes pulse-glow {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(50px, 30px); }
}

/* Glassmorphism Common Style */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    border-radius: 16px;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-cyan { color: var(--accent-cyan); }
.text-purple { color: var(--accent-purple); }
.text-pink { color: var(--accent-pink); }
.text-green { color: var(--accent-green); }
.text-yellow { color: var(--accent-yellow); }
.text-red { color: var(--accent-red); }

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 50%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(8, 12, 20, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    font-family: var(--font-mono);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    gap: 4px;
}

.logo-term { color: var(--accent-green); }
.logo-tilde { color: var(--accent-cyan); }
.logo-prompt { color: var(--text-main); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: var(--text-main);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
    padding: 140px 0 80px 0;
    min-height: 95vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.os-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    color: var(--accent-green);
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    color: var(--accent-cyan);
    margin-bottom: 24px;
    height: 40px;
}

.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { color: transparent }
    50% { color: var(--accent-cyan); }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
    color: var(--bg-primary);
    border: none;
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

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

/* Kitty Terminal Mockup Style */
.kitty-terminal-wrapper {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.kitty-header {
    background: #181f2f;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.kitty-actions {
    display: flex;
    gap: 8px;
}

.kitty-actions .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.kitty-actions .close { background-color: var(--accent-red); }
.kitty-actions .minimize { background-color: var(--accent-yellow); }
.kitty-actions .maximize { background-color: var(--accent-green); }

.kitty-title {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.kitty-tab {
    background: #111726;
    padding: 4px 12px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    border-radius: 4px;
    color: var(--accent-cyan);
    border: 1px solid rgba(56, 189, 248, 0.15);
}

.kitty-body {
    background: #0f1423;
    padding: 24px;
    font-family: var(--font-mono);
    min-height: 300px;
}

.neofetch-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    font-size: 0.85rem;
}

.ascii-logo {
    color: var(--accent-green);
    font-weight: 700;
    line-height: 1.2;
}

.neofetch-user {
    color: var(--accent-green);
    font-weight: bold;
}

.neofetch-host {
    color: var(--accent-cyan);
    font-weight: bold;
}

.neofetch-divider {
    border: 0;
    height: 1px;
    background: var(--text-dark);
    margin: 8px 0;
}

.neofetch-key {
    color: var(--accent-purple);
    font-weight: bold;
}

.neofetch-val {
    color: var(--text-main);
}

.color-blocks {
    margin-top: 16px;
    display: flex;
    gap: 4px;
}

.color-blocks .block {
    width: 20px;
    height: 16px;
    display: inline-block;
}

.bg-black { background-color: #0f1423; border: 1px solid rgba(255,255,255,0.1); }
.bg-red { background-color: var(--accent-red); }
.bg-green { background-color: var(--accent-green); }
.bg-yellow { background-color: var(--accent-yellow); }
.bg-blue { background-color: var(--accent-blue); }
.bg-magenta { background-color: var(--accent-purple); }
.bg-cyan { background-color: var(--accent-cyan); }
.bg-white { background-color: var(--text-main); }

/* Common Section Layout */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, var(--glass-border), transparent);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.about-card {
    padding: 32px;
    transition: var(--transition-normal);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.2);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5), var(--glow-cyan);
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.skills-category {
    padding: 32px;
    transition: var(--transition-normal);
}

.skills-category:hover {
    transform: translateY(-3px);
    border-color: rgba(192, 132, 252, 0.2);
}

.skills-category h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.skill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.skill-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skill-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.skill-list li i {
    width: 20px;
    text-align: center;
}

.skills-badge-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.skills-badges {
    max-width: 100%;
    height: auto;
}

/* Projects Section */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 8px 20px;
    border-radius: 8px;
    font-family: var(--font-outfit);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--bg-primary);
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    box-shadow: 0 0 15px rgba(244, 114, 182, 0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.project-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-normal);
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 114, 182, 0.2);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5), 0 0 20px rgba(244, 114, 182, 0.1);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.project-icon {
    font-size: 1.5rem;
}

.project-tag-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--text-muted);
}

.project-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.project-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-grow: 1;
    margin-bottom: 20px;
}

.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.project-tags span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-cyan);
    background: rgba(56, 189, 248, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
}

.project-links {
    margin-top: auto;
}

.project-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.project-links a:hover {
    color: var(--accent-cyan);
}

.disabled-link {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Interactive Terminal Section */
.interactive-terminal {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.terminal-bar {
    background: #181f2f;
    padding: 10px 16px;
    display: flex;
    align-items: center;
}

.terminal-buttons {
    display: flex;
    gap: 6px;
    margin-right: 16px;
}

.term-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.term-dot.close { background: var(--accent-red); }
.term-dot.minimize { background: var(--accent-yellow); }
.term-dot.maximize { background: var(--accent-green); }

.terminal-header-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.terminal-screen {
    background: #0f1423;
    padding: 20px;
    height: 380px;
    overflow-y: auto;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.terminal-output {
    white-space: pre-wrap;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.term-welcome {
    color: var(--text-muted);
    font-weight: 500;
}

/* Custom terminal grid rows for responsiveness */
.term-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
    padding-left: 12px;
}

.term-line-cmd {
    min-width: 130px;
    display: inline-block;
    flex-shrink: 0;
}

.term-line-desc {
    color: var(--text-muted);
    word-break: break-word;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-prompt {
    color: var(--accent-green);
    white-space: nowrap;
}

#terminalInput {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    flex-grow: 1;
    caret-color: var(--accent-cyan);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    padding: 40px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item i {
    font-size: 1.2rem;
    width: 24px;
}

.contact-item span,
.contact-item a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-item a:hover {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.contact-action-container {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.contact-action-container h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-action-container p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.email-copy-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    gap: 16px;
}

#emailAddress {
    color: var(--accent-cyan);
    word-break: break-all;
}

.copy-btn {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: var(--accent-cyan);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-outfit);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.copy-btn:hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    box-shadow: var(--glow-cyan);
}

.copy-btn.copied {
    background: rgba(74, 222, 128, 0.15) !important;
    border-color: rgba(74, 222, 128, 0.3) !important;
    color: var(--accent-green) !important;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
    text-align: center;
    background: rgba(8, 12, 20, 0.9);
}

.footer p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.footer-meta {
    margin-top: 8px;
    font-size: 0.8rem !important;
}

/* Responsiveness */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .kitty-terminal-wrapper {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-controls {
        margin-right: 12px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--glass-border);
        padding: 24px;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .neofetch-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ascii-logo {
        display: none;
    }
}

/* Navigation Controls (Theme & Language Toggle) */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    margin-right: 24px;
}

.control-btn {
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.control-btn:hover {
    background: var(--bg-secondary);
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

/* Light Theme Overrides */
body.light-theme {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-shadow: rgba(15, 23, 42, 0.05);
    
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-dark: #94a3b8;
    
    --glow-cyan: 0 0 20px rgba(56, 189, 248, 0.1);
    --glow-purple: 0 0 20px rgba(192, 132, 252, 0.1);
    --glow-green: 0 0 20px rgba(74, 222, 128, 0.1);
}

body.light-theme .header {
    background: rgba(248, 250, 252, 0.75);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .bg-grid {
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

body.light-theme .logo-prompt {
    color: #475569;
}

body.light-theme .kitty-terminal-wrapper,
body.light-theme .interactive-terminal {
    background: #f1f5f9;
    border-color: #cbd5e1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-theme .kitty-header,
body.light-theme .terminal-bar {
    background: #e2e8f0;
    border-bottom: 1px solid #cbd5e1;
}

body.light-theme .kitty-title,
body.light-theme .terminal-header-title {
    color: #475569;
}

body.light-theme .kitty-tab {
    background: #f1f5f9;
    border-top: 1px solid #cbd5e1;
    border-left: 1px solid #cbd5e1;
    border-right: 1px solid #cbd5e1;
    color: #0f172a;
}

body.light-theme .kitty-body,
body.light-theme .terminal-screen {
    background: #f8fafc;
    color: #0f172a;
}

body.light-theme .text-cyan { color: #0284c7; }
body.light-theme .text-purple { color: #7c3aed; }
body.light-theme .text-pink { color: #db2777; }
body.light-theme .text-green { color: #16a34a; }
body.light-theme .text-yellow { color: #ca8a04; }
body.light-theme .text-red { color: #dc2626; }
body.light-theme .text-blue { color: #2563eb; }

body.light-theme .terminal-prompt {
    color: #16a34a;
}
body.light-theme .logo-tilde {
    color: #2563eb;
}
body.light-theme .logo-term {
    color: #475569;
}
body.light-theme .text-main {
    color: #0f172a;
}
body.light-theme .term-welcome {
    color: #64748b;
}
body.light-theme #terminalInput {
    color: #0f172a;
}

body.light-theme .btn-secondary {
    background: #e2e8f0;
    border-color: #cbd5e1;
    color: #475569;
}

body.light-theme .btn-secondary:hover {
    background: #cbd5e1;
    color: #0f172a;
}

body.light-theme .project-tag-badge {
    background: rgba(0, 0, 0, 0.05);
    color: #475569;
}

body.light-theme .project-tags span {
    background: rgba(0, 0, 0, 0.03);
    color: #475569;
}
