/* Mobile ticketing practice layout */
.ticket-body-outer {
  margin: 0;
  background: #f0f0f0;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.ticket-app {
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ticket-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
}

.ticket-header-title {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  flex: 1;
}

.ticket-header-close {
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  padding: 0 4px;
  text-decoration: none;
  flex-shrink: 0;
}

.ticket-date-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 13px;
  background-color: #f0f0f0;
  color: #333333;
}

.ticket-date-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticket-date-btn {
  color: #888888;
  font-size: 13px;
  cursor: not-allowed;
  border: none;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.ticket-notice {
  margin: 0;
  padding: 8px 14px;
  font-size: 11px;
  color: #999999;
  line-height: 1.4;
  border-bottom: 1px solid #f0f0f0;
}

.ticket-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 72px;
}

.ticket-map-wrap {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  background: #fafafa;
  border-bottom: 1px solid #e8e8e8;
}

.ticket-map-viewport {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
}

.venue-svg {
  width: 100%;
  max-height: 200px;
}

.ticket-timer {
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #666666;
}

.ticket-split-panel {
  display: flex;
  height: 200px;
  border-top: 1px solid #e8e8e8;
}

.ticket-legend-panel {
  flex: 0 0 42%;
  padding: 12px 14px;
  border-right: 1px solid #e8e8e8;
}

.ticket-section-panel {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ticket-panel-title {
  font-size: 13px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 10px 0;
}

.ticket-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #555555;
  padding: 6px 8px;
  margin-bottom: 6px;
  border: 2px solid transparent;
  border-radius: 2px;
}

.ticket-legend-active {
  border-color: #00CD3C;
}

.ticket-swatch {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.ticket-swatch-general {
  background-color: #c4a882;
}

.ticket-swatch-obstructed {
  background-color: #9b7ed9;
}

.ticket-section-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ticket-section-btn {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  font-size: 12px;
  color: #333333;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.1s ease, background 0.1s ease;
}

.ticket-section-btn:hover:not(:disabled),
.ticket-section-btn:focus:not(:disabled) {
  border-color: #00CD3C;
  background: #f8fff9;
  outline: none;
}

.ticket-section-btn.is-highlighted {
  border-color: #00CD3C;
  background: #f0fdf4;
}

.ticket-section-btn:disabled {
  color: #aaaaaa;
  background: #f5f5f5;
  cursor: not-allowed;
}

.ticket-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 13px;
}

.ticket-current-section {
  text-decoration: underline;
  text-decoration-style: dotted;
  color: #333333;
}

.ticket-zone-btn {
  color: #666666;
  font-size: 13px;
  border: none;
  background: transparent;
  padding: 0;
  box-shadow: none;
  cursor: pointer;
}

.ticket-zone-btn:hover {
  color: #333333;
}

.ticket-seat-wrap {
  min-height: 200px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

#seatmap-container {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#seatmap-container br {
  display: none;
}

#seatmap-container [id^="seatmap-"] {
  transform-origin: center center;
}

.ticket-seat-summary {
  padding: 10px 14px;
  border-top: 1px solid #e8e8e8;
  font-size: 13px;
}

.ticket-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
  z-index: 10;
}

.round-success-toast {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 35;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.round-success-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.round-success-toast.is-hiding {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95);
}

.round-success-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 205, 60, 0.75);
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: success-pop 0.2s ease;
}

.round-success-text {
  font-size: 16px;
  font-weight: 700;
  color: rgba(0, 205, 60, 0.75);
  letter-spacing: 0.02em;
}

@keyframes success-pop {
  0% {
    transform: scale(0.6);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

#modalBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 30;
}

#resultModal,
#noticeModal {
  z-index: 40;
}

/* Result screen */
.result-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.45);
}

