:root {
  --bg-deep: #fff9f5;
  --bg-card: #ffffff;
  --accent: #e85d04;
  --accent-soft: #f48c06;
  --gold: #c2410c;
  --text: #1c1917;
  --text-muted: #57534e;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 2px 16px rgba(232, 93, 4, 0.08);
  --radius: 16px;
}

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

body {
  font-family: 'Noto Sans KR', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 50% -5%, rgba(255, 180, 100, 0.25), transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(255, 140, 60, 0.1), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(255, 210, 150, 0.15), transparent 40%),
    linear-gradient(180deg, #fff5ee 0%, #fff9f5 40%, #ffffff 100%);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.site-header { padding: 20px 0 8px; text-align: center; }

.site-logo {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232, 93, 4, 0.08);
  border: 1px solid rgba(232, 93, 4, 0.2);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.25;
  background: linear-gradient(135deg, #1c1917 0%, var(--gold) 45%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-title { margin-bottom: 8px; }

.subtitle {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.site-nav {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin: 20px 0 28px;
  box-shadow: var(--shadow);
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.site-nav a {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
  border-color: rgba(232, 93, 4, 0.25);
  background: rgba(232, 93, 4, 0.06);
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--accent-soft);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 0 0 40px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.info-card .label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 6px; }
.info-card .value { font-size: 1.05rem; font-weight: 700; color: var(--gold); }

section { margin-bottom: 44px; }

h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 4px solid var(--accent);
}

h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 20px 0 10px;
}

.content-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.content-box p + p { margin-top: 14px; }
.content-box ul, .content-box ol { margin-top: 14px; padding-left: 20px; }
.content-box li { margin-bottom: 8px; color: var(--text-muted); }
.content-box li strong { color: var(--text); }

.banner-grid { display: grid; gap: 16px; }

.banner-link {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.banner-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 93, 4, 0.15);
}

.banner-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.banner-link.official .banner-icon { background: rgba(232, 93, 4, 0.12); }
.banner-link.seoul .banner-icon { background: rgba(0, 120, 255, 0.1); }
.banner-link.youtube .banner-icon { background: rgba(255, 0, 0, 0.08); }
.banner-link.official:hover { border-color: rgba(232, 93, 4, 0.35); }
.banner-link.seoul:hover { border-color: rgba(0, 120, 255, 0.3); }
.banner-link.youtube:hover { border-color: rgba(255, 0, 0, 0.25); }

.banner-text { flex: 1; }
.banner-text h3 { font-size: 1.05rem; margin: 0 0 4px; border: none; padding: 0; }
.banner-text p { font-size: 0.88rem; color: var(--text-muted); }
.banner-arrow { color: var(--text-muted); transition: transform 0.2s; }
.banner-link:hover .banner-arrow { transform: translateX(4px); color: var(--accent); }

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.schedule-table th,
.schedule-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.schedule-table th {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.82rem;
  width: 28%;
}

.schedule-table tr:last-child td,
.schedule-table tr:last-child th { border-bottom: none; }

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.ticket-item {
  background: rgba(232, 93, 4, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.ticket-item .zone { font-size: 0.85rem; color: var(--text-muted); }
.ticket-item .price { font-size: 1.2rem; font-weight: 700; color: var(--gold); margin-top: 4px; }

.tips-list, .faq-list { display: grid; gap: 12px; }

.tip-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(232, 93, 4, 0.04);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.tip-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tip-item p { font-size: 0.92rem; color: var(--text-muted); }
.tip-item strong { color: var(--text); }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(232, 93, 4, 0.03);
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; float: right; color: var(--accent); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 18px 16px; font-size: 0.92rem; color: var(--text-muted); }

.topic-grid, .page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.topic-card, .page-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s;
}

.topic-card:hover, .page-card:hover {
  border-color: rgba(232, 93, 4, 0.35);
  transform: translateY(-2px);
}

.topic-card h3, .page-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
  border: none;
  padding: 0;
}

.topic-card p, .page-card p { font-size: 0.86rem; color: var(--text-muted); }

.related-links {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.related-links h2 { font-size: 1.1rem; margin-bottom: 12px; }

.related-links ul { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }

.related-links a {
  font-size: 0.88rem;
  color: var(--accent);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.related-links a:hover { background: rgba(232, 93, 4, 0.06); }

.callout {
  background: rgba(232, 93, 4, 0.06);
  border-left: 4px solid var(--accent);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.callout strong { color: var(--text); }

footer {
  text-align: center;
  padding-top: 32px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

footer a { color: var(--accent-soft); text-decoration: none; }
footer a:hover { text-decoration: underline; }

footer .footer-nav {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
}

@media (max-width: 600px) {
  .site-nav a { font-size: 0.8rem; padding: 6px 10px; }
}

/* Outbound floating banner */
.outbound-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(232, 93, 4, 0.25);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(28, 25, 23, 0.12);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.outbound-banner:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 93, 4, 0.45);
  box-shadow: 0 12px 36px rgba(232, 93, 4, 0.18);
}

.outbound-banner-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 93, 4, 0.1);
  border-radius: 10px;
  font-size: 1.2rem;
}

.outbound-banner-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.outbound-banner-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.outbound-banner-body strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.3;
}

.outbound-banner-body span:last-child {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.outbound-banner-arrow {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1rem;
  transition: transform 0.2s;
}

.outbound-banner:hover .outbound-banner-arrow {
  transform: translateX(3px);
}

@media (max-width: 600px) {
  .outbound-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }
}
