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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
  --brand-color: #3498db;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 0.75rem;
  }
}

.page-wrapper {
  min-height: 100vh;
  background-color: transparent;
}

.content-surface {
  background-color: #fff;
  border-radius: 12px;
  max-width: 1200px;
  margin: 2rem auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
@media (max-width: 768px) {
  .content-surface {
    margin: 1rem auto;
    border-radius: 8px;
  }
}

a {
  color: var(--brand-color);
}

.site-header {
  background-color: #fff;
  border-bottom: 1px solid #ecf0f1;
  padding: 1rem 0;
  position: relative;
}
.site-header .header-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.site-header .header-content .edition-switcher {
  justify-self: start;
}
.site-header .header-content .language-switcher {
  justify-self: end;
}
.site-header .header-logo {
  text-align: center;
}
.site-header .logo {
  max-height: 80px;
  width: auto;
}
.site-header .event-name {
  font-size: 1.75rem;
  color: #2c3e50;
  margin: 0;
}

.banner {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}
.banner img {
  width: 100%;
  height: auto;
  display: block;
}
.banner .logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 200px;
}
.banner .logo-overlay img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--brand-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

.seo-context-line {
  color: #95a5a6;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.content-section {
  padding: 2rem 0;
}
.content-section.gray-bg {
  background-color: #ecf0f1;
}

.editions-list {
  padding: 3rem 0;
}
.editions-list .editions-intro {
  text-align: center;
  margin-bottom: 2rem;
}
.editions-list .edition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .editions-list .edition-grid {
    grid-template-columns: 1fr;
  }
}

.edition-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.edition-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.edition-card .edition-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.edition-card .edition-content {
  padding: 1.5rem;
}
.edition-card .edition-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}
.edition-card .edition-date {
  color: #95a5a6;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.edition-card .edition-description {
  font-size: 0.9rem;
  color: #34495e;
  line-height: 1.5;
}

.editions-page .content-surface {
  background: transparent;
  box-shadow: none;
}
.editions-page .edition-card {
  box-shadow: none;
  border: 1px solid #e3e8ee;
}
.editions-page .edition-card:hover {
  box-shadow: none;
}
.editions-page .site-footer {
  background: transparent;
  border-top: 0;
}

