:root {
  --bg: #0b0b0b;
  --terminal: #000;
  --border: #1a1a1a;
  --text: #cfcfcf;
  --accent: #FFA8C0;
  --link-accent: #5BCEFA;
  --muted: #666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  justify-content: center;
  padding: 3rem 1rem;
  color: var(--text);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffbfd4;
}

.terminal {
  width: 100%;
  max-width: 800px;
  background: var(--terminal);
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px #000 inset,
    0 0 40px rgba(255,168,192,0.08);
  position: relative;
  overflow: hidden;
}

.terminal::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.015),
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
     transparent 3px
  );
  mix-blend-mode: overlay;
}

.terminal-header {
  display: flex;
  align-items: center;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
  background: #050505;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }
.title {
  margin-left: 10px;
  font-size: 0.8rem;
  color: var(--muted);
}

.terminal-body {
  padding: 1.5rem;
  font-size: 0.85rem;
  line-height: 1.6;
  overflow-y: auto;
  max-height: 75vh;
}

.prompt {
  color: var(--accent);
}

.command {
  margin-bottom: 0.3rem;
}

.output {
  margin-bottom: 1.2rem;
}

.pfp {
  width: 50px;
  height: 50px;
  border: 1px solid var(--accent);
  margin-bottom: 0.8rem;
}

a {
  color: var(--link-accent);
  text-decoration: none;
}

a i {
  color: var(--accent);
  text-decoration: inherit;
}

a:hover {
  text-decoration: underline;
}

.socials a {
  display: block;
  margin-bottom: 0.3rem;
}

.pgp {
  background: #050505;
  border: 1px solid #111;
  padding: 0.8rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--accent);
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--accent);
  margin-left: 4px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

.buttons {
  margin-top: 0.5rem;
  padding: 0.8rem;
  border: 1px solid #111;
  background: #050505;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.buttons img {
  width: 88px;
  height: 31px;
  image-rendering: pixelated;
  border: 1px solid var(--accent);
  transition: transform 0.15s ease;
}

.buttons img:hover {
  transform: scale(1.05);
}
