.story2-shell .content-panel {
  max-width: 768px;
}

.story2-route-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.story2-route {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 8px;
  padding: 14px;
  text-align: left;
  cursor: pointer;
  transition: transform .16s, border-color .16s, background .16s;
}

.story2-route:hover {
  transform: translateY(-1px);
  border-color: rgba(255,220,150,.55);
  background: rgba(255,255,255,.12);
}

.story2-route strong {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 6px;
}

.story2-route span {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  line-height: 1.55;
}

.story2-mask-note {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.story2-mask-note span {
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(0,0,0,.2);
  border-radius: 999px;
  color: rgba(255,255,255,.76);
  font-size: 11px;
  padding: 5px 9px;
}

.story2-ending-word {
  color: #ffd98a;
  font-size: clamp(24px, 7vw, 44px);
  font-weight: 800;
  line-height: 1.35;
  margin: 18px 0;
}

.story2-result-subtitle {
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.story2-name-input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.1);
  color: #fff;
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  margin: 8px 0 14px;
  outline: none;
}

.story2-name-input::placeholder {
  color: rgba(255,255,255,.48);
}

.story2-name-input:focus {
  border-color: rgba(255,220,150,.7);
  box-shadow: 0 0 0 3px rgba(255,220,150,.12);
}

@media (max-width: 680px) {
  .story2-route-grid {
    grid-template-columns: 1fr;
  }
}
