:root {
  --bg: #0b0b0d;
  --card: #131316;
  --line: #2e2e35;
  --text: #f2f2f5;
  --muted: #b5b7bf;
  --accent: #ffffff;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: radial-gradient(
    circle at top right,
    #1c1c21 0%,
    #0b0b0d 45%,
    #060607 100%
  );
  color: var(--text);
  font-family: "Avenir Next", "PingFang SC", sans-serif;
}
.wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 16px;
}
.card {
  background: linear-gradient(160deg, #121216, #191920);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}
.hero h1 {
  margin: 0 0 6px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Baskerville", "Times New Roman", serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #4a4c53;
  object-fit: cover;
}
.lang-row {
  display: flex;
  justify-content: flex-end;
}
.ghost {
  background: transparent;
  color: #e7e8ee;
  border: 1px solid #4f525c;
  border-radius: 10px;
  padding: 4px 10px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    filter 0.2s;
}
.ghost:focus {
  outline: none;
  border-color: #aab0c0;
  box-shadow:
    0 0 0 2px rgba(170, 176, 192, 0.18),
    0 0 12px rgba(170, 176, 192, 0.16);
  filter: brightness(1.03);
}
.mini {
  font-size: 12px;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.entry {
  text-decoration: none;
  color: inherit;
  transition:
    0.2s transform,
    0.2s border-color,
    0.2s box-shadow;
  padding: 12px 13px;
  box-shadow:
    0 0 0 1px rgba(200, 210, 236, 0.12),
    0 8px 18px rgba(160, 178, 228, 0.12);
}
.entry h2 {
  margin: 0 0 5px;
  color: #f4f4f8;
  font-size: 18px;
  font-weight: 600;
}
.entry p {
  margin: 0 0 7px;
  color: #c0c2ca;
  line-height: 1.5;
  font-size: 13px;
}
.entry span {
  font-size: 12px;
  color: #e7e8ee;
}
.entry:hover {
  transform: translateY(-1px);
  border-color: #8d93a3;
  box-shadow:
    0 0 0 1px rgba(205, 214, 238, 0.16),
    0 10px 22px rgba(170, 185, 230, 0.18);
}
.intimacy-entry {
  cursor: pointer;
  position: relative;
  border: 1px solid #70737e;
  background: linear-gradient(160deg, #15161a, #1b1c22);
  padding: 8px 11px;
}
.intimacy-entry::after {
  content: "INTIMACY";
  position: absolute;
  right: 10px;
  top: 8px;
  font-size: 10px;
  color: #d7dbe6;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}
.intimacy-entry h2,
.intimacy-entry p,
.intimacy-entry span {
  color: #f0f2f8;
}
.intimacy-entry h2 {
  font-size: 16px;
  margin-bottom: 3px;
}
.intimacy-entry p {
  font-size: 12px;
  line-height: 1.32;
  margin-bottom: 4px;
}
.intimacy-entry span {
  font-size: 11px;
}
.intimacy-entry:hover {
  transform: translateY(-1px);
  border-color: #a4a9b8;
  box-shadow: 0 10px 24px rgba(181, 190, 220, 0.16);
}
.story-entry {
  opacity: 0.96;
  border-style: solid;
  cursor: pointer;
}
.story-entry:hover {
  transform: translateY(-1px);
  border-color: #7a7d88;
}
.vault-entry {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-top: 10px;
  padding: 9px 12px;
  border-color: #8f95a8;
  background: linear-gradient(150deg, #1c2132, #2a324f);
  box-shadow: 0 8px 22px rgba(93, 120, 255, 0.2);
}
.vault-entry:hover {
  transform: translateY(-1px);
  border-color: #b7c0ff;
}
.vault-title {
  font-size: 15px;
  font-weight: 700;
  color: #f4f6ff;
  line-height: 1.2;
}
.vault-sub {
  font-size: 12px;
  color: #d3dbff;
  margin-top: 4px;
  line-height: 1.45;
}
.roadmap-card {
  margin-top: 10px;
}
.roadmap-card h2 {
  margin: 0 0 6px;
  color: #f0f1f6;
  font-size: 17px;
}
.roadmap-card p {
  margin: 0;
  color: #c7c9d1;
  font-size: 13px;
  line-height: 1.55;
}
.tiny {
  margin: 8px 4px 0;
  color: #979aa4;
  font-size: 11px;
}
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
