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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  color: #1b1b24;
  background: #fdfcfb;
  line-height: 1.8;
}

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

img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 252, 251, 0.95);
  border-bottom: 1px solid rgba(27, 27, 36, 0.08);
  backdrop-filter: blur(10px);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-shape {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0ea5a4, #f97316);
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

.site-name {
  font-size: 1.1rem;
  font-weight: 700;
}

.site-slogan {
  font-size: 0.9rem;
  color: #6b7280;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  font-size: 0.92rem;
}

.nav-list a {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(14, 165, 164, 0.08);
}

.quick-entry {
  display: flex;
  justify-content: flex-end;
}

.entry-btn {
  padding: 10px 16px;
  border-radius: 999px;
  background: #0ea5a4;
  color: #fff;
  font-weight: 600;
}

.cover {
  padding: 80px 0 64px;
  background: linear-gradient(140deg, #f7f3ef 0%, #fdfcfb 60%);
}

.cover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
}

.cover-kicker {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #0ea5a4;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
}

.cover-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0;
}

.solid-btn,
.ghost-btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.solid-btn {
  background: #0ea5a4;
  color: #fff;
}

.ghost-btn {
  border-color: #0ea5a4;
  color: #0ea5a4;
}

.cover-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(14, 165, 164, 0.08);
}

.fact-number {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}

.fact-label {
  font-size: 0.85rem;
  color: #6b7280;
}

.section {
  padding: 64px 0;
}

.tint {
  background: #f6f1ec;
}

.section-title {
  margin-bottom: 24px;
}

.overview-list,
.curation-grid,
.video-wall,
.genre-map,
.ongoing-grid,
.service-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.overview-list article,
.curation-card,
.genre-map article,
.ongoing-grid article,
.service-grid article {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(27, 27, 36, 0.06);
}

.curation-card {
  border-left: 4px solid #f97316;
}

.video-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(27, 27, 36, 0.08);
}

.video-poster {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #f7f3ef;
}

.video-poster img {
  height: 100%;
  object-fit: cover;
}

.video-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.9);
  color: #fff;
  font-size: 0.8rem;
}

.video-info {
  padding: 16px;
}

.story-grid {
  align-items: center;
}

.story-text {
  background: #ffffff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(27, 27, 36, 0.06);
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: center;
}

.contact-box {
  margin-top: 16px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(27, 27, 36, 0.06);
}

.footer {
  padding: 26px 0;
  border-top: 1px solid rgba(27, 27, 36, 0.08);
  background: #f5f0ea;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .header-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .cover-actions {
    flex-direction: column;
  }
}