.result-card {
  width: 100%;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.result-card-header {
  background: linear-gradient(135deg, #00CD3C 0%, #02B522 100%);
  padding: 20px 20px 18px;
  text-align: center;
  color: #ffffff;
}

.result-card-title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.result-card-badge {
  margin: 6px 0 0;
  font-size: 22px;
  font-weight: 800;
}

.result-hero {
  padding: 20px 20px 8px;
  text-align: center;
}

.result-hero-label {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.result-hero-time {
  margin: 4px 0 0;
  font-size: 48px;
  font-weight: 800;
  color: #00CD3C;
  line-height: 1.1;
}

.result-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 4px 20px;
  font-size: 18px;
  color: #f5b800;
}

.result-level {
  margin: 0;
  padding: 0 20px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #02B522;
}

.result-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 16px 20px;
}

.result-stat {
  background: #f6fdf8;
  border: 1px solid #d4f5dc;
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}

.result-stat-label {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.result-stat-value {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
}

.result-stat-best-score {
  grid-column: 1 / -1;
  background: #f9fafb;
  border-color: #e5e7eb;
}

.result-stat-best-score .result-stat-label {
  color: #9ca3af;
}

.result-stat-best-score .result-stat-value {
  color: #6b7280;
  font-variant-numeric: tabular-nums;
}

.result-stat-best-score.is-new-record {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-color: #f5b800;
  box-shadow: 0 0 0 1px rgba(245, 184, 0, 0.12), 0 4px 14px rgba(245, 184, 0, 0.18);
  animation: result-best-pulse 1.2s ease-out;
}

.result-stat-best-score.is-new-record .result-stat-label {
  color: #b45309;
  font-weight: 700;
}

.result-stat-best-score.is-new-record .result-stat-value {
  color: #d97706;
  font-size: 22px;
}

@keyframes result-best-pulse {
  0% {
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(245, 184, 0, 0.35);
  }

  60% {
    transform: scale(1.01);
    box-shadow: 0 0 0 6px rgba(245, 184, 0, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 1px rgba(245, 184, 0, 0.12), 0 4px 14px rgba(245, 184, 0, 0.18);
  }
}

.result-share-btn {
  display: block;
  width: calc(100% - 32px);
  margin: 0 16px 8px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #2b2b2b;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.result-share-btn:hover {
  background: #1a1a1a;
}

.result-home-btn {
  display: block;
  width: calc(100% - 32px);
  margin: 0 16px 16px;
  padding: 12px;
  border-radius: 8px;
  background: #e8e8e8;
  color: #555555;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.result-home-btn:hover {
  background: #dddddd;
}

.ticket-reset-btn {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background: #ffffff;
  font-size: 20px;
  color: #888888;
  cursor: pointer;
  padding: 0;
  box-shadow: none;
}

.ticket-round-badge {
  flex-shrink: 0;
  text-align: center;
  border: 1px solid #dddddd;
  border-radius: 4px;
  padding: 2px 6px;
  line-height: 1.2;
}

.ticket-round-label {
  display: block;
  font-size: 7px;
  font-weight: 700;
  color: #b5b9bf;
}

.ticket-round-value {
  font-size: 11px;
  font-weight: 700;
  color: #888888;
}

.ticket-round-value span {
  font-size: 16px;
  color: #666666;
}

.ticket-complete-btn {
  flex: 1;
  padding: 12px 8px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  background: #F4F4F4;
  color: #AFAFAF;
  cursor: not-allowed;
}

.ticket-complete-btn:not(:disabled) {
  background: #00CD3C;
  color: #ffffff;
  cursor: pointer;
}

.ticket-complete-btn:not(:disabled):hover {
  background: #02B522;
}

/* Venue map SVG sections */
.venue-section {
  cursor: pointer;
}

.venue-section .section-rect {
  fill: #c4a882;
  stroke: #a08860;
  stroke-width: 1;
  transition: fill 0.15s ease, stroke 0.15s ease;
}

.venue-section.section-obstructed .section-rect {
  fill: #9b7ed9;
  stroke: #7a5fbf;
}

.venue-section .section-label {
  fill: #ffffff;
  font-size: 28px;
  font-weight: bold;
  pointer-events: none;
}

.venue-section .section-sublabel {
  fill: #f5f0e8;
  font-size: 10px;
  pointer-events: none;
}

.venue-section:hover .section-rect,
.venue-section:focus .section-rect {
  stroke: #00CD3C;
  stroke-width: 1.5;
}

.venue-section.section-sold-out {
  cursor: not-allowed;
  pointer-events: none;
}

.venue-section.section-sold-out .section-rect {
  fill: #d9d9d9;
  stroke: #bbbbbb;
}

.venue-section.section-sold-out .section-label,
.venue-section.section-sold-out .section-sublabel {
  fill: #999999;
}

.venue-section.section-highlight .section-rect {
  stroke: #00CD3C;
  stroke-width: 3;
}

/* Seat row layout (formerly Tailwind .flex) */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.font-bold {
  font-weight: 700;
}

/* Individual seat grid (base size; scaled to fit via JS) */
.seat {
  width: 10px;
  height: 10px;
  background-color: #DDDDDD;
  margin-right: 2px;
  margin-bottom: 2px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.seat:hover {
  background-color: #b5b9bf;
}

.available-seat {
  width: 10px;
  height: 10px;
  background-color: #BEA886;
  margin-right: 2px;
  margin-bottom: 2px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.available-seat:hover {
  background-color: #726655;
}

.empty-block {
  width: 10px;
  height: 10px;
  margin-right: 2px;
  margin-bottom: 2px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.lilita-one-regular {
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.theme-green-text {
  color: #00CD3C;
}

.selected-seat {
  border: 2px solid black;
}

.hidden {
  display: none !important;
}

/* App shell (Bootstrap-style dashboard layout) */
:root {
  --app-sidebar-width: 260px;
  --app-green: #00CD3C;
  --app-green-dark: #02B522;
}

html {
  height: 100%;
  overflow: hidden;
}

.app-body {
  margin: 0;
  height: 100%;
  height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
  background: #f8f9fa;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.app-shell {
  display: flex;
  height: 100%;
  min-height: 0;
}

.app-sidebar {
  width: var(--app-sidebar-width);
  flex-shrink: 0;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #ffffff;
  border-right: 1px solid #dee2e6;
  flex-direction: column;
}

.app-sidebar-offcanvas {
  width: var(--app-sidebar-width);
  background: #ffffff;
}

.app-sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

.app-sidebar-brand {
  padding: 20px 20px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.app-brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.app-brand-link:hover .app-brand-text {
  color: var(--app-green-dark);
}

.app-brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--app-green) 0%, var(--app-green-dark) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.app-brand-text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #1a1a1a;
}

.app-nav {
  flex: 1;
  padding: 16px 12px;
}

.app-nav-label {
  margin: 0 8px 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.app-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 2px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.15s ease, color 0.15s ease;
}

.app-nav-link i {
  width: 18px;
  text-align: center;
  font-size: 14px;
  color: #9ca3af;
}

.app-nav-link:hover {
  background: #f3f4f6;
  color: var(--app-green-dark);
}

.app-nav-link.is-active {
  background: #ecfdf3;
  color: var(--app-green-dark);
  border-left-color: var(--app-green);
  font-weight: 600;
}

.app-nav-link.is-active i {
  color: var(--app-green);
}

.app-nav-link.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.app-nav-badge {
  margin-left: auto;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #f3f4f6;
  color: #9ca3af;
  border-radius: 999px;
}

.app-sidebar-footer {
  padding: 16px 20px 20px;
  border-top: 1px solid #f0f0f0;
}

.app-sidebar-hint {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #9ca3af;
}

.app-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #ffffff;
  border-bottom: 1px solid #dee2e6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
  z-index: 20;
}

.app-topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.app-topbar-home-link {
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.app-topbar-home-link:hover .app-topbar-title {
  color: var(--app-green-dark);
}

.home-logo-link {
  display: inline-block;
  text-decoration: none;
}

.app-menu-btn {
  padding: 6px 10px;
  color: #4b5563;
  text-decoration: none;
  font-size: 18px;
}

.app-menu-btn:hover {
  color: var(--app-green-dark);
}

.app-topbar-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--app-green);
}

.app-topbar-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-topbar-right {
  flex-shrink: 0;
}

.app-lang-btn {
  width: 38px;
  height: 38px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background: #ffffff;
  color: #4b5563;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.app-lang-btn:hover {
  border-color: var(--app-green);
  color: var(--app-green-dark);
}

.app-content {
  flex: 1;
  min-height: 0;
  padding: 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.app-site-footer {
  margin-top: 32px;
  margin-left: -24px;
  margin-right: -24px;
  padding: 16px 24px 0;
  border-top: 1px solid #dee2e6;
  font-size: 12px;
  color: #9ca3af;
}

.app-footer-meta {
  margin: 0 0 8px;
}

.app-footer-brand {
  font-weight: 700;
  color: #4b5563;
  margin-right: 8px;
}

.app-footer-copy {
  color: #9ca3af;
}

.app-footer-note {
  color: #9ca3af;
}

.app-card {
  border: 1px solid #dee2e6;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.app-content-about {
  padding: 28px 24px 40px;
}

.home-about {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 32px 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 55%, #f8faf9 100%);
  border: 1px solid #d8f5e0;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 205, 60, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-copy {
  position: relative;
  z-index: 1;
}

.about-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--app-green-dark);
  background: rgba(0, 205, 60, 0.1);
  border: 1px solid rgba(0, 205, 60, 0.2);
  border-radius: 999px;
}

.about-title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #111827;
}

.about-lead {
  margin: 16px 0 0;
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

.about-cta-btn {
  margin-top: 24px;
  padding: 12px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 205, 60, 0.25);
}

.about-hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.hero-preview {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.hero-preview-frame {
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.hero-preview-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid #f3f4f6;
}

.hero-preview-selling {
  display: inline-block;
  padding: 4px 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 4px;
  animation: hero-selling-blink 2.4s step-end infinite;
}

@keyframes hero-selling-blink {
  0%,
  100% {
    opacity: 1;
    color: #dc2626;
    background: #fef2f2;
  }

  50% {
    opacity: 0.4;
    color: #991b1b;
    background: #fee2e2;
  }
}

.hero-preview-hud {
  text-align: right;
}

.hero-preview-hud-label {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 2px;
}

.hero-preview-timer {
  font-size: 22px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--app-green);
}

.hero-preview-stage-wrap {
  padding: 8px 16px 10px;
  text-align: center;
}

.hero-preview-stage {
  height: 4px;
  width: 40%;
  margin: 0 auto 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, #d1d5db, #e5e7eb);
}

.hero-preview-stage-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #9ca3af;
}

.hero-preview-seats {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 3px;
  padding: 0 16px 14px;
}

.hero-preview-seat {
  aspect-ratio: 1;
  border-radius: 2px;
  background: #e5e7eb;
}

.hero-preview-seat.is-available {
  background: #bea886;
}

.hero-preview-seat.is-swap-a {
  animation: hero-seat-swap-a 3s ease-in-out infinite;
}

.hero-preview-seat.is-swap-b {
  animation: hero-seat-swap-b 3s ease-in-out infinite;
}

.hero-preview-seat.is-live {
  animation: hero-seat-pulse 2.4s ease-in-out infinite;
}

@keyframes hero-seat-swap-a {
  0%,
  55% {
    background: #bea886;
  }

  65%,
  95% {
    background: #e5e7eb;
  }

  100% {
    background: #bea886;
  }
}

@keyframes hero-seat-swap-b {
  0%,
  55% {
    background: #e5e7eb;
  }

  65%,
  95% {
    background: #bea886;
  }

  100% {
    background: #e5e7eb;
  }
}

@keyframes hero-seat-pulse {
  0%,
  100% {
    background: #bea886;
    transform: scale(1);
  }

  50% {
    background: #d4bc96;
    transform: scale(0.92);
  }
}

.hero-preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 16px 14px;
  border-top: 1px solid #f3f4f6;
  background: #fafafa;
}

