/* 每日大赛 DAILY PAGEANT - Official Stylesheet */
/* Black & Champagne Gold Stage Visual System */

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

:root {
  --bg-main: #050505;
  --bg-deep: #090909;
  --bg-content: #10100F;
  --bg-secondary: #171611;
  --bg-hover: #201E18;
  --bg-footer: #030303;
  --title: #FFF9E9;
  --text: #E5DDCA;
  --text-secondary: #AAA18D;
  --text-muted: #7C7467;
  --gold: #D6AE55;
  --gold-highlight: #F4D77F;
  --gold-light: #FFE7A4;
  --gold-deep: #9C722A;
  --gold-dark: #5D4116;
  --border: rgba(214, 174, 85, 0.18);
  --border-focus: rgba(244, 215, 127, 0.48);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.48);
  --glow: 0 18px 48px rgba(214, 174, 85, 0.18);
  --btn-gradient: linear-gradient(135deg, #FFE7A4 0%, #D6AE55 50%, #90651C 100%);
  --btn-text: #181107;
  --max-width: 1320px;
  --nav-height: 74px;
  --radius: 6px;
  --radius-sm: 3px;
  --radius-lg: 10px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", sans-serif;
  background: var(--bg-main);
  color: var(--text);
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--gold-highlight);
}

a:focus-visible {
  outline: 2px solid var(--gold-highlight);
  outline-offset: 3px;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--title);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* ========== HEADER / NAV ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--gold);
  transition: border-color 0.25s, background 0.25s;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--border-focus);
  background: var(--bg-hover);
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--title);
}

.logo-link img {
  height: 36px;
  width: auto;
}

.logo-text {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--title);
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  font-weight: 400;
  margin-top: 1px;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  padding: 0 12px;
}

.nav-center a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  padding: 8px 12px;
  position: relative;
  white-space: nowrap;
  transition: color 0.25s;
}

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

.nav-center a.active {
  color: var(--title);
}

.nav-center a.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 1.5px;
  background: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.search-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color 0.25s, background 0.25s;
}

.search-btn:hover {
  color: var(--gold);
  background: var(--bg-hover);
}

.search-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: var(--btn-gradient);
  color: var(--btn-text) !important;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.2s, box-shadow 0.25s;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(214, 174, 85, 0.25);
}

.btn-primary:hover {
  opacity: 0.92;
  box-shadow: var(--glow);
  color: var(--btn-text) !important;
}

.btn-primary:focus-visible {
  outline: 2px solid var(--gold-highlight);
  outline-offset: 3px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  background: transparent;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--border-focus);
  border-radius: var(--radius-sm);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--bg-hover);
  color: var(--gold-highlight);
  border-color: var(--gold);
}

/* Mobile Header */
.nav-mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 14px;
  max-width: 100%;
}

.nav-mobile .logo-link img {
  height: 30px;
}

.nav-mobile .btn-primary {
  padding: 8px 14px;
  font-size: 0.82rem;
}

@media (max-width: 1024px) {
  .nav-center {
    display: none;
  }
  .search-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  .nav-mobile {
    display: flex;
  }
  .site-header {
    height: 60px;
  }
  body {
    padding-top: 0;
  }
}

/* ========== SIDE MENU ========== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1100;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.menu-overlay.active {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: min(460px, 88vw);
  height: 100%;
  background: var(--bg-deep);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
  border-right: 1px solid var(--border);
}

.side-menu.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg-deep);
  z-index: 2;
}

.side-menu-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.side-menu-brand img {
  height: 32px;
}

.side-menu-brand .brand-name {
  font-size: 1rem;
  color: var(--title);
  font-weight: 600;
}

.side-menu-brand .brand-en {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
}

.menu-close:hover {
  color: var(--gold);
  border-color: var(--border-focus);
}

.menu-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.side-menu-body {
  padding: 16px 0 40px;
}

.menu-group {
  margin-bottom: 8px;
}

.menu-group-title {
  padding: 14px 24px 8px;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.menu-group a {
  display: block;
  padding: 12px 24px;
  color: var(--text);
  border-left: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.menu-group a:hover {
  background: var(--bg-hover);
  border-left-color: var(--gold);
  color: var(--title);
}

.menu-group a .menu-link-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 3px;
}

.menu-group a .menu-link-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ========== MAIN CONTENT ========== */
main {
  min-height: 60vh;
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  main {
    padding-bottom: 90px;
  }
}

/* Hero / Banner */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-banner img {
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: cover;
  object-position: center top;
}