.ticket-types {
  padding: 2rem 0;
}
.ticket-types .types-header {
  text-align: center;
  margin-bottom: 3rem;
}
.ticket-types .types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.ticket-type-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.ticket-type-card:hover {
  border-color: var(--brand-color);
}
.ticket-type-card .type-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.ticket-type-card .type-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  flex: 1;
}
.ticket-type-card .type-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-color);
  white-space: nowrap;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.ticket-type-card .type-price .fee {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #95a5a6;
  margin-top: 0.25rem;
  text-align: right;
}
.ticket-type-card .type-description {
  font-size: 0.9rem;
  color: #34495e;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.ticket-type-card .type-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}
.ticket-type-card .type-status.available {
  background-color: rgba(39, 174, 96, 0.1);
  color: #27ae60;
}
.ticket-type-card .type-status.low {
  background-color: rgba(243, 156, 18, 0.1);
  color: #f39c12;
}
.ticket-type-card .type-status.soldout, .ticket-type-card .type-status.unavailable {
  background-color: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

.info-section {
  padding: 2rem 0;
}
.info-section .markdown-content {
  line-height: 1.8;
}
.info-section .markdown-content h1,
.info-section .markdown-content h2,
.info-section .markdown-content h3 {
  margin-top: 1.5rem;
}
.info-section .markdown-content ul,
.info-section .markdown-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.info-section .markdown-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.venue-info {
  background: #ecf0f1;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
}
.venue-info .venue-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.venue-info .venue-address {
  color: #34495e;
  line-height: 1.6;
}
.venue-info .venue-address p {
  margin-bottom: 0.5rem;
}

.organisation-info {
  text-align: center;
  padding: 3rem 0;
  color: #95a5a6;
  font-size: 0.9rem;
  border-top: 1px solid #ecf0f1;
  margin-top: 3rem;
}

.shows-list {
  padding: 2rem 0;
}
.shows-list .shows-header {
  margin-bottom: 2rem;
}

.show-item {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .show-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.show-item .show-info {
  flex: 1;
}
.show-item .show-info .show-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
.show-item .show-info .show-date {
  color: #95a5a6;
  font-size: 0.95rem;
}
.show-item .show-status {
  font-weight: 600;
  white-space: nowrap;
}
.show-item .show-status.available {
  color: #27ae60;
}
.show-item .show-status.soldout {
  color: #e74c3c;
}

.language-switcher {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.language-switcher select {
  padding: 0.5rem 1rem;
  border: 1px solid #ecf0f1;
  border-radius: 4px;
  background: #fff;
  font-size: 0.9rem;
  cursor: pointer;
}
.language-switcher select:hover {
  border-color: #3498db;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: not-allowed;
  opacity: 0.7;
  border: none;
  font-size: 1rem;
}
.btn.btn-primary {
  background-color: var(--brand-color);
  color: #fff;
}
.btn.btn-secondary {
  background-color: #95a5a6;
  color: #fff;
}

.test-mode-warning {
  background-color: #f39c12;
  color: #fff;
  text-align: center;
  padding: 0.75rem;
  font-weight: 600;
}

.back-link {
  margin: 2rem 0;
}
.back-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-color);
  text-decoration: none;
  font-size: 0.95rem;
}
.back-link a:hover {
  text-decoration: underline;
}
.back-link a .back-arrow {
  font-size: 1.25rem;
}

.language-switcher {
  position: relative;
}
.language-switcher .lang-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.language-switcher .lang-item {
  margin: 0;
}
.language-switcher .lang-item.active .lang-link {
  font-weight: 700;
  color: #2c3e50;
}
.language-switcher .lang-link {
  color: #34495e;
  text-decoration: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  display: block;
  transition: all 0.2s ease;
}
.language-switcher .lang-link:hover {
  color: var(--brand-color);
}
.language-switcher .lang-link.current {
  cursor: default;
}

.edition-switcher .edition-link {
  color: var(--brand-color);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}
.edition-switcher .edition-link:hover {
  text-decoration: underline;
}

.site-footer {
  background: #ecf0f1;
  border-top: 1px solid #cfd9db;
  padding: 3rem 0;
  margin-top: 4rem;
}
.site-footer .footer-content {
  text-align: center;
}
.site-footer .footer-org {
  margin-bottom: 2rem;
}
.site-footer .footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.site-footer .footer-links .footer-link {
  color: #2c3e50;
  text-decoration: none;
  font-size: 0.875rem;
}
.site-footer .footer-links .footer-link:hover {
  text-decoration: underline;
}
.site-footer .footer-links .footer-separator {
  color: #95a5a6;
}
.site-footer .footer-powered {
  margin-top: 1rem;
}
.site-footer .footer-powered a {
  color: var(--brand-color);
  text-decoration: none;
}
.site-footer .footer-powered a:hover {
  text-decoration: underline;
}

.event-details {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  border-bottom: 1px solid #ecf0f1;
  margin-bottom: 2rem;
}
.event-details .detail-item {
  text-align: center;
}
.event-details .detail-item strong {
  display: block;
  color: #2c3e50;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.event-details .detail-item p {
  color: #34495e;
  margin: 0;
}

.event-introduction {
  text-align: center;
  padding: 2rem 0;
  border-bottom: 1px solid #ecf0f1;
  margin-bottom: 2rem;
}
.event-introduction .introduction-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #34495e;
  max-width: 800px;
  margin: 0 auto;
}

.extras-section {
  background: #fef7ec;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}
.extras-section .extra-card {
  border: 2px solid #fad9a4;
}

.info-teaser {
  padding: 2rem 0;
}
.info-teaser .info-link {
  color: var(--brand-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}
.info-teaser .info-link:hover {
  text-decoration: underline;
}

.venue-info .venue-title {
  color: #2c3e50;
  margin-bottom: 1rem;
}
.venue-info .venue-details {
  line-height: 1.8;
}
.venue-info .venue-details p {
  margin-bottom: 0.5rem;
}
.venue-info .venue-details .venue-name {
  font-size: 1.1rem;
}

.channel-page .site-header .header-content {
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 44px;
}
.channel-page .header-spacer {
  display: none;
}
.channel-page .edition-switcher {
  display: inline-flex;
  align-items: center;
}
.channel-page .edition-switcher .edition-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  line-height: 1;
}
.channel-page .language-switcher {
  display: inline-flex;
  align-items: center;
}
.channel-page .language-switcher .lang-list {
  align-items: center;
  min-height: 30px;
}
.channel-page .language-switcher .lang-link {
  line-height: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
}
.channel-page .channel-surface {
  max-width: 1260px;
  border-radius: 14px;
}
.channel-page .channel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
  align-items: stretch;
  min-height: 520px;
}
.channel-page .channel-main {
  border-right: 1px solid #e9edf1;
}
.channel-page .channel-main-inner,
.channel-page .channel-sidebar-inner {
  padding: 1.5rem;
}
.channel-page .channel-main-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.channel-page .channel-main-content {
  flex: 1;
}
.channel-page .channel-sidebar {
  background: #f8fafc;
}
.channel-page .sidebar-title {
  color: var(--brand-color);
  margin-bottom: 0.35rem;
  line-height: 1.15;
  font-size: 2rem;
}
.channel-page .sidebar-title span {
  font-size: 1.7rem;
}
.channel-page .sidebar-date,
.channel-page .sidebar-venue {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.channel-page .event-introduction {
  text-align: left;
  border-bottom: 0;
  padding: 0.5rem 0 0;
  margin-bottom: 0.8rem;
}
.channel-page .event-introduction .introduction-text {
  font-size: 0.96rem;
  max-width: none;
  margin: 0;
}
.channel-page .shows-list {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.channel-page .shows-list .shows-header {
  color: var(--brand-color);
  margin-bottom: 1rem;
  font-size: 1.15rem;
}
.channel-page .show-item {
  background: #fff;
  border: 1px solid #edf0f3;
  box-shadow: none;
  border-radius: 10px;
  margin-bottom: 0.65rem;
  padding: 0.8rem 1rem;
}
.channel-page .show-item .show-name {
  font-size: 1.05rem;
}
.channel-page .ticket-types {
  padding-top: 1rem;
}
.channel-page .ticket-types .types-header {
  text-align: left;
  margin-bottom: 1rem;
}
.channel-page .ticket-types .types-header h2 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}
.channel-page .ticket-types .types-header p {
  font-size: 0.9rem;
}
.channel-page .ticket-types .types-grid {
  grid-template-columns: 1fr;
  gap: 0.65rem;
}
.channel-page .ticket-type-card {
  box-shadow: none;
  border: 1px solid #edf0f3;
  border-radius: 10px;
  padding: 0.8rem 1rem;
}
.channel-page .ticket-type-card .type-header {
  margin-bottom: 0.35rem;
}
.channel-page .ticket-type-card .type-name {
  font-size: 1.03rem;
  margin-bottom: 0;
}
.channel-page .ticket-type-card .type-price {
  font-size: 1.12rem;
  margin-left: 0.5rem;
  align-items: flex-end;
  text-align: right;
}
.channel-page .ticket-type-card .type-price .fee {
  font-size: 0.72rem;
  text-align: right;
}
.channel-page .ticket-type-card .type-description {
  margin-bottom: 0.35rem;
  font-size: 0.86rem;
}
.channel-page .extras-section {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid #edf0f3;
}
.channel-page .site-footer {
  background: transparent;
  border-top: 0;
  margin-top: auto;
  padding: 1.25rem 0;
}
.channel-page .site-footer .container {
  max-width: none;
  padding: 0;
}
.channel-page .site-footer .footer-content {
  text-align: center;
  border-top: 0;
}
.channel-page .site-footer .footer-org {
  margin-bottom: 1rem;
}
.channel-page .site-footer .footer-links {
  margin-bottom: 1rem;
}

.info-page .site-header .header-content {
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 44px;
}
.info-page .header-spacer {
  display: none;
}
.info-page .edition-switcher {
  display: inline-flex;
  align-items: center;
}
.info-page .edition-switcher .edition-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  line-height: 1;
}
.info-page .language-switcher {
  display: inline-flex;
  align-items: center;
}
.info-page .language-switcher .lang-list {
  align-items: center;
  min-height: 30px;
}
.info-page .language-switcher .lang-link {
  line-height: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .site-header .event-name {
    font-size: 1.5rem;
  }
  .header-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.5rem;
  }
  .header-content .edition-switcher,
.header-content .language-switcher {
    justify-self: center;
  }
  .language-switcher .lang-list {
    justify-content: center;
  }
  .event-details {
    flex-direction: column;
    gap: 1rem;
  }
  .channel-page .channel-layout {
    grid-template-columns: 1fr;
  }
  .channel-page .channel-main {
    border-right: 0;
    border-bottom: 1px solid #e9edf1;
  }
  .channel-page .channel-main-inner,
.channel-page .channel-sidebar-inner {
    padding: 1rem;
  }
  .channel-page .sidebar-title {
    font-size: 1.6rem;
  }
  .channel-page .sidebar-title span {
    font-size: 1.35rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links .footer-separator {
    display: none;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}
.text-center {
  text-align: center;
}

.text-muted {
  color: #95a5a6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

/*# sourceMappingURL=main.css.map */
