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

:root {
    --bg-primary: #0a0b0d;
    --bg-secondary: #1a1b1e;
    --bg-card: #2a2d31;
    --text-primary: #e4e4e7;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --accent-primary: #3b82f6;
    --accent-secondary: #06b6d4;
    --accent-success: #10b981;
    --accent-warning: #f59e0b;
    --accent-error: #ef4444;
    --border-subtle: #374151;
    --border-primary: #4b5563;
    --neural-blue: #6366f1;
    --neural-purple: #8b5cf6;
    --bio-green: #059669;
    --gpu-orange: #ea580c;
    --neon-cyan: #00ffff;
    --neon-pink: #ff00ff;
    --matrix-green: #00ff41;

    /* Terminal/Blog Colors for Dark Theme */
    --terminal-bg: #0a0b0d;
    --terminal-text: #e4e4e7;
    --terminal-gray: #71717a;
    --terminal-green: #00ff41;
    --terminal-blue: #00bfff;
    --terminal-yellow: #ffff00;
    --terminal-border: #374151;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.terminal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.03), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.02), transparent 50%),
        linear-gradient(45deg, rgba(234, 88, 12, 0.02) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

.terminal-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 255, 0.003) 2px,
            rgba(0, 255, 255, 0.003) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 0, 255, 0.003) 2px,
            rgba(255, 0, 255, 0.003) 4px
        );
    pointer-events: none;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 0.8; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(10px); }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 11, 13, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0.3;
}

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

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-primary);
    background: linear-gradient(135deg, var(--neon-cyan), var(--accent-primary), var(--neural-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.prompt {
    color: var(--prompt-color);
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-menu a:hover {
    color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.1);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-top: 80px;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-intro {
    margin-bottom: 2rem;
}

.greeting {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
    display: block;
    margin-bottom: 0.5rem;
}

.name {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-weight: 400;
    margin: 0.5rem 0 0 0;
}

.tagline {
    font-size: 1.6rem;
    color: var(--accent-primary);
    font-weight: 700;
    margin: 1.5rem 0 0.5rem 0;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--gpu-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0 0 1.5rem 0;
    font-style: italic;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 2rem 0;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.highlight-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--neon-cyan), var(--neural-blue), var(--gpu-orange));
    opacity: 0;
    transition: all 0.4s ease;
}

.highlight-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.highlight-item:hover::before {
    opacity: 1;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.highlight-item:hover::after {
    left: 100%;
}

.highlight-item:hover {
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.2);
    border-color: var(--neon-cyan);
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 10px currentColor;
}

.highlight-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.highlight-title {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.highlight-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.code-visualization {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.code-window {
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.code-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neural-purple), var(--gpu-orange));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.code-window:hover::before {
    opacity: 0.3;
}

.code-window:hover {
    transform: translateY(-5px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 255, 255, 0.2);
}

.window-header {
    background: var(--bg-card);
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

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

.control.close { background: #ff5f56; }
.control.minimize { background: #ffbd2e; }
.control.maximize { background: #27ca3f; }

.window-title {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.code-content {
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-line {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.line-number {
    color: var(--text-muted);
    margin-right: 1rem;
    min-width: 20px;
    text-align: right;
}

.keyword { color: #ff79c6; }
.module { color: #8be9fd; }
.function { color: #50fa7b; }
.string { color: #f1fa8c; }
.comment { color: #6272a4; }
.indent { color: transparent; }

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(37, 37, 40, 0.95);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(0, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: scale(1.05);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(0, 255, 255, 0.2);
    border-color: var(--neon-cyan);
}

.floating-card .highlight {
    color: var(--neon-cyan);
    font-weight: 600;
    text-shadow: 0 0 5px var(--neon-cyan);
}

.floating-card.dna {
    top: 10%;
    right: -20%;
    animation-delay: 0s;
}

.floating-card.gpu {
    bottom: 30%;
    right: -15%;
    animation-delay: 2s;
}

.floating-card.ai {
    top: 60%;
    left: -25%;
    animation-delay: 4s;
}

.card-icon {
    font-size: 1.2rem;
}

.card-text {
    color: var(--text-secondary);
    line-height: 1.2;
}

.card-text .highlight {
    color: var(--accent-primary);
    font-weight: 600;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}


.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .name {
        font-size: 2.5rem;
    }

    .floating-card {
        display: none;
    }

    .code-window {
        max-width: 350px;
    }
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: inherit;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

.btn-primary:hover {
    background: var(--neural-blue);
    border-color: var(--neural-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-secondary);
    border-color: var(--accent-secondary);
}

.btn-secondary:hover {
    background: var(--accent-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.section {
    padding: 5rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

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

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

.education {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.education::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bio-green), var(--neural-blue));
}

.education h3 {
    color: var(--accent-primary);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.edu-item h4 {
    color: var(--accent-secondary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.edu-item p {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-card {
    background: linear-gradient(135deg, var(--bg-card), rgba(42, 45, 49, 0.95));
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr 300px;
    min-height: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.project-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-visual {
    background: linear-gradient(135deg,
        rgba(0, 255, 65, 0.05),
        rgba(0, 191, 255, 0.05),
        rgba(139, 92, 246, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-icon {
    font-size: 4rem;
    opacity: 0.15;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neon-cyan);
}

/* GPU Performance Bars in Project Visual */
.gpu-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 60%;
}

.gpu-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gpu-bar-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    min-width: 60px;
}

.gpu-bar-fill {
    flex: 1;
    height: 6px;
    background: var(--border-subtle);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.gpu-bar-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--bio-green), var(--neural-blue));
    border-radius: 3px;
    animation: fillProgress 2s ease-out forwards;
}

.gpu-bar-value {
    font-size: 0.8rem;
    color: var(--neon-cyan);
    font-weight: 600;
    min-width: 40px;
}

@keyframes fillProgress {
    from { width: 0; }
    to { width: var(--width, 100%); }
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
    transition: left 0.8s ease;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bio-green), var(--neural-blue), var(--gpu-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.project-card:hover::after {
    left: 100%;
}

.project-card:hover h3 {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.project-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

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

.project-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.project-stats .stat {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-success);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.project-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

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

.project-links a {
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-primary);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.project-links a:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
}

.tech-tag {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-primary);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.2s ease;
}

.tech-tag:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-1px);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.skill-category {
    background: linear-gradient(135deg, var(--bg-card), rgba(42, 45, 49, 0.95));
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.skill-category:hover {
    border-color: var(--border-primary);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.skill-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.skill-badges img {
    height: 32px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neural-blue), var(--neural-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-category:hover::before {
    opacity: 1;
}

.skill-category h3 {
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

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

.skill-tag {
    background: rgba(99, 102, 241, 0.1);
    color: var(--neural-blue);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.skill-tag:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.exp-item {
    background: rgba(33, 38, 45, 0.4);
    border: 1px solid var(--terminal-border);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
}

.exp-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--terminal-green);
}

.exp-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.exp-header h3 {
    color: var(--terminal-green);
    font-size: 1.3rem;
}

.exp-status, .exp-type {
    background: var(--terminal-blue);
    color: var(--terminal-bg);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.exp-company {
    color: var(--terminal-text);
    font-weight: 500;
    font-size: 1.1rem;
}

.exp-location, .exp-duration {
    color: var(--terminal-gray);
    margin-bottom: 0.25rem;
}

.exp-achievements {
    margin-top: 1rem;
    padding-left: 1rem;
}

.exp-achievements li {
    color: var(--terminal-text);
    margin-bottom: 0.5rem;
    list-style: none;
    position: relative;
}

.exp-achievements li::before {
    content: "▸";
    color: var(--terminal-blue);
    position: absolute;
    left: -1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-method {
    background: rgba(33, 38, 45, 0.4);
    border: 1px solid var(--terminal-border);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--terminal-blue);
    transform: translateY(-5px);
}

.contact-method h3 {
    color: var(--terminal-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-method a {
    color: var(--terminal-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--terminal-green);
    text-decoration: underline;
}

.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--terminal-border);
    background: rgba(13, 17, 23, 0.8);
}

.footer-content {
    text-align: center;
}

.footer-quote {
    margin-bottom: 2rem;
}

.footer-quote p {
    color: var(--accent-secondary);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-quote span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.1);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

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

    .nav-menu {
        gap: 1rem;
    }

    .hero {
        padding: 1rem;
    }

    .terminal-body {
        padding: 1.5rem;
    }

    .name {
        font-size: 2rem;
    }

    .system-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .container {
        padding: 0 1rem;
    }

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

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

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

    .footer-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

::selection {
    background: var(--selection);
}

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

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

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

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