.hero-info-bar {
  background: linear-gradient(180deg, #0a0a09 0%, #10100F 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.hero-info-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.hero-info-left {
  flex: 1;
  min-width: 280px;
}

.hero-brand {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: var(--title);
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-actions a.text-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.hero-actions a.text-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.hero-keywords {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 24px;
  border-left: 1px solid var(--border);
}

.hero-keywords span {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.hero-keywords span::before {
  content: "·";
  color: var(--gold);
  margin-right: 8px;
}

@media (max-width: 768px) {
  .hero-info-bar {
    padding: 20px 0;
  }
  .hero-keywords {
    border-left: none;
    padding-left: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
}

/* Secondary Index Bar */
.secondary-index {
  background: var(--bg-content);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.secondary-index-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-width: min-content;
}

.secondary-index a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 6px 14px;
  position: relative;
  transition: color 0.25s;
}

.secondary-index a:hover {
  color: var(--title);
}

.secondary-index a.active {
  color: var(--gold);
}

.secondary-index a.active::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.secondary-index .sep {
  color: var(--border);
  font-size: 0.7rem;
}

/* Sections */
.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--bg-content);
}

.section-deep {
  background: var(--bg-deep);
}

.section-header {
  margin-bottom: 36px;
}

.section-header .label {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 640px;
  font-size: 0.95rem;
}

/* Focus + News Grid */
.focus-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}

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

.focus-main {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.focus-main .label {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.focus-main h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-bottom: 16px;
}

.focus-main p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: border-color 0.25s, background 0.25s;
}

.news-item:hover {
  border-color: var(--border-focus);
  background: var(--bg-hover);
}

.news-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.news-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.6;
}

.news-item a {
  font-size: 0.85rem;
  color: var(--gold);
}

/* Track Cards - varied sizes */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}

.track-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.25s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.track-card:hover {
  border-color: var(--border-focus);
  box-shadow: var(--glow);
}

.track-card.large {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 280px;
}

.track-card.medium {
  grid-column: span 3;
}

.track-card.small {
  grid-column: span 2;
}

.track-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--gold-dark);
  background: rgba(214, 174, 85, 0.12);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.track-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.track-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex: 1;
  line-height: 1.7;
}

.track-card a {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--gold);
  align-self: flex-start;
}

@media (max-width: 900px) {
  .tracks-grid {
    grid-template-columns: 1fr 1fr;
  }
  .track-card.large,
  .track-card.medium,
  .track-card.small {
    grid-column: span 1;
    grid-row: span 1;
  }
}

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

/* Fashion Topics */
.fashion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fashion-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color 0.25s;
}

.fashion-item:hover {
  border-color: var(--border-focus);
}

.fashion-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.fashion-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.65;
}

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

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

/* Cast Placeholders */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cast-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.25s;
}

.cast-card:hover {
  border-color: var(--border-focus);
}

.cast-num {
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.cast-card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.cast-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

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

/* Roadmap Steps */
.roadmap-steps {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 12px;
}

.roadmap-step {
  flex: 1;
  min-width: 160px;
  padding: 24px 18px;
  border: 1px solid var(--border);
  border-right: none;
  background: var(--bg-secondary);
  position: relative;
}

.roadmap-step:last-child {
  border-right: 1px solid var(--border);
}

.roadmap-step .num {
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.roadmap-step h3 {
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.roadmap-step p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .roadmap-steps {
    flex-direction: column;
  }
  .roadmap-step {
    border-right: 1px solid var(--border);
    border-bottom: none;
    min-width: 100%;
  }
  .roadmap-step:last-child {
    border-bottom: 1px solid var(--border);
  }
}

/* Criteria */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.criteria-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
}

.criteria-item .num {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 10px;
}

.criteria-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.criteria-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.65;
}

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

/* Calendar / Program List */
.program-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.program-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
  transition: background 0.2s;
}

.program-item:last-child {
  border-bottom: none;
}

.program-item:hover {
  background: var(--bg-hover);
}

.program-status {
  font-size: 0.78rem;
  color: var(--gold);
  background: rgba(214, 174, 85, 0.1);
  padding: 4px 12px;
  border-radius: 2px;
  white-space: nowrap;
  min-width: 100px;
  text-align: center;
}

.program-item h3 {
  font-size: 0.98rem;
  margin-bottom: 2px;
  flex: 1;
}

.program-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  flex: 2;
}

@media (max-width: 640px) {
  .program-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Studio / Magazine Style */
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.studio-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.studio-item h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.studio-item p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0;
}

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

/* Academy Cards */
.academy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.academy-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.25s;
}

.academy-card:hover {
  border-color: var(--border-focus);
}

.academy-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.academy-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.academy-card a {
  font-size: 0.88rem;
}

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

/* Insights */
.insights-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insight-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.insight-item:last-child {
  border-bottom: none;
}

.insight-num {
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 300;
  min-width: 40px;
}

