/* ── Base ─────────────────────────────────────────── */
:root {
  --bg:         #0f1117;
  --surface:    #1a1d27;
  --border:     #2a2d3d;
  --accent:     #6c8efb;
  --accent-hover: #8aaaff;
  --text:       #e2e8f0;
  --text-muted: #6b7280;
  --radius:     14px;
  --transition: 0.18s ease;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
}

/* ── Header ──────────────────────────────────────── */
.site-header h1 {
  color: var(--text);
  letter-spacing: -0.5px;
}

.site-header .lead {
  color: var(--text-muted) !important;
}

/* ── Link Cards ──────────────────────────────────── */
.link-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color var(--transition),
              transform var(--transition),
              box-shadow var(--transition);
}

.link-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108, 142, 251, 0.15);
  color: var(--text);
}

.link-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(108, 142, 251, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--accent);
  transition: background var(--transition), color var(--transition);
}

.link-card:hover .link-icon {
  background: rgba(108, 142, 251, 0.2);
  color: var(--accent-hover);
}

.link-title {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
}

.link-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin-top: 2px;
}

.link-arrow {
  color: var(--text-muted);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity var(--transition), color var(--transition);
}

.link-card:hover .link-arrow {
  opacity: 1;
  color: var(--accent);
}

/* ── Footer ──────────────────────────────────────── */
footer {
  color: var(--text-muted) !important;
  border-top: 1px solid var(--border);
}

