:root {
  --bg: #071018;
  --bg2: #0b1622;
  --panel: rgba(8, 15, 24, 0.82);
  --panel-border: rgba(110, 231, 255, 0.18);
  --text: #d9f7ff;
  --muted: #8bb8c4;
  --cyan: #67e8f9;
  --cyan-soft: rgba(103, 232, 249, 0.18);
  --pink: #ff7ac8;
  --pink-soft: rgba(255, 122, 200, 0.14);
  --green: #86efac;
  --shadow: 0 0 30px rgba(103, 232, 249, 0.10), 0 0 80px rgba(255, 122, 200, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background:
    radial-gradient(circle at top left, rgba(103, 232, 249, 0.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 122, 200, 0.10), transparent 24%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  overflow-x: hidden;
}

.background-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 100% 3px;
  opacity: 0.22;
  mix-blend-mode: screen;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.terminal-window {
  width: min(920px, 100%);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.terminal-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(103, 232, 249, 0.10);
  background: rgba(255,255,255,0.02);
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.red {
  background: #ff5f56;
}

.yellow {
  background: #ffbd2e;
}

.green {
  background: #27c93f;
}

.terminal-title {
  margin-left: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.terminal-body {
  padding: 28px;
}

.prompt-line,
.mini-terminal p {
  margin: 0 0 10px;
  line-height: 1.7;
  word-break: break-word;
}

.prompt-user {
  color: var(--pink);
}

.prompt-symbol {
  color: var(--text);
  margin-right: 8px;
}

.prompt-command {
  color: var(--cyan);
}

.output {
  margin: 0 0 22px;
  color: var(--muted);
}

h1 {
  margin: 10px 0 14px;
  font-size: clamp(2.2rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--cyan);
  text-shadow:
    0 0 10px rgba(103, 232, 249, 0.55),
    0 0 24px rgba(103, 232, 249, 0.20);
}

.subtitle {
  margin: 0 0 28px;
  max-width: 700px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 28px;
}

.status-card {
  padding: 16px;
  border: 1px solid rgba(103, 232, 249, 0.12);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.01);
}

.label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 8px;
}

.value {
  color: var(--text);
  font-size: 1rem;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(103, 232, 249, 0.20);
  background: linear-gradient(180deg, rgba(103, 232, 249, 0.08), rgba(255, 122, 200, 0.04));
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(103, 232, 249, 0.45);
  box-shadow: 0 0 18px rgba(103, 232, 249, 0.12);
}

.mini-terminal {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 122, 200, 0.12);
  background: rgba(255, 122, 200, 0.04);
}

@media (max-width: 700px) {
  .terminal-body {
    padding: 22px 18px;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2rem, 13vw, 4rem);
  }
}
