:root {
    --bg: #0d1117;
    --text: #c9d1d9;
    --accent: #58a6ff;
    --code-bg: #161b22;
}
body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}
h1, h2 { color: var(--accent); font-family: 'Courier New', Courier, monospace; }
.terminal {
    background: var(--code-bg);
    border: 1px solid #30363d;
    padding: 20px;
    border-radius: 6px;
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 30px;
}

.project-card {
    display: flex;         
    align-items: center;   
    justify-content: space-between;
    background: #161b22;   
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #30363d;
    gap: 20px;             
    margin-bottom: 20px;
}
.project-info {
    flex: 2;              
}

.project-media {
    flex: 1;              
    display: flex;
    justify-content: center;
}

.project-media img {
    width: 200px;         
    height: 120px;        
    object-fit: cover;     
    border-radius: 4px;
    border: 2px solid #30363d;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

@media (max-width: 600px) {
    .project-card {
        flex-direction: column;
        text-align: center;
    }
    .project-media img {
        width: 100%;      
        height: auto;
    }
}
.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.tag {
    font-size: 0.8rem;
    background: #238636;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    margin-right: 5px;
}