

:root {
    --bg: #051638;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --accent: #2563eb;
    --border: #e5e7eb;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
      min-height: 100vh;
    background: radial-gradient(1200px 600px at 10% 10%, #1c212b 0%, var(--bg) 60%) no-repeat;
    color: var(--text);
}

h1 {
  font-family: 'Chivo', sans-serif !important;
  font-size: 48px;
}

.card {
    width: min(680px, 92vw);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(2,6,23,0.06);
    padding: 28px;
    flex: 1; /* take up space */
}


.header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.12), 0 0 0 8px rgba(37,99,235,0.06);
}
.dash {
    width: 30px;              /* wider than the dot */
    height: 10px;             /* same height */
    border-radius: 5px;       /* slightly rounded corners */
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.12),
                0 0 0 8px rgba(37,99,235,0.06);
}

h1 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin: 0;
}

p.desc {
    margin: 0 0 18px 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.box {
    border: 1px dashed #CBD5E1;
    border-radius: 14px;
    padding: 18px;
    background: #fbfcff;
}

.kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2em;
    padding: 6px 10px;
    border: 1px solid #E2E8F0;
    border-bottom-width: 3px;
    border-radius: 10px;
    background: white;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    box-shadow: 0 1px 0 rgba(2,6,23,0.06);
}

.row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
}

.muted {
    color: var(--muted);
    font-size: 0.9rem;
}

.actions {
    display: flex;
    gap: 10px;
}

button {
    appearance: none;
    border: 1px solid var(--border);
    background: white;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.03s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 1px 0 rgba(2,6,23,0.05);
}
button:hover { border-color: #cbd5e1; }
button:active { transform: translateY(1px); }

.primary {
    background: var(--accent);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(37,99,235,0.25);
}
.primary:hover { box-shadow: 0 8px 18px rgba(37,99,235,0.28); }

.hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--muted);
}

.legend {
    margin-top: 16px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--muted);
}
.legend .pill {
    border: 1px solid #2563eb;
    background: rgb(150, 170, 236);
    /* border-radius: 999px; */
    color:rgb(0, 0, 0);
    padding: 6px 10px;
}


.terminal {
  background: #111;
  color: #eee;
  font-family: monospace;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  max-width: 600px;
}

.terminal-header {
  background: #222;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-header .title {
  margin-left: auto;
  font-size: 0.85em;
  color: #888;
}

.terminal-body {
  padding: 12px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
}

.prompt {
  color: #3baaff;
  margin-right: 6px;
}

.sequence {
  white-space: pre-wrap;
  word-break: break-word;
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  background: #3baaff;
  margin-left: 2px;
  animation: blink 1s infinite;
}

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

.divider {
  color: var(--accent);
  font-weight: bold;
  margin: 0 6px;
}
.waiting {
  color: #666;
  font-style: italic;
}

.social-link {
  display: inline-flex;       /* keep icon + text inline */
  align-items: center;        /* vertical alignment */
  gap: 8px;                   /* space between icon and text */

  padding: 6px 12px;          /* inner spacing */
  background: #f5f5f5;        /* light background */
  border: 1px solid #ccc;     /* subtle border */
  border-radius: 9999px;      /* pill shape */
  color: #333;                /* text color */
  text-decoration: none;      /* remove underline */
  transition: background 0.2s, border-color 0.2s;
}

.social-link:hover {
  background: #e8f0ff;        /* accent hover */
  border-color: var(--accent);
  color: var(--accent);
}

.social-link .icon {
  fill: currentColor;         /* icon inherits text color */
  width: 20px;
  height: 20px;
}
