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

:root {
    --bg-page:#0f2e2b;
    --panel:#1A615D;
    --panel-dim:#164f4c;
    --cream:#F3EBDE;
    --sage:#B8C897;
    --blue:#A7B8CA;
    --pink:#EFA8AC;
    --line:rgba(243,235,222,0.16);
}

* { box-sizing:border-box; }

html, body {
    margin: 0;
    padding: 32px 16px;
    font-family: 'JetBrains Mono', monospace;
    background: var(--bg-page);
    color: var(--cream);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.win {
    background: var(--panel);
    border-radius: 4px;
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px -2px rgba(0,0,0,0.5);
    overflow: hidden;
    width: 100%;
    max-width: 520px;
}

.bar {
    display: flex;
    justify-content: space-between;
    padding: 9px 14px;
    background: var(--panel-dim);
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    color: var(--cream);
    letter-spacing: 0.2em;
}
.bar span:last-child { color: var(--blue); }

.body { padding: 24px 22px 26px; }

.neofetch {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}
 
.ascii {
    font-size: 13px;
    line-height: 1.35;
    color: var(--sage);
    white-space: pre;
    flex-shrink: 0;
    margin: 0;
}
 
.info {
    flex: 1;
    min-width: 0;
}
 
.info-head {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--cream);
}
.info-rule {
    color: var(--blue);
    font-size: 13px;
    margin: 2px 0 8px 0;
}
 
.info-row {
    font-size: 12.5px;
    line-height: 1.65;
}
.info-key {
    color: var(--pink);
    font-weight: 600;
}
.info-val {
    color: var(--cream);
}
 
.divider {
    border: none;
    border-top: 1px dashed var(--line);
    margin: 20px 0 16px 0;
}
 
.section-label {
    font-size: 12px;
    color: var(--blue);
    margin-bottom: 8px;
}
 
.links{
    display: flex;
    flex-direction: column;
    gap: 2px;
}
 
.link-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 9px 10px;
    margin: 0 -10px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 13px;
    border: 1px solid transparent;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.link-row:hover {
    background: rgba(243,235,222,0.08);
    border-color: var(--line);
}
.link-key {
    font-weight: 600;
    flex-shrink: 0;
}
.link-val {
    color: var(--cream);
    opacity: 0.85;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
 
.swatches {
    display: flex;
    gap: 6px;
    margin-top: 20px;
}
.swatch {
    width: 22px;
    height: 14px;
    border-radius: 2px;
}
 
@media (max-width:460px) {
    .neofetch { flex-direction:column; }
    .ascii { font-size:11.5px; }
}
