*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange: #f97c2b;
  --pink: #d4607a;
  --purple: #7b5ea7;
  --teal: #7dd4d4;
  --dark: #0d0a12;
  --glass-bg: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --glass-blur: blur(24px);
}
html, body {
  width: 100%; min-height: 100%;
  background-color: var(--dark);
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  color: #fff;
  font-family: 'Syne', sans-serif;
  overflow-x: hidden;
  line-height: normal;
}
body { min-height: 100vh; }
a { color: inherit; }
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px 80px;
  gap: 48px;
}
.card {
  padding: 56px 64px 52px;
  max-width: 820px;
  width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 44px;
  animation: cardIn 1s cubic-bezier(.16,1,.3,1) both;
}
.logo-wrap { width: 100%; animation: fadeUp 0.9s 0.15s cubic-bezier(.16,1,.3,1) both; }
.logo-wrap img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; }
.logo-wrap img:hover { transform: scale(1.015); }
.divider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
  animation: fadeUp 0.9s 0.3s cubic-bezier(.16,1,.3,1) both;
}
.actions { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.9s 0.45s cubic-bezier(.16,1,.3,1) both; }
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 12px; padding: 16px 36px;
  border-radius: 100px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease, background 0.2s, border-color 0.2s;
  border: none; outline: none; overflow: hidden;
}
.btn::after { content: ''; position: absolute; inset: 0; border-radius: inherit; background: rgba(255,255,255,0.15); transform: scale(0); opacity: 0; transition: transform 0.5s cubic-bezier(.16,1,.3,1), opacity 0.5s; }
.btn:active::after { transform: scale(2.5); opacity: 0; transition: 0s; }
.btn:hover { transform: translateY(-3px) scale(1.03); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary, .btn-email, .btn-contact, .btn-home { background: linear-gradient(135deg, #f97c2b, #d4607a); color: #fff; box-shadow: 0 8px 32px rgba(249,124,43,0.35), 0 2px 8px rgba(0,0,0,0.3); }
.btn-primary:hover, .btn-email:hover, .btn-contact:hover, .btn-home:hover { box-shadow: 0 16px 48px rgba(249,124,43,0.55), 0 4px 16px rgba(0,0,0,0.4); }
.btn-tickets {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  overflow: hidden;
  background: linear-gradient(135deg, #f97c2b, #d4607a);
  color: #fff;
  align-self: flex-start;
  margin-top: 8px;
  box-shadow: 0 6px 24px rgba(249,124,43,0.3), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease;
}
.btn-tickets:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 36px rgba(249,124,43,0.5), 0 4px 12px rgba(0,0,0,0.4);
}
.btn-tickets:active { transform: translateY(0) scale(0.98); }
.btn-secondary, .btn-about, .btn-whatson, .btn-instagram, .btn-materials, .btn-back {
  background: var(--glass-bg); color: #fff; border: 1px solid var(--glass-border); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.btn-secondary:hover, .btn-about:hover, .btn-whatson:hover, .btn-instagram:hover, .btn-materials:hover, .btn-back:hover {
  border-color: rgba(255,255,255,0.2); box-shadow: 0 4px 16px rgba(0,0,0,0.4); background: rgba(255,255,255,0.08);
}
.header { width: 100%; max-width: 900px; display: flex; align-items: center; justify-content: space-between; animation: fadeUp 0.9s 0s cubic-bezier(.16,1,.3,1) both; }
.header-logo img { height: 36px; width: auto; display: block; opacity: 0.9; transition: opacity 0.3s; }
.header-logo img:hover { opacity: 1; }
.page-title { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.9); }
.header-divider, .section-divider { width: 100%; max-width: 900px; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent); animation: fadeUp 0.9s 0.1s cubic-bezier(.16,1,.3,1) both; }
.about-wrap { width: 100%; max-width: 900px; display: flex; flex-direction: column; gap: 48px; animation: fadeUp 0.9s 0.15s cubic-bezier(.16,1,.3,1) both; }
.about-intro { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 6vw, 4rem); letter-spacing: 0.05em; line-height: 1.05; color: #fff; }
.about-intro span { background: linear-gradient(135deg, #f97c2b, #d4607a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-section { display: flex; flex-direction: column; gap: 16px; }
.about-section-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.about-section-body { font-size: 1.05rem; line-height: 2; color: rgba(255,255,255,0.65); max-width: 680px; padding-bottom: 0.2em; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.team-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 14px; padding: 24px; display: flex; flex-direction: column; gap: 8px; transition: border-color 0.3s, transform 0.3s; }
.team-card:hover { border-color: rgba(255,255,255,0.22); transform: translateY(-3px); }
.team-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.08em; color: #fff; }
.team-role { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.team-bio { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.55); margin-top: 4px; margin-bottom: 0.5em; }
.opportunities-wrap { width: 100%; max-width: 900px; display: flex; flex-direction: column; gap: 24px; animation: fadeUp 0.9s 0.15s cubic-bezier(.16,1,.3,1) both; }
.opportunity-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 16px; transition: border-color 0.3s; }
.opportunity-card:hover { border-color: rgba(255,255,255,0.22); }
.opportunity-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; letter-spacing: 0.06em; line-height: 1; color: #fff; }
.opportunity-meta { display: flex; flex-direction: column; gap: 10px; }
.opportunity-detail { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: rgba(255,255,255,0.65); padding-bottom: 0.15em; line-height: 1.8; }
.opportunity-detail svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 3px; color: rgba(255,255,255,0.45); }
.opportunity-description { font-size: 0.95rem; line-height: 2; color: rgba(255,255,255,0.7); padding-bottom: 0.2em; }
.opportunity-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hero { width: 100%; max-width: 900px; display: flex; gap: 40px; align-items: flex-start; animation: fadeUp 0.9s 0.15s cubic-bezier(.16,1,.3,1) both; }
.hero-poster { flex-shrink: 0; width: 220px; aspect-ratio: 1 / 1.414; border-radius: 10px; overflow: hidden; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); }
.hero-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-info { flex: 1; display: flex; flex-direction: column; gap: 14px; justify-content: center; padding-top: 8px; }
.show-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 5vw, 3rem); letter-spacing: 0.06em; line-height: 1; color: #fff; }
.show-credits { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); line-height: 1.8; }
.show-description { font-size: 0.95rem; line-height: 2; color: rgba(255,255,255,0.7); padding-bottom: 0.2em; }
.show-list { width: 100%; max-width: 900px; display: flex; flex-direction: column; gap: 32px; }
.show-card { display: flex; gap: 32px; align-items: flex-start; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px; padding: 28px; animation: fadeUp 0.9s cubic-bezier(.16,1,.3,1) both; transition: border-color 0.3s; }
.show-card:hover { border-color: rgba(255,255,255,0.22); }
.show-poster { flex-shrink: 0; width: 180px; aspect-ratio: 1 / 1.414; border-radius: 8px; overflow: hidden; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); }
.show-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.show-info { flex: 1; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.show-location { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.prev-grid { width: 100%; max-width: 900px; display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px; }
.prev-card { display: flex; flex-direction: column; gap: 12px; animation: fadeUp 0.9s cubic-bezier(.16,1,.3,1) both; }
.prev-poster { display: block; width: 100%; aspect-ratio: 1 / 1.414; border-radius: 8px; overflow: hidden; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); transition: border-color 0.3s, transform 0.3s ease; text-decoration: none; }
.prev-poster img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.prev-card:hover .prev-poster { border-color: rgba(255,255,255,0.22); transform: translateY(-3px); }
.prev-card:hover .prev-poster img { transform: scale(1.03); }
.prev-title { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.75); }
.prev-credits { font-size: 0.84rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.section-heading { width: 100%; max-width: 900px; font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); }
.cta-section { width: 100%; max-width: 900px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; animation: fadeUp 0.9s 0.3s cubic-bezier(.16,1,.3,1) both; }
.about-section > .cta-section { margin-top: 24px; }
.cta-heading { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; letter-spacing: 0.08em; color: #fff; }
.cta-subtext { font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.7); max-width: 680px; }
.oops-heading { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.4rem, 8vw, 3.6rem); letter-spacing: 0.08em; color: #fff; margin-top: 8px; }
.oops-body { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.7); max-width: 560px; text-align: center; }
.btn-home { position: relative; display: inline-flex; align-items: center; gap: 10px; padding: 13px 28px; border-radius: 100px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; cursor: pointer; border: none; outline: none; overflow: hidden; transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease; }
.btn-home:hover { transform: translateY(-2px) scale(1.03); }
.btn-home:active { transform: translateY(0) scale(0.98); }
.carousel-wrap { width: 100%; max-width: 900px; animation: fadeUp 0.9s 0.3s cubic-bezier(.16,1,.3,1) both; }
.carousel-label { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.carousel { position: relative; overflow: hidden; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); }
.carousel-track { display: flex; transition: transform 0.45s cubic-bezier(.16,1,.3,1); }
.carousel-slide { flex-shrink: 0; width: 100%; }
.carousel-slide img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(13,10,18,0.75); border: 1px solid var(--glass-border); backdrop-filter: blur(8px); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s, transform 0.2s; z-index: 2; }
.carousel-btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); transform: translateY(-50%) scale(1.08); }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; padding: 16px 0 4px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.dot.active { background: #f97c2b; transform: scale(1.3); }
.hamburger { position: fixed; top: 20px; right: 20px; z-index: 1000; width: 44px; height: 44px; border-radius: 50%; background: rgba(13,10,18,0.85); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; transition: background 0.2s, border-color 0.2s, transform 0.2s; padding: 0; }
.hamburger:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); transform: scale(1.08); }
.hamburger span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s cubic-bezier(.16,1,.3,1), opacity 0.3s; transform-origin: center; }
.nav-overlay { position: fixed; inset: 0; z-index: 1001; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-drawer { position: fixed; top: 0; right: 0; z-index: 1002; width: 280px; height: 100vh; background: rgba(13,10,18,0.96); border-left: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px); display: flex; flex-direction: column; padding: 28px 28px 40px; gap: 0; transform: translateX(100%); transition: transform 0.4s cubic-bezier(.16,1,.3,1); }
.nav-drawer.open { transform: translateX(0); }
.nav-close { align-self: flex-start; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; margin-bottom: 24px; }
.nav-close:hover { background: rgba(255,255,255,0.12); }
.nav-logo { display: block; margin-bottom: 28px; }
.nav-logo img { width: 100%; max-width: 180px; height: auto; opacity: 0.9; }
.nav-divider { width: 100%; height: 1px; margin-bottom: 28px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent); }
.nav-link { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); text-decoration: none; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s, padding-right 0.2s; }
.nav-link:last-child { border-bottom: none; }
.nav-link:hover { color: #fff; padding-right: 8px; }
.nav-link.nav-social-link { display: inline-flex; align-items: center; gap: 10px; font-size: 1.3rem; }
.footer-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  color: rgba(255,255,255,0.8);
}
.site-footer {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 0 18px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.16em;
  font-size: 0.95rem;
  color: #fff;
}
.footer-logo {
  width: 28px;
  height: auto;
  display: block;
}
.site-footer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  max-width: 760px;
}
.site-footer a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s, border-color 0.2s;
}
.site-footer a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.footer-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
} max-width: 900px; display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center; padding: 32px 0 16px; color: rgba(255,255,255,0.8); }
.site-footer { width: 100%; max-width: 900px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 40px; }
.footer-brand { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.16em; font-size: 0.95rem; color: #fff; }
.site-footer p { margin: 0; font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.7); max-width: 760px; }
.site-footer a { color: rgba(255,255,255,0.88); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.12); transition: color 0.2s, border-color 0.2s; }
.site-footer a:hover { color: #fff; border-color: rgba(255,255,255,0.25); }
.footer-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.footer-note { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

.page-placeholder .panel { width: min(100%, 760px); padding: 48px; border: 1px solid var(--glass-border); border-radius: 20px; background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); box-shadow: 0 20px 70px rgba(0,0,0,0.2); display: flex; flex-direction: column; gap: 18px; }
.page-placeholder .eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.page-placeholder h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: 0.08em; }
.page-placeholder p { color: rgba(255,255,255,0.7); line-height: 1.8; }
@keyframes cardIn { from { opacity: 0; transform: translateY(40px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes rippleOut { to { transform: translate(-50%,-50%) scale(30); opacity: 0; } }
@media (max-width: 760px) { .hero, .show-card { flex-direction: column; } .hero-poster, .show-poster { width: 100%; max-width: 220px; } .actions { flex-direction: column; align-items: stretch; } .btn { justify-content: center; } .header { flex-direction: column; align-items: flex-start; gap: 12px; } }
@media (max-width: 600px) { .card { padding: 40px 28px 40px; } .show-card { padding: 22px; } }
