:root{
  --bg:#050707;
  --neon:#4CFF74;
  --neon-soft:rgba(76,255,116,0.22);
  --panel:rgba(10,18,14,0.78);
  --text:rgba(255,255,255,0.92);
  --muted:rgba(255,255,255,0.72);
  --border:rgba(255,255,255,0.14);
  --radius:18px;
  --shadow:0 18px 60px rgba(0,0,0,0.55);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--text);
  background: #040606;
  background-image:
    radial-gradient(ellipse 1000px 600px at 50% 20%, var(--neon-soft), transparent 70%),
    radial-gradient(ellipse 800px 500px at 20% 85%, rgba(29,190,94,0.16), transparent 75%);
  background-attachment: fixed;
  overflow-x:hidden;
  min-height: 100vh;
}

/* VHS-ish scanlines - TV static effect like Most Haunted */
.scanlines{
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 2px,
      rgba(0,0,0,0.3) 2px,
      rgba(0,0,0,0.3) 3px
    );
  opacity:0.6;
  z-index:0;
  mix-blend-mode:multiply;
  animation: scanlineFlicker 0.15s linear infinite;
}

@keyframes scanlineFlicker {
  0% { opacity: 0.38; }
  50% { opacity: 0.42; }
  100% { opacity: 0.38; }
}

/* Soft "broadcast glow" */
.bloom{
  position:fixed;
  inset:-20%;
  pointer-events:none;
  z-index:1;
  background:
    radial-gradient(circle at 40% 20%, rgba(76,255,116,0.10), transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(76,255,116,0.08), transparent 55%),
    radial-gradient(circle at 20% 75%, rgba(29,190,94,0.07), transparent 55%);
  filter: blur(2px);
  opacity:0.85;
}

.wrap{
  width:min(1100px,calc(100% - 40px));
  margin:0 auto;
  padding:28px 0 64px;
  position:relative;
  z-index:2;
}

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
  gap:14px;
  position:relative;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-transform:uppercase;
  letter-spacing:0.12em;
  font-size:13px;
  font-weight:900;
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--neon);
  box-shadow:0 0 18px rgba(76,255,116,0.75), 0 0 44px rgba(76,255,116,0.25);
}

nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px;
}

nav a{
  font-size:13px;
  color:var(--muted);
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.03);
  text-decoration:none;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

nav a:hover{
  transform: translateY(-1px);
  border-color: rgba(76,255,116,0.45);
  background: rgba(76,255,116,0.07);
}

.hero{
  border-radius:var(--radius);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  background:
    radial-gradient(900px 520px at 50% 35%, rgba(76,255,116,0.18), transparent 62%),
    linear-gradient(180deg,rgba(255,255,255,0.06),rgba(255,255,255,0.02));
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.08));
  opacity:1;
  pointer-events:none;
}

.hero-inner{
  position:relative;
  padding:32px;
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:28px;
  align-items:start;
}

h1{
  margin:0;
  font-size:clamp(42px,6vw,88px);
  font-weight:950;
  line-height:0.95;
  text-shadow: 0 0 14px rgba(76,255,116,0.25), 0 0 44px rgba(76,255,116,0.12);
}

.subtitle{
  margin-top:10px;
  text-transform:uppercase;
  letter-spacing:0.30em;
  font-size:12px;
  color:rgba(255,255,255,0.80);
  font-weight:800;
}

.tagline{
  margin-top:14px;
  font-weight:900;
  color:rgba(255,255,255,0.90);
  font-size:14px;
  letter-spacing:0.04em;
}

.lede{
  margin-top:16px;
  font-size:16px;
  line-height:1.7;
  max-width:62ch;
  color:rgba(255,255,255,0.84);
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.chip{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.04);
  font-size:13px;
  color:rgba(255,255,255,0.75);
}

.cta{
  margin-top:22px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.04);
  color:var(--text);
  font-weight:900;
  text-decoration:none;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
  display:inline-flex;
  align-items:center;
  gap:10px;
  user-select:none;
  cursor:pointer;
}

.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(76,255,116,0.45);
  background: rgba(76,255,116,0.08);
  box-shadow: 0 0 0 6px rgba(76,255,116,0.10);
}

.btn.primary{
  border-color: rgba(76,255,116,0.70);
  background:linear-gradient(180deg,rgba(76,255,116,0.28),rgba(76,255,116,0.10));
  box-shadow:0 0 30px rgba(76,255,116,0.22);
}

.panel{
  border-radius:16px;
  border:1px solid var(--border);
  background:rgba(0,0,0,0.22);
  padding:16px;
  backdrop-filter: blur(8px);
}

.video{
  position:relative;
  padding-top:56.25%;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 10px 40px rgba(0,0,0,0.4);
  background: rgba(0,0,0,0.25);
}

.video iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.note{
  margin-top:10px;
  font-size:13px;
  line-height:1.55;
  color:rgba(255,255,255,0.68);
}

section{
  margin-top:24px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(255,255,255,0.03);
  box-shadow:0 10px 40px rgba(0,0,0,0.25);
  clear:both;
}

section .inner{
  padding:24px;
}

h2{
  margin:0 0 12px;
  font-size:20px;
  font-weight:950;
}

