/* ============================================
   GitHub Pages Personal Website - Styles
   Clean, Modern, Professional Engineering Aesthetic
   ============================================ */

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

:root {
    --primary-color: #000000;
    --secondary-color: #001100;
    --accent-color: #00ff41;
    --accent-color-2: #00cc33;
    --accent-color-3: #00ff88;
    --text-primary: #00ff41;
    --text-secondary: #00cc33;
    --bg-light: #000000;
    --bg-dark: #000000;
    --bg-card: #000000;
    --border-color: #003300;
    --shadow: 0 4px 6px rgba(0, 255, 65, 0.2);
    --shadow-lg: 0 10px 25px rgba(0, 255, 65, 0.3);
    --shadow-glow: 0 0 20px rgba(0, 255, 65, 0.5);
    --transition: all 0.3s ease;
}

/* Always use dark theme for techie look */

body {
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    line-height: 1.6;
    color: var(--text-primary);
    background: #000000;
    background-attachment: fixed;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Binary Rain Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 65, 0.05) 2px,
            rgba(0, 255, 65, 0.05) 4px
        );
    pointer-events: none;
    z-index: 1;
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

/* Matrix Binary Code Rain Animation */
.binary-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background: #000000;
}

.binary-column {
    position: absolute;
    top: -100%;
    animation: fallColumn linear infinite;
}

@keyframes fallColumn {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }
}

.binary-char {
    position: absolute;
    color: #00ff41;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 700;
    opacity: 0.85;
    animation: fall linear infinite;
    text-shadow: 
        0 0 8px rgba(0, 255, 65, 1),
        0 0 15px rgba(0, 255, 65, 0.6);
}

@keyframes fall {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
    }
    95% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color-2);
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Navigation - Mr. Robot Boot Menu Style */
nav {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(0, 255, 65, 0.4);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 10px rgba(0, 255, 65, 0.3),
        0 2px 10px rgba(0, 0, 0, 0.9),
        inset 0 1px 0 rgba(0, 255, 65, 0.2);
    position: relative;
    overflow: hidden;
}

nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.6), transparent);
    animation: scanline 3s linear infinite;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
}

@keyframes scanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.nav-terminal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.terminal-prompt {
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    color: #00ff41;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 
        0 0 10px rgba(0, 255, 65, 0.8),
        0 0 20px rgba(0, 255, 65, 0.4);
    letter-spacing: 0.1em;
    animation: terminal-blink 1s step-end infinite;
    position: relative;
    opacity: 1;
}