.insight-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.insight-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.65;
}

/* Results Status */
.results-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.status-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}

.status-box .status-label {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.status-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 640px) {
  .results-status {
    grid-template-columns: 1fr;
  }
}

/* APP Section */
.app-section {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.app-content {
  flex: 1;
  min-width: 280px;
}

.app-content h2 {
  margin-bottom: 14px;
}

.app-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Participate Box */
.participate-box {
  background: var(--bg-deep);
  border: 1px solid var(--border-focus);
  border-radius: var(--radius);
  padding: 36px;
}

.participate-box h2 {
  margin-bottom: 16px;
}

.participate-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.85;
}

/* Safety / Privacy Split */
.split-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.split-block {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.split-block:nth-child(2) {
  margin-top: 40px;
}

.split-block h2 {
  margin-bottom: 14px;
}

.split-block p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .split-sections {
    grid-template-columns: 1fr;
  }
  .split-block:nth-child(2) {
    margin-top: 0;
  }
}

/* FAQ */
.faq-list details {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-list summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 500;
  color: var(--title);
  list-style: none;
  position: relative;
  font-size: 0.98rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 20px 18px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* Brand Statement */
.brand-statement {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.brand-statement h2 {
  margin-bottom: 18px;
}

.brand-statement p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.9;
}

/* Page Hero for Inner Pages */
.page-hero {
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-content);
}

.page-hero .label {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.page-hero h1 {
  margin-bottom: 14px;
}

.page-hero .lead {
  color: var(--text-secondary);
  font-size: 1.02rem;
  max-width: 680px;
  line-height: 1.8;
}

/* Content Blocks */
.content-block {
  padding: 40px 0;
}

.content-block + .content-block {
  border-top: 1px solid var(--border);
}

.text-block {
  max-width: 780px;
}

.text-block p {
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* Numbered List Style */
.num-list {
  counter-reset: num;
}

.num-list-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.num-list-item:last-child {
  border-bottom: none;
}

.num-list-item .n {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  min-width: 42px;
}

.num-list-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.num-list-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
}

/* Checklist */
.check-list li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.9rem;
}

/* Chapter Index */
.chapter-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.chapter-index a {
  display: block;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.92rem;
  transition: border-color 0.25s, background 0.25s;
}

.chapter-index a:hover {
  border-color: var(--border-focus);
  background: var(--bg-hover);
  color: var(--title);
}

@media (max-width: 560px) {
  .chapter-index {
    grid-template-columns: 1fr;
  }
}

/* Gallery / Portrait Style */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 16px;
}

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

/* Showcase Horizontal */
.showcase-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.showcase-card {
  min-width: 260px;
  max-width: 300px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  flex-shrink: 0;
}

.showcase-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.showcase-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Grand Night Program */
.ceremony-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.ceremony-item .time-label {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.ceremony-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.ceremony-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}

/* Contact Form Style (static) */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--gold-light);
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.7;
}

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

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
  margin-top: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-brand img {
  height: 36px;
}

.footer-brand .name {
  font-size: 1.1rem;
  color: var(--title);
  font-weight: 600;
}

.footer-brand .en {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-col h4 {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--title);
}

@media (max-width: 768px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }
}

.footer-notice {
  padding: 24px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-bottom: 1px solid var(--border);
}

.footer-copy {
  padding: 20px 0 28px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ========== MOBILE BOTTOM NAV ========== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(5, 5, 5, 0.97);
  border-top: 1px solid var(--border);
  padding: 6px 0 calc(6px + env(safe-area-inset-bottom, 0px));
  backdrop-filter: blur(10px);
}

.mobile-bottom-nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 48px;
  color: var(--text-muted);
  font-size: 0.7rem;
  gap: 3px;
  transition: color 0.2s;
}

.mobile-bottom-nav a svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.mobile-bottom-nav a.active {
  color: var(--gold);
}

.mobile-bottom-nav a:hover {
  color: var(--gold-highlight);
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: block;
  }
}

/* Search Panel (simple) */
.search-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1300;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  visibility: hidden;
  pointer-events: none;
}

.search-panel.active {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.search-panel form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}

.search-panel input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--title);
  font-size: 1rem;
  outline: none;
}

.search-panel input:focus {
  border-color: var(--border-focus);
}

.search-panel button {
  padding: 12px 20px;
  background: var(--btn-gradient);
  color: var(--btn-text);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
}

.search-close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1.4rem;
}

/* Utility */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.75rem; }
.mb-3 { margin-bottom: 1.25rem; }
.mb-4 { margin-bottom: 2rem; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

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

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print */
@media print {
  .site-header,
  .mobile-bottom-nav,
  .side-menu,
  .menu-overlay {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}
