:root {
  --bg: #0e0f13;
  --panel: #16181f;
  --panel-hover: #1c1f29;
  --border: #2a2d38;
  --text: #e7e8ec;
  --text-dim: #9a9ca8;
  --accent: #7c5cff;
  --accent-dim: #4a3b99;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.subtitle {
  color: var(--text-dim);
  font-size: 15px;
  margin: 0 0 36px;
}

.placeholder {
  background: rgba(124, 92, 255, 0.15);
  border: 1px dashed var(--accent);
  border-radius: 4px;
  padding: 1px 6px;
  font-style: normal;
  font-size: 0.95em;
  overflow-wrap: break-word;
  word-break: break-word;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
  border: none;
}

.footnote {
  font-size: 12.5px;
  color: var(--text-dim);
}

.footnote p {
  font-size: 12.5px;
  color: var(--text-dim);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.meta-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 36px;
  font-size: 14px;
}

.meta-box .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
}

.meta-box .row:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.meta-box .label {
  color: var(--text-dim);
}

.meta-box .value {
  font-weight: 600;
  text-align: right;
}

section {
  margin-bottom: 28px;
}

h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

h2 .num {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
}

h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 16px 0 6px;
  color: var(--text);
}

p {
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--text);
}

p.dim, li.dim {
  color: var(--text-dim);
}

ul {
  margin: 0 0 10px;
  padding-left: 20px;
}

li {
  font-size: 15px;
  margin-bottom: 6px;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-dim);
  overflow-wrap: break-word;
  word-break: break-word;
}

a:hover {
  border-bottom-color: var(--accent);
}

.twitch-disclaimer {
  font-size: 12.5px;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 32px;
}

.page-links .wrap {
  max-width: 480px;
  padding: 56px 24px 80px;
  text-align: center;
}

.page-links .eyebrow {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin: 32px 0 12px;
  text-align: left;
}

.page-links h1 {
  font-size: 22px;
}

.page-links .subtitle {
  font-size: 14px;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 2px solid var(--border);
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-list:last-of-type {
  margin-top: 32px;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.link-btn:hover {
  background: var(--panel-hover);
  border-color: var(--accent-dim);
}

.link-btn .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
}

.link-btn .icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.link-btn .label {
  flex: 1;
  text-align: left;
}

.link-btn .label .sub {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  margin-top: 2px;
}

.link-btn .arrow {
  color: var(--text-dim);
  font-size: 16px;
}

.link-btn.ad {
  border-style: dashed;
}

.footer {
  margin-top: 40px;
  font-size: 12.5px;
  color: var(--text-dim);
}

.footer a {
  color: var(--text-dim);
  text-decoration: underline;
  border-bottom: none;
}

@media (max-width: 480px) {
  .wrap {
    padding: 32px 16px 56px;
  }

  h1 {
    font-size: 22px;
  }

  .meta-box .row {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

  .meta-box .value {
    text-align: left;
  }

  h2 {
    font-size: 15px;
  }

  p, li {
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .page-links .wrap {
    padding: 40px 16px 56px;
  }

  .avatar {
    width: 80px;
    height: 80px;
  }

  .page-links h1 {
    font-size: 20px;
  }

  .link-btn {
    padding: 12px 14px;
    font-size: 14px;
    gap: 10px;
  }

  .link-btn .icon {
    width: 20px;
    height: 20px;
  }

  .link-btn .label .sub {
    font-size: 11px;
  }
}

@media (hover: none) {
  .link-btn:active {
    background: var(--panel-hover);
    border-color: var(--accent-dim);
  }
}