.terminal-prompt::after {
    content: '_';
    animation: blink 1s step-end infinite;
    color: #00ff41;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

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

.nav-links-terminal {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-links-terminal li {
    position: relative;
}

.nav-links-terminal a {
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    color: #00ff41;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.6rem 1.2rem;
    position: relative;
    display: block;
    text-shadow: 
        0 0 5px rgba(0, 255, 65, 0.8),
        0 0 10px rgba(0, 255, 65, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
    opacity: 1;
    border: 1px solid transparent;
    background: rgba(0, 0, 0, 0.5);
    transform: perspective(500px) rotateX(0deg);
}

.nav-links-terminal a::before {
    content: '> ';
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-links-terminal a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #cc0000;
    box-shadow: 0 0 5px rgba(204, 0, 0, 0.6);
    transition: width 0.3s ease;
}

.nav-links-terminal a:hover {
    color: #ffffff;
    background: rgba(0, 255, 65, 0.15);
    border: 1px solid rgba(0, 255, 65, 0.6);
    text-shadow: 
        0 0 10px rgba(0, 255, 65, 1),
        0 0 20px rgba(0, 255, 65, 0.6),
        0 0 30px rgba(0, 255, 65, 0.3);
    transform: perspective(500px) rotateX(-10deg) translateY(-3px) translateZ(30px);
    animation: glitch-green 0.3s infinite;
    opacity: 1;
    box-shadow: 
        0 5px 15px rgba(0, 255, 65, 0.4),
        inset 0 0 10px rgba(0, 255, 65, 0.2);
}

.nav-links-terminal a:hover::before {
    opacity: 1;
}

.nav-links-terminal a:hover::after {
    width: 100%;
}

@keyframes glitch-green {
    0%, 100% {
        transform: perspective(500px) rotateX(-10deg) translateY(-3px) translateZ(30px);
        text-shadow: 
            0 0 10px rgba(0, 255, 65, 1),
            0 0 20px rgba(0, 255, 65, 0.6);
    }
    25% {
        transform: perspective(500px) rotateX(-10deg) translateY(-3px) translateX(1px) translateZ(30px);
        text-shadow: 
            1px 0 10px rgba(0, 255, 100, 0.9),
            0 0 20px rgba(0, 255, 65, 0.6);
    }
    50% {
        transform: perspective(500px) rotateX(-10deg) translateY(-3px) translateX(-1px) translateZ(30px);
        text-shadow: 
            -1px 0 10px rgba(0, 255, 80, 0.9),
            0 0 20px rgba(0, 255, 65, 0.6);
    }
    75% {
        transform: perspective(500px) rotateX(-10deg) translateY(-3px) translateZ(30px);
        text-shadow: 
            0 0 10px rgba(0, 255, 65, 1),
            0 0 20px rgba(0, 255, 65, 0.6);
    }
}

.nav-links-terminal a:active {
    transform: translateY(0) translateZ(10px) scale(0.98);
    text-shadow: 
        0 0 4px rgba(204, 0, 0, 0.6),
        0 0 8px rgba(204, 0, 0, 0.4);
    background: rgba(204, 0, 0, 0.2);
}

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

/* Hero Section */
.hero {
    text-align: center;
    padding: 1.5rem 2rem;
    margin: 0.5rem 0;
    position: relative;
    z-index: 10;
}

.hero * {
    position: relative;
    z-index: 10;
}

.profile-image-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 65, 0.5);
    box-shadow: 
        0 0 15px rgba(0, 255, 65, 0.5),
        0 0 30px rgba(0, 255, 65, 0.3);
    object-fit: cover;
    transition: var(--transition);
    /* Keep original image colors - no filter */
}

.profile-image:hover {
    transform: scale(1.03);
    box-shadow: 
        0 0 25px rgba(0, 255, 65, 0.7),
        0 0 50px rgba(0, 255, 65, 0.4);
    border-color: rgba(0, 255, 65, 0.8);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.calling-name {
    background: linear-gradient(135deg, #00ff41, #00cc33, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 
        0 0 20px rgba(0, 255, 65, 0.8),
        0 0 40px rgba(0, 255, 65, 0.5);
    animation: glow-green 3s ease-in-out infinite alternate;
    display: block;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    position: relative;
}

@keyframes glow-green {
    from {
        filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.8));
        text-shadow: 
            0 0 20px rgba(0, 255, 65, 0.8),
            0 0 40px rgba(0, 255, 65, 0.5);
    }
    to {
        filter: drop-shadow(0 0 20px rgba(0, 255, 65, 1));
        text-shadow: 
            0 0 30px rgba(0, 255, 65, 1),
            0 0 60px rgba(0, 255, 65, 0.6);
    }
}

.full-name {
    color: #00cc33;
    font-size: 4.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    display: block;
    position: relative;
    z-index: 10;
    text-shadow: 
        0 0 15px rgba(0, 255, 65, 0.9),
        0 0 30px rgba(0, 255, 65, 0.5);
}

.typing-name {
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    color: #00cc33;
    font-size: 4.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    border-right: 4px solid #00ff41;
    animation: typing-name 2.5s steps(25, end), blink-cursor-name 1s step-end infinite;
    width: 0;
    animation-fill-mode: forwards;
    text-shadow: 
        0 0 15px rgba(0, 255, 65, 0.9),
        0 0 30px rgba(0, 255, 65, 0.5);
}

@keyframes typing-name {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-cursor-name {
    0%, 50% {
        border-color: #00ff41;
    }
    51%, 100% {
        border-color: transparent;
    }
}

/* Typing animation for section headers */
.typing-header-cmd {
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    position: relative;
    display: inline-block;
    border-right: 3px solid #00ff41;
    animation: blink-cursor-cmd 1s step-end infinite;
    padding-right: 0.5rem;
    width: auto !important;
    max-width: 100% !important;
    overflow: visible !important;
    white-space: nowrap;
}

@keyframes blink-cursor-cmd {
    0%, 50% {
        border-color: #00ff41;
    }
    51%, 100% {
        border-color: transparent;
    }
}


.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00ff41;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 10;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

.subtitle-highlight {
    color: #00ff41;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    text-shadow: 
        0 0 5px rgba(0, 255, 65, 0.8),
        0 0 10px rgba(0, 255, 65, 0.4);
    position: relative;
    z-index: 10;
}

.subtitle-highlight:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.8));
}