p{
  margin:0;
  font-size:15px;
  line-height:1.75;
  color:rgba(255,255,255,0.74);
  max-width:75ch;
}

.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:14px;
}

.card{
  border-radius:16px;
  border:1px solid var(--border);
  background:rgba(0,0,0,0.20);
  padding:14px;
}

.card b{
  display:block;
  margin-bottom:6px;
  font-weight:950;
  color:rgba(255,255,255,0.90);
}

.card span{
  display:block;
  color:rgba(255,255,255,0.72);
  line-height:1.6;
  font-size:14px;
}

.disclaimer{
  margin-top:14px;
  padding:14px;
  border-radius:16px;
  border:1px dashed rgba(76,255,116,0.40);
  background:rgba(76,255,116,0.06);
  color:rgba(255,255,255,0.74);
  font-size:13px;
  line-height:1.6;
}

footer{
  margin-top:28px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  font-size:13px;
  color:rgba(255,255,255,0.60);
}

/* Animations */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 18px rgba(76,255,116,0.75), 0 0 44px rgba(76,255,116,0.25); }
  50% { opacity: 0.7; transform: scale(1.15); box-shadow: 0 0 28px rgba(76,255,116,0.95), 0 0 64px rgba(76,255,116,0.45); }
}

@keyframes scanlineMove {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.dot {
  animation: pulse 2s ease-in-out infinite;
}

/* Animated scanline - moving beam like TV */
.scanlines::after {
  content: "";
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  height: 20%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(76,255,116,0.05) 20%,
    rgba(76,255,116,0.25) 50%,
    rgba(76,255,116,0.05) 80%,
    transparent 100%
  );
  animation: scanlineMove 8s linear infinite;
  opacity: 0.8;
  pointer-events: none;
}

/* Social media icons */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-links a:hover {
  border-color: var(--neon);
  background: rgba(76,255,116,0.1);
  color: var(--neon);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(76,255,116,0.3);
}

/* Newsletter section */
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--neon);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px rgba(76,255,116,0.1);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 30px;
  margin-top: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--neon), rgba(76,255,116,0.2));
}

.timeline-item {
  position: relative;
  padding-bottom: 24px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px rgba(76,255,116,0.6);
  border: 2px solid var(--bg);
}

.timeline-item h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 900;
  color: var(--neon);
}

.timeline-item .date {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  display: block;
}

.timeline-item p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Current show layout */
.show-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 18px;
}

.show-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  width: 100%;
}

.show-image img {
  width: 100%;
  display: block;
}

.show-details h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 950;
  color: var(--neon);
}

.show-date {
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 16px;
  font-weight: 700;
}

.show-details p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Loading Animation */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
  text-align: center;
}

.loader-dot {
  width: 20px;
  height: 20px;
  margin: 0 auto 16px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-text {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 900;
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(76,255,116,0.15);
  color: var(--neon);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  backdrop-filter: blur(10px);
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(76,255,116,0.4);
}

/* Hamburger menu button */
#hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  background: rgba(255,255,255,0.04);
  transition: all 0.3s ease;
}

#hamburger:hover {
  border-color: var(--neon);
  background: rgba(76,255,116,0.1);
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Tablet breakpoint */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .grid3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .show-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
  .wrap {
    width: calc(100% - 32px);
    padding: 16px 0 40px;
  }

  .hero {
    margin-bottom: 80px;
    padding-bottom: 20px;
  }

  section {
    margin-top: 80px;
    display: block;
  }

  header {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
  }

  .brand {
    flex: 1;
  }

  #hamburger {
    display: block;
  }

  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    background: rgba(5,7,7,0.98);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    margin-top: 8px;
  }

  nav.active {
    display: flex;
  }

  nav a {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 14px;
  }

  .hero-inner {
    padding: 20px;
    gap: 20px;
  }

  h1 {
    font-size: clamp(36px, 10vw, 48px) !important;
  }

  .subtitle {
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .tagline {
    font-size: 13px;
  }

  .lede {
    font-size: 14px;
    line-height: 1.65;
  }

  .chips {
    gap: 8px;
  }

  .chip {
    font-size: 11px;
    padding: 6px 10px;
  }

  .cta {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-form input {
    min-width: 100%;
    width: 100%;
  }

  .newsletter-form button {
    width: 100%;
  }

  section .inner {
    padding: 20px;
  }

  h2 {
    font-size: 20px;
  }

  .grid3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card {
    padding: 16px;
  }

  .show-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .show-details h3 {
    font-size: 20px;
  }

  .show-date {
    font-size: 13px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .timeline {
    padding-left: 20px;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item::before {
    left: -24px;
    width: 8px;
    height: 8px;
  }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  #backToTop {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  /* Reduce scanline intensity on mobile for performance */
  .scanlines {
    opacity: 0.2;
  }
  
  .scanlines::after {
    animation-duration: 12s;
    opacity: 0.4;
  }

  /* Fix sticky header on mobile */
  header.sticky {
    position: relative !important;
    background: transparent !important;
    backdrop-filter: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
  }
}

/* Extra small phones */
@media (max-width: 400px) {
  .wrap {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: 32px !important;
  }

  .hero-inner {
    padding: 16px;
  }

  section .inner {
    padding: 16px;
  }

  .btn {
    font-size: 13px;
    padding: 12px 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 14px;
  }
}
