* {
    box-sizing: border-box;
    font-family: "SF Mono", Menlo, Monaco, Consolas, monospace;
    margin: 0;
    padding: 0;
}

body {
    background: #0d0d0d;
    color: #e5e5e5;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 800px;
    max-width: 95%;
}

.profile {
    text-align: center;
    margin-bottom: 25px;
}

.profile h1 {
    margin: 0;
    font-size: 36px;
    min-height: 1.2em;
}

.profile p {
    margin: 5px 0 0;
    color: #aaa;
}

.terminal {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.terminal-header {
    background: #2b2b2b;
    padding: 10px;
    display: flex;
    gap: 8px;
    position: relative;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #aaa;
    font-size: 13px;
}

.terminal-body {
    padding: 15px;
    min-height: 260px;
    max-height: 400px;
    overflow-y: auto;
    flex: 1; 
}

.prompt { color: #00ff9c; }
.path { color: #4aa3ff; }

.input-line {
    display: flex;
    align-items: center;
}

input {
    background: none;
    border: none;
    color: #e5e5e5;
    outline: none;
    font-size: 15px;
    width: 100%;
}

.line {
    margin-bottom: 6px;
}

a {
    color: #4aa3ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