.python-nerd {
    color: #00ff88;
    animation: python-glow 2s ease-in-out infinite alternate;
    text-shadow: 
        0 0 8px rgba(0, 255, 136, 0.9),
        0 0 16px rgba(0, 255, 136, 0.5);
}

@keyframes python-glow {
    from {
        text-shadow: 
            0 0 8px rgba(0, 255, 136, 0.9),
            0 0 16px rgba(0, 255, 136, 0.5);
    }
    to {
        text-shadow: 
            0 0 12px rgba(0, 255, 136, 1),
            0 0 24px rgba(0, 255, 136, 0.7);
    }
}

.python-nerd-tag {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.15) 0%, rgba(0, 255, 65, 0.05) 100%);
    border: 2px solid #00ff41;
    border-left: 4px solid #00ff41;
    color: #00ff41;
    box-shadow: 
        0 0 20px rgba(0, 255, 65, 0.6),
        0 0 40px rgba(0, 255, 65, 0.3),
        inset 0 0 15px rgba(0, 255, 65, 0.1);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    text-shadow: 
        0 0 10px rgba(0, 255, 65, 0.9),
        0 0 20px rgba(0, 255, 65, 0.5);
    position: relative;
    animation: pythonNerdGlow 2s ease-in-out infinite alternate;
}

@keyframes pythonNerdGlow {
    0% {
        box-shadow: 
            0 0 20px rgba(0, 255, 65, 0.6),
            0 0 40px rgba(0, 255, 65, 0.3),
            inset 0 0 15px rgba(0, 255, 65, 0.1);
        text-shadow: 
            0 0 10px rgba(0, 255, 65, 0.9),
            0 0 20px rgba(0, 255, 65, 0.5);
    }
    100% {
        box-shadow: 
            0 0 30px rgba(0, 255, 65, 0.8),
            0 0 60px rgba(0, 255, 65, 0.5),
            inset 0 0 20px rgba(0, 255, 65, 0.2);
        text-shadow: 
            0 0 15px rgba(0, 255, 65, 1),
            0 0 30px rgba(0, 255, 65, 0.7);
    }
}

.python-nerd-tag:hover {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.2) 0%, rgba(0, 255, 65, 0.1) 100%);
    box-shadow: 
        0 0 35px rgba(0, 255, 65, 0.9),
        0 0 70px rgba(0, 255, 65, 0.6),
        inset 0 0 25px rgba(0, 255, 65, 0.3);
    transform: translateY(-3px) scale(1.08);
    color: #00ff41;
    text-shadow: 
        0 0 20px rgba(0, 255, 65, 1),
        0 0 40px rgba(0, 255, 65, 0.8);
    border-width: 3px;
    border-left-width: 5px;
}

.hero .tagline {
    font-size: 1rem;
    color: #00cc33;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    line-height: 1.6;
}

.expertise-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
    position: relative;
    z-index: 10;
}