.hero-preview-round {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #6b7280;
}

.hero-preview-round strong {
  font-size: 13px;
  color: #111827;
}

.hero-preview-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--app-green-dark);
}

.hero-preview-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--app-green);
  animation: hero-preview-pulse 1.8s ease-in-out infinite;
}

@keyframes hero-preview-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.8);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-preview-selling,
  .hero-preview-seat.is-swap-a,
  .hero-preview-seat.is-swap-b,
  .hero-preview-seat.is-live,
  .hero-preview-pulse {
    animation: none;
  }
}

.about-logo {
  width: 100%;
  max-width: 250px;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.08));
}

.about-hero-share .share-level-name {
  margin: 0;
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--app-green) 0%, var(--app-green-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero-share .share-hero-tagline {
  margin: 12px 0 0;
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #374151;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about-stat {
  padding: 20px 16px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.about-stat:hover {
  border-color: rgba(0, 205, 60, 0.25);
  box-shadow: 0 4px 16px rgba(0, 205, 60, 0.08);
}

.about-stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--app-green);
}

.about-stat-label {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
}

.about-panel {
  padding: 28px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.about-panel-header {
  margin-bottom: 20px;
}

.about-panel-title {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.about-panel-desc {
  margin: 8px 0 0;
  font-size: 14px;
  color: #6b7280;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.about-feature-card {
  padding: 20px;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  background: #fafafa;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.about-feature-card:hover {
  border-color: #d4f5dc;
  box-shadow: 0 4px 16px rgba(0, 205, 60, 0.08);
}

.about-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--app-green) 0%, var(--app-green-dark) 100%);
  color: #ffffff;
  font-size: 16px;
}

