body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: monospace;
    padding: 2rem 1rem;
}

a {
    color: #0dcaf0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.terminal {
    background: #1e1e1e;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 10px #000;
}

.terminal-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.terminal-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.red {
    background: #f44336;
}

.yellow {
    background: #ffeb3b;
}

.green {
    background: #4caf50;
}

.section-title {
    border-left: 4px solid #0dcaf0;
    padding-left: 0.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
}