.expertise-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: #000000;
    border: 1.5px solid #00ff41;
    border-radius: 0;
    color: #00ff41;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.expertise-tag:hover {
    background-color: rgba(0, 255, 65, 0.1);
    color: #00ff41;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 15px rgba(0, 255, 65, 0.5),
        0 0 30px rgba(0, 255, 65, 0.3),
        0 5px 15px rgba(0, 255, 65, 0.2);
    text-shadow: 
        0 0 10px rgba(0, 255, 65, 0.8),
        0 0 20px rgba(0, 255, 65, 0.4);
    border-color: #00ff41;
    border-width: 2px;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero .divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 2rem auto;
    border: none;
}

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

/* Sections */
section {
    padding: 2rem 0;
    scroll-margin-top: 80px;
    position: relative;
    z-index: 10;
}

section .container {
    position: relative;
    z-index: 10;
}

section .container > * {
    position: relative;
    z-index: 10;
}

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
    color: #00ff41;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    text-transform: none;
    letter-spacing: 0.1em;
    text-shadow: 
        0 0 10px rgba(0, 255, 65, 0.8),
        0 0 20px rgba(0, 255, 65, 0.4);
}

/* Unique Header Styles */
.skills-header {
    font-size: 1.8rem;
    color: #00ff41;
    text-align: left;
    margin-left: 0;
    margin-bottom: 1.5rem;
    border: 2px solid #00ff41;
    padding: 1rem 1.5rem;
    display: inline-block;
    background: #000000;
    box-shadow: 
        0 0 10px rgba(0, 255, 65, 0.4),
        inset 0 0 10px rgba(0, 255, 65, 0.1);
    position: relative;
    z-index: 10;
    width: auto !important;
    max-width: 100% !important;
    overflow: visible !important;
}

.about-header {
    font-size: 1.8rem;
    color: #00ff41;
    text-align: left;
    margin-left: 0;
    margin-bottom: 1.5rem;
    border: 2px solid #00ff41;
    padding: 1rem 1.5rem;
    display: inline-block;
    background: #000000;
    box-shadow: 
        0 0 10px rgba(0, 255, 65, 0.4),
        inset 0 0 10px rgba(0, 255, 65, 0.1);
    position: relative;
    z-index: 10;
    width: auto !important;
    max-width: 100% !important;
    overflow: visible !important;
}

.projects-header {
    font-size: 1.8rem;
    color: #00ff41;
    text-align: left;
    margin-left: 0;
    margin-bottom: 1.5rem;
    border: 2px solid #00ff41;
    padding: 1rem 1.5rem;
    display: inline-block;
    background: #000000;
    box-shadow: 
        0 0 10px rgba(0, 255, 65, 0.4),
        inset 0 0 10px rgba(0, 255, 65, 0.1);
    position: relative;
    z-index: 10;
    width: auto !important;
    max-width: 100% !important;
    overflow: visible !important;
}

.contact-header {
    font-size: 1.8rem;
    color: #00ff41;
    text-align: left;
    margin-left: 0;
    margin-bottom: 1.5rem;
    border: 2px solid #00ff41;
    padding: 1rem 1.5rem;
    display: inline-block;
    background: #000000;
    box-shadow: 
        0 0 10px rgba(0, 255, 65, 0.4),
        inset 0 0 10px rgba(0, 255, 65, 0.1);
    position: relative;
    z-index: 10;
    width: auto !important;
    max-width: 100% !important;
    overflow: visible !important;
}

.achievement-header {
    font-size: 1.8rem;
    color: #00ff41;
    text-align: left;
    margin-left: 0;
    margin-bottom: 1.5rem;
    border: 2px solid #00ff41;
    padding: 1rem 1.5rem;
    display: inline-block;
    background: #000000;
    box-shadow: 
        0 0 10px rgba(0, 255, 65, 0.4),
        inset 0 0 10px rgba(0, 255, 65, 0.1);
    position: relative;
    z-index: 10;
    width: auto !important;
    max-width: 100% !important;
    overflow: visible !important;
}

