:root {
    --bg: #0C0C0E;
    --kilo-yellow: #FAFF70;
    --card-bg: #161619;
    --border: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    color: #EDEDED;
    font-family: 'Silkscreen', cursive;
    text-transform: uppercase;
    padding: 48px 24px;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: rgba(250, 255, 112, 0.25);
    color: #fff;
}

h1 {
    margin: 0;
    font-weight: 700;
    font-size: clamp(40px, 6.5vw, 68px);
    line-height: 1;
    letter-spacing: 1px;
    color: #FFFFFF;
}

.meta {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.name {
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--kilo-yellow);
    text-shadow: 0 0 16px rgba(250, 255, 112, 0.25);
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #38383E;
}

.age {
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #71717A;
}

.socials {
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.social-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--card-bg);
    box-shadow: inset 0 0 0 1px var(--border);
    color: #A1A1AA;
    font-size: 22px;
    text-decoration: none;
    transition: all 160ms cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
}

.social-btn:not(.is-disabled):hover {
    color: var(--kilo-yellow);
    background: rgba(250, 255, 112, 0.08);
    box-shadow: inset 0 0 0 1px var(--kilo-yellow), 0 0 18px rgba(250, 255, 112, 0.15);
    transform: translateY(-3px);
}

.is-disabled {
    cursor: default;
}

.is-disabled i {
    opacity: 0.25;
}

.is-disabled:hover {
    transform: none;
    color: #71717A;
    background: var(--card-bg);
    box-shadow: inset 0 0 0 1px var(--border);
}

.is-disabled::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #141417;
    color: #D4D4D8;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    text-transform: none;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 9px;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 140ms ease, transform 140ms ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    z-index: 20;
}

.is-disabled:hover::after,
.is-disabled:active::after,
.is-disabled:focus-visible::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.terminal-window {
    margin-top: 40px;
    width: 100%;
    max-width: 640px;
    background: #09090B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.7);
    text-align: left;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    line-height: 1.5;
}

.terminal-header {
    background: #121215;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.terminal-dots {
    display: flex;
    gap: 7px;
}

.terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #27272A;
}

.terminal-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #71717A;
    letter-spacing: 0.5px;
    text-transform: none;
}

.terminal-body {
    padding: 16px;
    max-height: 380px;
    overflow-y: auto;
    color: #D4D4D8;
    text-transform: none;
}

.terminal-banner {
    font-family: 'JetBrains Mono', monospace;
    color: var(--kilo-yellow);
    font-size: 6.8px;
    line-height: 1;
    margin: 4px 0 14px 0;
    white-space: pre !important;
    word-break: normal !important;
    text-shadow: 0 0 8px rgba(250, 255, 112, 0.25);
    overflow-x: hidden;
}

.term-log {
    color: #71717A;
    margin: 3px 0;
}

.term-log.ok span {
    color: #4ADE80;
}

.term-project {
    display: block;
    margin: 10px 0;
    padding: 10px 14px;
    background: #131317;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    text-decoration: none;
    color: #EDEDED;
    transition: all 140ms ease;
    animation: card-in 320ms ease both;
}

.term-project:hover {
    border-color: var(--kilo-yellow);
    background: rgba(250, 255, 112, 0.05);
    transform: translateX(4px);
}

.term-badge {
    color: var(--kilo-yellow);
    font-weight: 700;
    margin-right: 8px;
}

.term-desc {
    color: #71717A;
    font-size: 12px;
    margin-left: 8px;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    margin-top: 10px;
    color: var(--kilo-yellow);
}

.terminal-prompt {
    margin-right: 8px;
    user-select: none;
    color: #71717A;
}

.terminal-prompt b {
    color: var(--kilo-yellow);
}

.cli-input {
    background: transparent;
    border: none;
    outline: none;
    color: #FFF;
    font-family: inherit;
    font-size: 13px;
    flex: 1;
    padding: 0;
    caret-color: var(--kilo-yellow);
}

.inline-cursor {
    color: var(--kilo-yellow);
    margin-left: 2px;
    animation: blink 0.8s infinite steps(1);
}

.term-name {
    font-weight: 700;
}

.term-arrow {
    color: var(--kilo-yellow);
    margin-left: 4px;
}

.cursor {
    display: inline-block;
    width: 7px;
    height: 14px;
    background: var(--kilo-yellow);
    margin-left: 2px;
    animation: blink 1s infinite steps(1);
}

@keyframes blink {
    50% { opacity: 0; }
}

@keyframes card-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
