:root {
  --bg: #05060a;
  --ink: #f3f5fb;
  --muted: #9aa3b8;
  --faint: #6a7388;
  --line: rgba(243, 245, 251, 0.12);
  --panel: rgba(16, 18, 28, 0.72);
  --magenta: #ff2d9b;
  --cyan: #3bd5ff;
  --orange: #ff8a3d;
  --grad: linear-gradient(115deg, #ff8a3d, #ff2d9b 45%, #7b5cff 75%, #3bd5ff);
  --sans: "Outfit", "Noto Sans SC", "PingFang SC", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  color: var(--ink);
  font-family: var(--sans);
  background: var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #05060a;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.bg-glow-a {
  width: 42vw;
  height: 42vw;
  left: -8%;
  top: 10%;
  background: rgba(255, 45, 155, 0.18);
}

.bg-glow-b {
  width: 36vw;
  height: 36vw;
  right: -6%;
  bottom: 8%;
  background: rgba(59, 213, 255, 0.12);
}

.bg-grain {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.4rem));
  min-height: 100svh;
  margin: 0 auto;
  padding: 1.1rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.brand-mark img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--cyan);
}

/* 关键：左右双栏，第一屏同时看到 Logo + 入口 */
.stage {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  min-height: 0;
}

.intro {
  flex: 0 0 auto;
  width: min(280px, 34%);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.eyebrow {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.brand-hero {
  margin: 0;
  line-height: 0;
}

.hero-logo {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  border-radius: 50%;
  filter: drop-shadow(0 16px 36px rgba(255, 45, 155, 0.3));
}

.lede {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
}

.entries {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(12px);
}

.entry {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.22s ease, padding-left 0.22s var(--ease);
}

.entry:last-child {
  border-bottom: none;
}

.entry:hover {
  background: rgba(255, 255, 255, 0.04);
  padding-left: 1.5rem;
}

.entry-idx {
  flex: 0 0 2rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--faint);
}

.entry:hover .entry-idx {
  color: var(--cyan);
}

.entry-text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.entry-text strong {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.entry-text span {
  font-family: var(--mono);
  font-size: 0.72rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.entry-go {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--faint);
  font-size: 0.9rem;
  transition: transform 0.22s var(--ease), border-color 0.22s ease, color 0.22s ease;
}

.entry:hover .entry-go {
  color: var(--ink);
  border-color: rgba(59, 213, 255, 0.5);
  transform: translate(2px, -2px);
}

.foot {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--faint);
}

.foot-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.foot p {
  margin: 0;
}

.foot a:hover {
  color: var(--cyan);
}

@media (max-width: 760px) {
  .shell {
    width: min(1120px, calc(100% - 1.6rem));
  }

  .stage {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 1.25rem;
  }

  .intro {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-logo {
    max-width: 180px;
    margin: 0 auto;
  }

  .entries {
    width: 100%;
  }

  .entry {
    padding: 1rem;
  }

  .entry-text strong {
    font-size: 1.05rem;
  }
}
