/* ===== STATIC CONTENT SECTION ===== */
.static-content-section {
  position: relative;
  z-index: 1;
  padding: 60px 24px 60px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.static-content-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.static-content-wrap h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--text);
}
.static-content-wrap p {
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 14px;
  max-width: 820px;
}
.static-content-wrap h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 32px 0 10px;
  color: var(--accent);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.static-festival-list,
.static-steps-list {
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  font-size: 0.9rem;
  padding-left: 20px;
  margin-bottom: 8px;
  list-style: none;
}
.static-festival-list li,
.static-steps-list li {
  margin-bottom: 6px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.static-steps-list {
  list-style: decimal;
  padding-left: 24px;
}
@media (max-width: 640px) {
  .static-content-section { padding: 40px 16px; }
  .static-content-wrap h3 { margin-top: 24px; }
}

/* ===== FOOTER LINKS ===== */
.footer-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 0.82rem;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-links span { color: var(--border-hover); }

/* ===== CONTENT PAGES (about, privacy, terms) ===== */
.content-page { max-width: 760px; margin: 0 auto; padding: 60px 24px 100px; position: relative; z-index: 1; }
.content-page h1 { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 6vw, 3rem); font-weight: 800; letter-spacing: -2px; margin-bottom: 12px; }
.content-page .subtitle { color: var(--muted); font-size: 1.05rem; margin-bottom: 48px; line-height: 1.7; }
.content-page h2 { font-size: 1.25rem; font-weight: 800; margin: 36px 0 12px; color: var(--accent); }
.content-page h3 { font-size: 1rem; font-weight: 700; margin: 20px 0 8px; color: var(--text); }
.content-page p { color: rgba(255,255,255,0.7); line-height: 1.85; margin-bottom: 16px; font-size: 1rem; }
.content-page ul, .content-page ol { color: rgba(255,255,255,0.7); line-height: 1.85; padding-left: 20px; margin-bottom: 16px; }
.content-page ul li, .content-page ol li { margin-bottom: 8px; }
.content-page a { color: var(--accent); text-decoration: none; }
.content-page a:hover { text-decoration: underline; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); text-decoration: none; font-size: 0.88rem; font-weight: 600; margin-bottom: 32px; transition: color 0.2s; }
.back-link:hover { color: var(--text); }
.country-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; margin: 16px 0 24px; }
.country-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; font-size: 0.9rem; font-weight: 600; }