@keyframes terminal-type {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

.typing-header {
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    color: #00ff41;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.1em;
    text-shadow: 
        0 0 10px rgba(0, 255, 65, 0.8),
        0 0 20px rgba(0, 255, 65, 0.4);
    position: relative;
    display: inline-block;
    white-space: nowrap;
    border-right: 3px solid #00ff41;
    animation: blink-cursor 1s step-end infinite;
    padding-right: 0.5rem;
    width: auto !important;
    overflow: visible !important;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-cursor {
    0%, 50% {
        border-color: #00ff41;
    }
    51%, 100% {
        border-color: transparent;
    }
}

/* Trophy emoji pop animation */
.section-title:has-text("🏆") {
    position: relative;
}

.section-title {
    display: inline-block;
}

.section-title::before {
    content: '';
    display: none;
}

/* Target trophy emoji specifically */
.section-title:first-letter,
.section-title {
    position: relative;
}

/* Trophy pop animation */
@keyframes trophyPop {
    0%, 100% {
        transform: scale(1) rotate(0deg) translateY(0);
        filter: drop-shadow(0 0 15px rgba(0, 255, 65, 1)) drop-shadow(0 0 30px rgba(0, 255, 65, 0.6));
    }
    25% {
        transform: scale(1.6) rotate(-20deg) translateY(-8px);
        filter: drop-shadow(0 0 35px rgba(0, 255, 65, 1)) drop-shadow(0 0 60px rgba(0, 255, 65, 0.8));
    }
    50% {
        transform: scale(1.5) rotate(20deg) translateY(-12px);
        filter: drop-shadow(0 0 40px rgba(0, 255, 65, 1)) drop-shadow(0 0 70px rgba(0, 255, 65, 0.9));
    }
    75% {
        transform: scale(1.55) rotate(-12deg) translateY(-10px);
        filter: drop-shadow(0 0 35px rgba(0, 255, 65, 1)) drop-shadow(0 0 60px rgba(0, 255, 65, 0.8));
    }
}

.trophy-emoji {
    display: inline-block;
    animation: trophyPop 1.5s ease-in-out infinite;
    font-size: 2em;
    margin-right: 0.8rem;
    transform-origin: center bottom;
    filter: drop-shadow(0 0 20px rgba(0, 255, 65, 1)) drop-shadow(0 0 40px rgba(0, 255, 65, 0.7));
}

/* PowerShell Style Cards */
.card {
    background: #000000;
    border-left: 3px solid #00ff41;
    border-top: 1px solid rgba(0, 255, 65, 0.3);
    border-right: 1px solid rgba(0, 255, 65, 0.3);
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 0;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 4px 6px rgba(0, 255, 65, 0.2),
        inset 0 0 20px rgba(0, 255, 65, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    cursor: pointer;
}

.card::before {
    content: '$ ./';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: #00ff41;
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

.card:hover {
    box-shadow: 
        0 0 25px rgba(0, 255, 65, 0.5),
        0 10px 30px rgba(0, 255, 65, 0.4),
        inset 0 0 35px rgba(0, 255, 65, 0.15);
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(0, 255, 65, 0.8);
    border-left-width: 4px;
    background: #000000;
    animation: cardPop 0.4s ease-out;
}

.card:hover::before {
    opacity: 1;
    text-shadow: 0 0 10px rgba(0, 255, 65, 1);
}

@keyframes cardPop {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-7px) scale(1.03);
    }
    100% {
        transform: translateY(-5px) scale(1.02);
    }
}

.card h2, .card h3 {
    color: #00ff41;
    margin-bottom: 1rem;
    margin-left: 0;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 
        0 0 10px rgba(0, 255, 65, 0.8),
        0 0 20px rgba(0, 255, 65, 0.4);
    animation: typewriter 0.5s steps(20);
}

.card p {
    margin-bottom: 1rem;
    margin-left: 0;
    color: #00cc33;
    line-height: 1.6;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
}

.card ul {
    margin-left: 1.5rem;
    color: #00cc33;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
}

@keyframes typewriter {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Achievements Section */
.achievements-section {
    background: transparent;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.achievements-section .container {
    position: relative;
    z-index: 10;
}

.achievements-section .container > * {
    position: relative;
    z-index: 10;
}

.achievement-card {
    background: #000000;
    border: 2px solid #00ff41;
    border-left: 4px solid #00ff41;
    border-radius: 0;
    padding: 2rem;
    margin: 0 auto;
    max-width: 900px;
    box-shadow: 
        0 0 30px rgba(0, 255, 65, 0.4),
        inset 0 0 40px rgba(0, 255, 65, 0.15);
    position: relative;
    overflow: visible;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    z-index: 10;
}

.achievement-card * {
    position: relative;
    z-index: 10;
    color: #00cc33 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.achievement-card h3 {
    color: #00ff41 !important;
}

.achievement-card strong {
    color: #00ff41 !important;
}

.achievement-card::before {
    content: '>>> ACHIEVEMENT UNLOCKED <<<';
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00ff41;
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-shadow: 
        0 0 10px rgba(0, 255, 65, 0.8),
        0 0 20px rgba(0, 255, 65, 0.4);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes achievementGlow {
    from {
        box-shadow: 0 20px 60px rgba(0, 255, 65, 0.2), 0 0 40px rgba(0, 255, 65, 0.1);
    }
    to {
        box-shadow: 0 20px 60px rgba(0, 255, 65, 0.4), 0 0 60px rgba(0, 255, 65, 0.2);
    }
}

.achievement-badge {
    display: inline-block;
    background: #000000;
    border: 3px solid #00ff41;
    color: #00ff41;
    padding: 1rem 2rem;
    border-radius: 0;
    font-weight: 900;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    box-shadow: 
        0 0 25px rgba(0, 255, 65, 0.8),
        0 0 50px rgba(0, 255, 65, 0.5),
        inset 0 0 20px rgba(0, 255, 65, 0.3);
    animation: badgePulse 1.5s ease-in-out infinite;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-shadow: 
        0 0 15px rgba(0, 255, 65, 1),
        0 0 30px rgba(0, 255, 65, 0.6);
    position: relative;
    z-index: 10;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 25px rgba(0, 255, 65, 0.8),
            0 0 50px rgba(0, 255, 65, 0.5),
            inset 0 0 20px rgba(0, 255, 65, 0.3);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 
            0 0 35px rgba(0, 255, 65, 1),
            0 0 70px rgba(0, 255, 65, 0.7),
            inset 0 0 30px rgba(0, 255, 65, 0.4);
    }
}

.achievement-card h3 {
    font-size: 2rem;
    color: #00ff41;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 
        0 0 15px rgba(0, 255, 65, 0.9),
        0 0 30px rgba(0, 255, 65, 0.5);
    border-bottom: 1px solid rgba(0, 255, 65, 0.4);
    padding-bottom: 0.5rem;
}

.achievement-subtitle {
    color: #00cc33 !important;
    font-size: 1.1rem;
    opacity: 1 !important;
    visibility: visible !important;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.achievement-content {
    position: relative;
    z-index: 2;
}

.achievement-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.achievement-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0;
}

.achievement-link {
    margin-top: 2rem;
    text-align: center;
}

/* Skills Section with Logos */
.skills-section {
    background: transparent;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.skills-section .container {
    background: transparent;
}

.skills-section::before {
    display: none;
}

.skills-grid-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.skill-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #000000;
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: skillPopIn 0.6s ease-out backwards;
}

.skill-logo-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.skill-logo-item:hover::before {
    width: 200px;
    height: 200px;
}

.skill-logo-item:nth-child(1) { animation-delay: 0.1s; }
.skill-logo-item:nth-child(2) { animation-delay: 0.2s; }
.skill-logo-item:nth-child(3) { animation-delay: 0.3s; }
.skill-logo-item:nth-child(4) { animation-delay: 0.4s; }
.skill-logo-item:nth-child(5) { animation-delay: 0.5s; }
.skill-logo-item:nth-child(6) { animation-delay: 0.6s; }
.skill-logo-item:nth-child(7) { animation-delay: 0.7s; }
.skill-logo-item:nth-child(8) { animation-delay: 0.8s; }
.skill-logo-item:nth-child(9) { animation-delay: 0.9s; }

@keyframes skillPopIn {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(50px);
    }
    50% {
        transform: scale(1.1) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.skill-logo-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 65, 0.4), 0 0 30px rgba(0, 255, 65, 0.3);
    border-color: #00ff41;
    background: #000000;
    z-index: 10;
}

.skill-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    /* Keep original logo colors - no filter */
    filter: drop-shadow(0 0 5px rgba(0, 255, 65, 0.3));
}

.skill-logo-item:hover .skill-logo {
    filter: drop-shadow(0 0 15px rgba(0, 255, 65, 0.8)) drop-shadow(0 0 30px rgba(0, 255, 65, 0.5));
    transform: scale(1.15) rotate(3deg);
}

.skill-name {
    font-weight: 600;
    color: #00cc33;
    font-size: 0.75rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    font-family: 'Courier New', monospace;
}

.skill-logo-item:hover {
    border-color: rgba(0, 255, 65, 0.7);
    box-shadow: 
        0 0 20px rgba(0, 255, 65, 0.5),
        0 0 40px rgba(0, 255, 65, 0.3),
        inset 0 0 20px rgba(0, 255, 65, 0.2);
}

.skill-logo-item:hover .skill-name {
    color: #00ff41;
    text-shadow: 
        0 0 10px rgba(0, 255, 65, 0.8),
        0 0 20px rgba(0, 255, 65, 0.4);
    transform: scale(1.05);
}

.skill-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.skill-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.skill-item h4 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

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

.project-card {
    background: #000000;
    border: 2px solid rgba(0, 255, 65, 0.5);
    border-left: 4px solid #00ff41;
    border-radius: 0;
    padding: 2rem;
    transition: var(--transition);
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    position: relative;
    z-index: 10;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 0 15px rgba(0, 255, 65, 0.3),
        inset 0 0 20px rgba(0, 255, 65, 0.1);
}

.project-card p,
.project-card li,
.project-card span,
.project-card div {
    color: #00cc33 !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 10;
}

.project-card ul {
    color: #00cc33 !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 10;
}

.project-card strong {
    color: #00ff41 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.project-card:hover {
    box-shadow: 
        0 0 20px rgba(0, 255, 65, 0.4),
        0 8px 20px rgba(0, 255, 65, 0.3);
    transform: translateY(-4px);
    border-color: rgba(0, 255, 65, 0.6);
}

.project-card h3 {
    color: #00ff41 !important;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
    opacity: 1 !important;
    visibility: visible !important;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tech-badge {
    background-color: #000000;
    border: 1px solid #00ff41;
    color: #00ff41;
    padding: 0.25rem 0.75rem;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Courier New', monospace;
    box-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #000000;
    border: 2px solid #00ff41;
    color: #00ff41;
    border-radius: 0;
    font-weight: 600;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

.btn:hover {
    background-color: rgba(0, 255, 65, 0.1);
    border-color: #00ff41;
    transform: translateY(-2px);
    box-shadow: 
        0 0 20px rgba(0, 255, 65, 0.6),
        0 0 40px rgba(0, 255, 65, 0.3);
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 255, 65, 1);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #00ff41;
    color: #00ff41;
}

.btn-secondary:hover {
    background-color: rgba(0, 255, 65, 0.1);
    color: #00ff41;
    box-shadow: 
        0 0 15px rgba(0, 255, 65, 0.5),
        0 0 30px rgba(0, 255, 65, 0.3);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #00ff41;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-left: 3px solid rgba(0, 255, 65, 0.5);
    border-radius: 0;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    font-size: 1rem;
    background-color: #000000;
    color: #00ff41;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff41;
    box-shadow: 
        0 0 10px rgba(0, 255, 65, 0.3),
        inset 0 0 10px rgba(0, 255, 65, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.contact-link:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    text-decoration: none;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        max-width: 900px;
        padding: 0 2rem;
    }

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

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

    .hero h1 {
        font-size: 3rem;
    }

    .calling-name {
        font-size: 3.5rem;
    }

    .full-name {
        font-size: 3.5rem;
    }

    .typing-name {
        font-size: 3.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .profile-image {
        width: 150px;
        height: 150px;
    }

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

    .calling-name {
        font-size: 3rem;
    }

    .full-name {
        font-size: 2.5rem;
    }
    
    .typing-name {
        font-size: 2.5rem;
    }

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

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

    .expertise-tags {
        gap: 0.5rem;
    }

    .expertise-tag {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-terminal {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 0;
    }

    .terminal-prompt {
        font-size: 0.75rem;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .nav-links-terminal {
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .nav-links-terminal a {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .skills-header,
    .about-header,
    .projects-header,
    .contact-header,
    .achievement-header {
        font-size: 1.4rem;
        padding: 0.8rem 1.2rem;
        margin-bottom: 1rem;
    }

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

    .card {
        padding: 1.2rem;
    }

    .card h2, .card h3 {
        font-size: 1.3rem;
    }

    .project-card {
        padding: 1.5rem;
    }

    .achievement-card {
        padding: 1.5rem;
    }

    .achievement-card h3 {
        font-size: 1.5rem;
    }

    .contact-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .contact-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .container {
        padding: 0 1rem;
    }

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

    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

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

    .skill-logo {
        width: 60px;
        height: 60px;
    }
}

/* Large Mobile Devices */
@media (max-width: 640px) {
    .hero {
        padding: 1.5rem 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .tagline {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .expertise-tags {
        gap: 0.4rem;
        padding: 0 1rem;
    }

    .skills-grid-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        max-width: 100%;
    }

    .skill-logo {
        width: 45px;
        height: 45px;
    }

    .skill-name {
        font-size: 0.7rem;
    }

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

/* Small Mobile Devices */
@media (max-width: 480px) {
    .profile-image {
        width: 120px;
        height: 120px;
    }

    .hero {
        padding: 1.5rem 0.8rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .calling-name {
        font-size: 2.2rem;
    }

    .full-name {
        font-size: 1.8rem;
    }
    
    .typing-name {
        font-size: 1.8rem;
    }

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

    .tagline {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .expertise-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
    }

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

    .skill-logo {
        width: 40px;
        height: 40px;
    }

    .skill-name {
        font-size: 0.65rem;
    }

    .skills-header,
    .about-header,
    .projects-header,
    .contact-header,
    .achievement-header {
        font-size: 1.2rem;
        padding: 0.6rem 1rem;
        margin-bottom: 1rem;
    }

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

    .card {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .card h2, .card h3 {
        font-size: 1.1rem;
    }

    .card p {
        font-size: 0.9rem;
    }

    .project-card {
        padding: 1.2rem;
    }

    .project-card h3 {
        font-size: 1.2rem;
    }

    .achievement-card {
        padding: 1.2rem;
    }

    .achievement-card h3 {
        font-size: 1.3rem;
    }

    .achievement-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .contact-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .terminal-prompt {
        display: none;
    }

    .nav-links-terminal {
        justify-content: space-around;
        width: 100%;
    }

    .nav-links-terminal a {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    section {
        padding: 1.5rem 0;
    }

    .container {
        padding: 0 0.8rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .calling-name {
        font-size: 1.8rem;
    }

    .full-name {
        font-size: 1.5rem;
    }

    .typing-name {
        font-size: 1.5rem;
    }

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

    .skill-logo {
        width: 35px;
        height: 35px;
    }

    .nav-links-terminal a {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
}