.about-feature-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
}

.about-feature-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
}

.about-flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-flow-step {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #f3f4f6;
}

.about-flow-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-flow-step:first-child {
  padding-top: 0;
}

.about-flow-num {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--app-green);
  padding-top: 2px;
}

.about-flow-step-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
}

.about-flow-step-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
}

.about-bottom-cta {
  padding: 32px 28px;
  text-align: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--app-green) 0%, var(--app-green-dark) 100%);
  color: #ffffff;
}

.about-bottom-cta-title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-bottom-cta-text {
  margin: 10px 0 0;
  font-size: 14px;
  opacity: 0.9;
}

.about-bottom-cta-btn {
  margin-top: 20px;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 12px;
  color: var(--app-green-dark);
}

.about-bottom-cta-btn:hover {
  color: var(--app-green-dark);
  background: #ffffff;
}

@media (min-width: 768px) {
  .app-content-about {
    padding: 36px 32px 48px;
  }

  .about-hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 40px 44px;
    gap: 32px;
  }

  .about-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-flow-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .about-flow-step {
    flex-direction: column;
    padding: 0;
    border-bottom: none;
    border-right: 1px solid #f3f4f6;
    padding-right: 16px;
  }

  .about-flow-step:last-child {
    border-right: none;
    padding-right: 0;
  }
}

