@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #E0E0E0;
}

.code-font {
    font-family: 'JetBrains Mono', monospace;
}

.tech-card {
    transition: all 0.3s ease;
}

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

.project-card {
    transition: all 0.3s ease;
}

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

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #FFD100;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.terminal {
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.terminal-header {
    background: #2D2D2D;
    padding: 8px 15px;
    display: flex;
    align-items: center;
}

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

.terminal-body {
    background: #1E1E1E;
    padding: 15px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 18px;
    background-color: #FFD100;
    animation: blink 1s infinite;
    vertical-align: middle;
}

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

.skill-bar {
    height: 8px;
    border-radius: 4px;
    background: #2D2D2D;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #FFD100, #E6BC00);
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 1.5s ease;
}

.skill-progress-purple {
    height: 100%;
    background: linear-gradient(90deg, #9C5FFF, #7A3DD8);
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 1.5s ease;
}

.logo-placeholder-text {
    text-align: center;
    padding: 20px;
    font-weight: bold;
}