.app-btn-primary.btn-success {
  background: linear-gradient(135deg, var(--app-green) 0%, var(--app-green-dark) 100%);
  border-color: var(--app-green-dark);
  font-weight: 600;
}

.app-btn-primary.btn-success:hover,
.app-btn-primary.btn-success:focus {
  background: linear-gradient(135deg, #00b835 0%, #029e1e 100%);
  border-color: #029e1e;
}

.app-content-practice .app-site-footer {
  display: none;
}

.app-content-practice {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.practice-page {
  display: flex;
  justify-content: center;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.practice-page .ticket-app {
  width: 100%;
  max-width: 430px;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.practice-page .ticket-main {
  flex: 1;
  min-height: 0;
  padding-bottom: 56px;
  overflow: hidden;
}

.practice-page #venue-view .ticket-map-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.practice-page .ticket-map-viewport {
  flex: 1;
  min-height: 0;
  padding: 12px;
}

.practice-page .venue-svg {
  max-height: 100%;
}

.practice-page .ticket-split-panel {
  flex: 0 0 180px;
  height: auto;
  min-height: 0;
}

.practice-page #section-view {
  flex: 1;
  min-height: 0;
}

.practice-page .ticket-seat-wrap {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

@media (min-width: 992px) {
  .practice-page .ticket-app {
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin: 12px 0;
    height: calc(100% - 24px);
  }

  .practice-page .ticket-footer {
    left: var(--app-sidebar-width);
  }

  .practice-page .ticket-seat-wrap {
    overflow: auto;
    overscroll-behavior: contain;
  }

  #seatmap-container {
    align-items: center;
    justify-content: center;
    overflow: visible;
  }
}

/* Queue modal */
.queue-modal {
  position: absolute;
  inset: 0;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.queue-modal-card {
  width: 100%;
  max-width: 300px;
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.queue-modal-title {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.queue-modal-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
}

.queue-modal-number {
  margin: 0;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: var(--app-green);
  transition: transform 0.15s ease, color 0.15s ease;
}

.queue-modal-number.is-ticking {
  transform: scale(1.1);
}

.queue-modal-status {
  margin: 16px 0 0;
  font-size: 13px;
  color: #666666;
}

/* Notice modal */
.notice-modal {
  position: absolute;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.notice-modal-card {
  width: 100%;
  max-width: 320px;
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.notice-modal-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.notice-modal-text {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
}

.notice-modal-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--app-green) 0%, var(--app-green-dark) 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* Home page content */
.home-lang-wrap {
  position: relative;
}

.home-lang-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-lang-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.home-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 120px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 50;
  overflow: hidden;
}

.home-lang-item {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: #333333;
  text-decoration: none;
}

.home-lang-item:hover {
  background: #f0fdf4;
  color: #02B522;
}

/* Provider picker */
.provider-picker {
  max-width: 720px;
  margin: 0 auto;
}

.provider-picker-lead {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
}

.provider-picker-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.provider-picker-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  padding: 18px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.provider-picker-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.provider-picker-head {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.provider-picker-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 16px;
}

.provider-picker-card-easy .provider-picker-icon {
  background: #eef4fa;
  color: #1a66b3;
}

.provider-picker-card-easy:hover {
  border-color: #1a66b3;
}

.provider-picker-card-medium .provider-picker-icon {
  background: #e8f9ee;
  color: #02b522;
}

.provider-picker-card-medium:hover {
  border-color: #02b522;
}

.provider-picker-card-hard .provider-picker-icon {
  background: #fff4e6;
  color: #e67e22;
}

.provider-picker-card-hard:hover {
  border-color: #e67e22;
}

.provider-picker-title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.provider-picker-level {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.provider-picker-recommended {
  flex-shrink: 0;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e8f9ee;
  color: #02b522;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.provider-picker-card-disabled {
  opacity: 0.72;
  cursor: not-allowed;
  background: #fafafa;
}

.provider-picker-card-disabled:hover {
  border-color: #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.provider-picker-soon {
  margin-left: auto;
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff4e6;
  color: #e67e22;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.provider-picker-hint {
  margin: 8px 0 0 52px;
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
}

.provider-picker-personal-best {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0 0 52px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.provider-picker-personal-best-label {
  color: #6b7280;
}

.provider-picker-personal-best-value {
  font-variant-numeric: tabular-nums;
  color: #374151;
}

.provider-picker-card-easy .provider-picker-personal-best {
  background: #eef4fa;
}

.provider-picker-card-easy .provider-picker-personal-best-label {
  color: #5a7fa8;
}

.provider-picker-card-easy .provider-picker-personal-best-value {
  color: #1a66b3;
}

.provider-picker-card-medium .provider-picker-personal-best {
  background: #e8f9ee;
}

.provider-picker-card-medium .provider-picker-personal-best-label {
  color: #3d9e52;
}

.provider-picker-card-medium .provider-picker-personal-best-value {
  color: #02b522;
}

.provider-picker-cta {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: #4b5563;
  white-space: nowrap;
}

.provider-picker-card-easy .provider-picker-cta {
  color: #1a66b3;
}

.provider-picker-card-medium .provider-picker-cta {
  color: #02b522;
}

.provider-picker-card-hard .provider-picker-cta {
  color: #e67e22;
}

/* Disclaimer */
.site-disclaimer {
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #9ca3af;
  border-radius: 8px;
  background: #f9fafb;
}

.site-disclaimer-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-disclaimer-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
}

.site-disclaimer-compact {
  margin-top: 0;
  padding: 10px 12px;
  border-left-width: 3px;
  border-radius: 6px;
}

.site-disclaimer-compact .site-disclaimer-text {
  font-size: 11px;
  line-height: 1.5;
}

.app-site-footer .site-disclaimer-compact {
  margin-top: 0;
}

.provider-picker .site-disclaimer {
  margin-top: 32px;
}

.home-about .site-disclaimer {
  margin-top: 32px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .app-site-footer .site-disclaimer {
    display: none;
  }
}

@media (min-width: 992px) {
  .home-about .site-disclaimer {
    display: none;
  }
}

