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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 
               'Helvetica Neue', Arial, sans-serif;
  font-size: 16px; /* Ensure minimum readable size */
  background: #0d2c33;
  color: #ffffff;
  margin: 0;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #103740;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  padding: 0 20px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.company-logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #ffb513;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #ffffff;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1100;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #ffb513;
  margin: 4px 0;
  transition: 0.3s;
}

/* MOBILE FULLSCREEN MENU */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100vw;
	height: 100vh;
	background: #103740;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 30px;
	font-size: 1.8rem;
	font-weight: bold;
	transition: left 0.4s ease;
	z-index: 1050;
  }

  .nav-menu.active { left: 0; }

  body.menu-open { overflow: hidden; }
}

/* MAIN CONTENT */
.main-content {
  padding-top: 90px;
  padding-bottom: 40px;
}
	/* SHOWS SEARCH - iPhone Style */
.shows-container {
	max-width:1200px;
	margin:0 auto 30px;
	background:#1f6473;
	padding:40px;
	border-radius:10px;
	box-shadow:0 4px 20px rgba(0,0,0,.7);
}

.shows-container h2 {
	text-align:left;
	margin-bottom:30px;
	font-size:1.3rem;
	font-weight:normal;
	color:#ffffff;
	letter-spacing:.5px;
}

/* iPhone-style selectors */
.search-form {
	display:flex;
	flex-direction:column;
	gap:25px;
	max-width:500px
	;margin:0 auto;
}
.form-group {
	position:relative;
}
.form-label {
	font-size:0.9rem;
	color:#cccccc;
	margin-bottom:8px
	;display:block;
	font-weight:500;
}

/* iPhone picker style */
.select-wrapper {
	position:relative;
}
.select-display{ 
  background:rgba(0,0,0,0.6);
  border:2px solid #ffb513;
  border-radius:12px;
  padding:18px 20px;
  font-size:1.1rem;
  color:#ffffff;
  cursor:pointer;
  user-select:none;
  transition:all .3s;
  position:relative;
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.select-display:hover {
	background:rgba(0,0,0,0.8);
}
.select-display.active {
	border-color:#ffffff;
	box-shadow:0 4px 20px rgba(255,181,19,0.3);
}
.select-arrow {
	position:absolute;
	right:20px;top:50%;
	transform:translateY(-50%);
	width:12px;
	height:12px;
	border-right:2px solid #ffb513;
	border-bottom:2px solid #ffb513;
	transform:translateY(-50%) rotate(45deg);
	transition:.3s;
}
.select-arrow.active {
	transform:translateY(-50%) rotate(-135deg);
}

/* Dropdown options */
.select-options{
  position:absolute;
  top:100%;
  left:0;
  right:0;
  background:rgba(0,0,0,0.95);
  border:2px solid #ffb513;
  border-top:none;
  border-radius:0 0 12px 12px;
  max-height:250px;
  overflow-y:auto;
  z-index:100;
  opacity:0;
  visibility:hidden;
  transform:translateY(-10px);
  transition:all .3s;
}
.select-options.active {
	opacity:1;
	visibility:visible;
	transform:translateY(0);
}
.select-option{
  padding:16px 20px;
  cursor:pointer;
  border-bottom:1px solid rgba(255,181,19,0.2);
  transition:.2s;
  font-size:1rem;
}
.select-option:hover {
	background:rgba(255,181,19,0.2);
}
.select-option:last-child {
	border-bottom:none;
}

/* Search button */
.search-btn{
  background:#ffb513;
  color:#0d2c33;
  border:none;
  padding:20px;
  border-radius:12px;
  font-family:Verdana,sans-serif;
  font-weight:600;
  font-size:1.1rem;
  cursor:pointer;
  transition:all .3s;
  min-height:60px;
  width:100%;
  box-shadow:0 6px 20px rgba(255,181,19,0.4);
}
.search-btn:hover {
	background:#ffffff;
	transform:translateY(-2px);
	box-shadow:0 8px 25px rgba(255,181,19,0.5);
}
.search-btn:disabled {
	background:#666;
	color:#999;
	cursor:not-allowed;
	transform:none;box-shadow:none;
}

/* Updated Results Section - Same size as inputs, centered */
.results-section {
  margin-top: 25px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #ffb513;
  border-radius: 12px;
  display: none;
  max-width: 500px;  /* Same as form */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.results-section.show {
  display: block;
}

/* Centered result content */
#resultContent {
  margin-bottom: 20px;
  min-height: 54px;  /* Matches input height */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Result link/button styling */
.result-link {
  display: inline-block;
  background: #ffb513;
  color: #0d2c33;
  padding: 18px 40px;  /* Matches input padding */
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all .3s;
  box-shadow: 0 4px 15px rgba(255, 181, 19, 0.4);
  min-height: 54px;  /* Matches input height */
  display: flex;
  align-items: center;
}

.result-link:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 181, 19, 0.5);
}

/* N/A result styling */
.result-na {
  background: rgba(102, 102, 102, 0.8);
  color: #cccccc;
  padding: 18px 30px;
  border-radius: 12px;
  font-style: italic;
  font-size: 1.1rem;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Clear button styling */
.results-actions {
  margin-top: 15px;
}

.clear-btn {
  background: rgba(0, 0, 0, 0.6);
  color: #ffb513;
  border: 2px solid #ffb513;
  padding: 14px 30px;
  border-radius: 12px;
  font-family: Verdana, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all .3s;
  min-height: 50px;
  width: 100%;
  max-width: 250px;
}

.clear-btn:hover {
  background: #ffb513;
  color: #0d2c33;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 181, 19, 0.4);
}

/* CAROUSEL SECTION */
.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  background: #1f6473;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

/* SMALLER HEADERS */
.carousel-container h2,
.video-section h2 {
  text-align: left;
  margin-bottom: 30px;
  font-size: 1.3rem;
  font-weight: normal;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* FIXED SIZE SLIDES - 350x350 */
.slick-slide {
  height: 350px;
  width: 350px !important;
  margin: 0 10px;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.slick-center {
  opacity: 1;
  transform: scale(1.05);
}

.slide-content {
  position: relative;
  width: 100%;
  height: 95%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* BACKGROUND IMAGE */
.slide-content {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* DARK TOP BAR */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.85);
  padding: 15px 20px;
  color: #ffffff;
  font-family: 'Oswald', Verdana, sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* BUTTON */
.slide-button {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffb513;
  border: 1px solid #ffb513;
  background: #0d2c33;
  padding: 12px 30px;
  border-radius: 25px;
  font-family: Verdana, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 181, 19, 0.4);
}

.slide-button:hover {
  background: #509bbf;
  color: white;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.slider-nav-buttons {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 25px;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.slider-nav-buttons button {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffb513;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.slider-nav-buttons button:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

/* VIDEO SECTION */
.video-section {
  max-width: 1200px;
  margin: 0 auto;
  background: #1f6473;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

.video-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.video-menu button {
  padding: 10px 20px;
  background: #0f3130;
  color: #ffb513;
  border: 1px solid #ffb513;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-family: Verdana, sans-serif;
  transition: all 0.3s ease;
  font-weight: normal;
}

.video-menu button:hover,
.video-menu button.active {
  background: #ffb513;
  color: #0f3130;
  border-color: #ffb513;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .carousel-container,
  .video-section {
	padding: 20px;
	margin: 0 10px 40px 10px;
  }

  .slick-slide {
	height: 280px;
	width: 280px !important;
  }

  .slider-nav-buttons button {
	width: 40px;
	height: 40px;
  }

  .video-menu {
	flex-direction: column;
	gap: 10px;
  }

  .company-logo {
	font-size: 1.5rem;
  }
}

/* FOOTER CSS - Add to your <style> section */
.footer-section {
  background: #000000;
  color: #b0b0b0;
  font-size: 1.0rem;
  margin-top: 60px;
  padding: 40px 20px 20px;
  line-height: 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
  justify-items: center; /* ← ADD THIS - centers columns horizontally */
  max-width: 900px;      /* ← ADD THIS - constrains the grid width */
  margin-left: auto;     /* ← ADD THIS - centers the grid container */
  margin-right: auto;    /* ← ADD THIS - centers the grid container */
}

.footer-column h4 {
  color: #ffffff;
  font-family: 'Oswald', Verdana, sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ffb513;
}

.footer-copyright {
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid #333;
  margin-bottom: 10px;
}

.footer-copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: #cccccc;
}

.footer-legal {
  text-align: center;
}

.footer-legal p {
  margin: 0;
  font-size: 0.75rem;
  color: #808080;
}

.footer-legal a {
  color: #b0b0b0;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #ffb513;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .footer-links {
	grid-template-columns: 1fr;
	gap: 20px;
	text-align: center;
  }
  
  .footer-section {
	padding: 30px 15px 15px;
  }
}
/* ADD THIS - MOBILE MENU CSS (was missing) */
@media (max-width: 768px) {
  .hamburger { 
	display: flex !important; 
  }

  .nav-menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100vw;
	height: 100vh;
	background: #103740;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 30px;
	font-size: 1.8rem;
	font-weight: bold;
	transition: left 0.4s ease;
	z-index: 1050;
	list-style: none;
	padding: 0;
	margin: 0;
  }

  .nav-menu.active { 
	left: 0; 
  }

  body.menu-open { 
	overflow: hidden; 
  }

  .nav-menu a {
	color: #ffb513;
	font-size: 1.8rem;
  }
}

/* Hamburger span visibility */
.hamburger span {
  width: 26px;
  height: 3px;
  background: #ffb513;
  margin: 4px 0;
  transition: 0.3s;
}

/* MOBILE */
@media (max-width:768px){
  .shows-container{padding:25px 15px;}
  .search-form{gap:20px;}
  .select-display{padding:16px 18px;font-size:1rem;}
  .main-content{padding-bottom:20px;}
  .footer-links{grid-template-columns:1fr;gap:20px;text-align:center;}
  .footer-section{padding:30px 15px 15px;}
}

/* FAQ Section */
.faq-section {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px 10px;
  background: #1f6473;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

.faq-heading {
  text-align: left;
  margin-bottom: 20px;
  margin-left: 20px;
  font-size: 1.3rem;
  font-weight: normal;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.faq-accordion {
  max-width: 700px;
  margin: 0 auto;
}

/* Question button */
.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-question {
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #ffffff;
  border: 1px solid rgba(255,181,19,0.6);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-size: 0.98rem;
  font-family: Verdana, sans-serif;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-question span:first-child {
  flex: 1;
  padding-right: 10px;
}

.faq-question:hover {
  background: rgba(0,0,0,0.85);
  border-color: #ffb513;
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
}

/* Plus / minus icon */
.faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #ffb513;
  transition: transform 0.25s ease, opacity 0.25s ease;
  border-radius: 2px;
}

/* Horizontal bar */
.faq-icon::before {
  top: 50%;
  left: 2px;
  right: 2px;
  height: 2px;
  transform: translateY(-50%);
}

/* Vertical bar (for +) */
.faq-icon::after {
  left: 50%;
  top: 2px;
  bottom: 2px;
  width: 2px;
  transform: translateX(-50%);
}

/* When open: show minus (hide vertical bar) */
.faq-question[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
}

/* Answer panel */
.faq-answer {
  padding: 12px 14px 14px;
  margin-top: 4px;
  background: rgba(0,0,0,0.55);
  border-radius: 0 0 10px 10px;
  border: 1px solid rgba(255,181,19,0.35);
  border-top: none;
  font-size: 0.9rem;
  color: #e0e0e0;
}

/* Smooth open/close animation */
.faq-answer[hidden] {
  display: block;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  overflow: hidden;
  border-width: 0;
}

.faq-answer.faq-open {
  max-height: 1000px;
  opacity: 1;
  padding-top: 12px;
  padding-bottom: 14px;
  transition: max-height 0.25s ease, opacity 0.25s ease, padding 0.25s ease, border-width 0.25s ease;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .faq-section {
	padding: 25px 15px 5px;
	margin-top: 25px;
  }
  
  .faq-accordion {
	max-width: 100%;
  }
  
  .faq-question {
	padding: 12px 14px;
	font-size: 0.95rem;
  }
  .faq-heading {
	margin-left: 0px;

  }

}
 /* Services Description - Accordion Style */
	 .services-section {
	   max-width: 1200px;
	   margin: 30px auto 60px auto;
	   padding: 40px;
	   background: #1f6473;
	   border-radius: 10px;
	   box-shadow: 0 4px 20px rgba(0,0,0,0.7);
	 }
	 
	 .services-heading {
	   text-align: left;
	   margin-bottom: 25px;
	   font-size: 1.3rem;
	   font-weight: normal;
	   color: #ffffff;
	   letter-spacing: 0.5px;
	 }
	 
	 .description-container {
	   max-width: 800px;
	   margin: 0 auto;
	   position: relative;
	 }
	 
	 .description-text {
	   font-size: 0.95rem;
	   line-height: 1.6;
	   color: #e0e0e0;
	   overflow: hidden;
	   transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	 }
	 
	 .description-text p {
	   margin-bottom: 18px;
	 }
	 
/* TRUNCATED STATE - Fixed height + FADE OVERLAY */
	 .description-text.truncated {
	   max-height: 160px;  /* ← CONTROL TRUNCATION HERE */
	   position: relative;
	   overflow: hidden;
	 }
	 
	 .description-text.truncated::after {
	   content: "";
	   position: absolute;
	   bottom: 0;
	   left: 0;
	   right: 0;
	   height: 100px;       /* ← FADE HEIGHT */
	   background: linear-gradient(transparent, rgba(31, 100, 115, 0.95));
	   pointer-events: none;
	   z-index: 1;
	 }
	 
	 /* EXPANDED STATE - No fade */
	 .description-container.expanded .description-text.truncated::after {
	   display: none;
	 }
	 
	 /* Smooth transition for text container */
	 .description-text {
	   font-size: 0.95rem;
	   line-height: 1.6;
	   color: #e0e0e0;
	   overflow: hidden;
	   transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	 }
	 
	 .description-text p {
	   margin-bottom: 18px;
	 }

	 
	 /* Toggle button */
	 .description-toggle {
	   background: rgba(0, 0, 0, 0.7);
	   color: #ffb513;
	   border: 2px solid #ffb513;
	   border-radius: 12px;
	   padding: 14px 30px;
	   font-family: Verdana, sans-serif;
	   font-weight: 500;
	   font-size: 1rem;
	   cursor: pointer;
	   transition: all 0.3s ease;
	   margin: 20px auto 0;
	   display: block;
	   position: relative;
	   z-index: 2;
	 }
	 
	 .description-toggle:hover {
	   background: #ffb513;
	   color: #0d2c33;
	   transform: translateY(-2px);
	   box-shadow: 0 6px 20px rgba(255, 181, 19, 0.4);
	 }
	 
	 /* Button text changes */
	 .description-container.expanded .description-toggle {
	   background: rgba(255, 181, 19, 0.2);
	 }
	 
	 .description-container.expanded .description-toggle:hover {
	   background: rgba(255, 181, 19, 0.4);
	   color: #0d2c33;
	 }
	 
	 /* Mobile */
	 @media (max-width: 768px) {
	   .services-section {
		 padding: 25px 20px;
		 margin: 20px auto 40px;
	   }
	   
	   .description-text.truncated {
		   max-height: 180px;
		 }
		 
		.description-text.truncated::after {
		   height: 50px;  /* Shorter fade on mobile */
		 }
	 }
/* Page wrapper - matches index/shows padding */
   .page-tickets {
     max-width: 1200px;
     margin: 0 auto;
     padding: 2rem 1rem;
     background-color: #ffffff;
   }
   
   /* Page header - navy like shows page h1 */
   .page-tickets .page-header {
     margin-bottom: 2.5rem;
     text-align: center;
     border-bottom: 3px solid #1a365d;  /* deep navy accent */
     padding-bottom: 1rem;
   }
   
   .page-tickets .page-header h1 {
     font-size: 2.5rem;
     font-weight: 700;
     color: #1a365d;      /* navy primary */
     margin: 0;
     text-transform: uppercase;
     letter-spacing: 1px;
   }
   
   /* Ticket description section - gold-tinted bg like content blocks */
   .ticket-description {
     max-width: 900px;
     margin: 0 auto;
     padding: 2rem;
     background: linear-gradient(135deg, #f8f9ff 0%, #f0f4f8 100%);  /* soft blue-gray gradient */
     border: 2px solid #d4af37;     /* gold border accent */
     border-radius: 12px;
     box-shadow: 0 4px 12px rgba(0,0,0,0.08);
   }
   
   .ticket-description h2 {
     font-size: 1.5rem;
     font-weight: 600;
     color: #b8860b;      /* darker gold for section headers */
     margin: 0 0 1rem 0;
     border-bottom: 2px solid #d4af37;
     padding-bottom: 0.5rem;
   }
   
   .ticket-description p {
     margin: 0;
     line-height: 1.7;
     font-size: 1.1rem;
     color: #2d3748;      /* dark slate body text */
     font-weight: 400;
   }

/* SERVICES-STYLE TICKET SECTION - Matches shows.html exactly */
   /* Ensure text visibility */
   .services-section * {
     color: #e0e0e0 !important;
   }
   
   .services-section p {
     color: #e0e0e0 !important;
     visibility: visible !important;
     opacity: 1 !important;
   }

.services-section {
     max-width: 1200px;
     margin: 30px auto 60px auto;
     padding: 40px;
     background: #1f6473;
     border-radius: 10px;
     box-shadow: 0 4px 20px rgba(0,0,0,0.7);
   }
   
   .services-heading {
     text-align: left;
     margin-bottom: 25px;
     font-size: 1.3rem;
     font-weight: normal;
     color: #ffffff;
     letter-spacing: 0.5px;
   }
   
   .ticket-description {
     background: rgba(0,0,0,0.4) !important;
     border: 1px solid rgba(255,181,19,0.3) !important;
     border-radius: 12px !important;
     padding: 30px !important;
     font-size: 0.95rem !important;
     line-height: 1.7 !important;
     color: #e0e0e0 !important;
     max-width: 800px !important;
     margin: 0 auto !important;
     position: relative !important;
     z-index: 1 !important;
   }
   
   .ticket-description p {
     color: #e0e0e0 !important;
     margin-bottom: 20px !important;
     font-size: 0.95rem !important;
     line-height: 1.7 !important;
     opacity: 1 !important;
   }
   
   .ticket-description p:last-child {
     margin-bottom: 0 !important;
   }

   
   /* Mobile */
   @media (max-width: 768px) {
     .services-section {
       padding: 25px 20px;
       margin: 20px auto 40px;
     }
     
     .ticket-description {
       padding: 25px 20px;
       font-size: 0.92rem;
     }
   }
   /* UNIFY HEADINGS - services-heading matches faq-heading */
   .services-heading,
   .faq-heading,
   .tickets-heading,
   .shows-container h2,
   .carousel-container h2,
   .video-section h2 {
     text-align: left !important;
     margin-bottom: 25px !important;   /* ← Consistent spacing */
     font-size: 1.3rem !important;
     font-weight: normal !important;
     color: #ffffff !important;
     letter-spacing: 0.5px !important;
     line-height: 1.3 !important;
     padding: 0 !important;
     font-family: Verdana, sans-serif !important;
   }
   
   /* ENHANCED TICKET ACCORDION */
   .accordion-container {
     max-width: 1000px;
     margin: 0 auto;
   }
   
   .accordion-item {
     margin-bottom: 15px;
     background: rgba(0,0,0,0.4);
     border: 1px solid rgba(255,181,19,0.3);
     border-radius: 12px;
     overflow: hidden;
   }
   
   .accordion-header {
     display: flex;
     align-items: center;
     padding: 25px 30px;
     cursor: pointer;
     transition: background 0.3s ease;
     position: relative;
     background: transparent;  /* No background by default */
   }  
    
  /* ONLY highlight when actually OPEN */
  .accordion-header.active {
    background: rgba(255,181,19,0.1);
  }
  
  /* Remove :focus-within - was causing stuck highlight */
  .accordion-header:focus-within {
    background: transparent;
  }
   
   .accordion-poster {
     width: 80px;
     height: 80px;
     object-fit: cover;
     border-radius: 8px;
     margin-right: 25px;
     flex-shrink: 0;
   }
   
   .accordion-info {
     flex: 1;
     min-width: 0;
   }
   
   .accordion-title-line {
     display: flex;
     align-items: baseline;
     gap: 15px;
     flex-wrap: wrap;
   }
   
   .accordion-title {
     font-size: 1.4rem;
     color: #ffffff;
     margin: 0;
     font-weight: bold;
     flex-shrink: 0;
   }
   
   .accordion-dates {
     font-size: 0.95rem;
     color: #e0e0e0;
     font-weight: 500;
     white-space: nowrap;
   }
   
   .accordion-price {
     color: #ffd133 !important;  /* Gold color FORCED */
     font-weight: bold !important;
     font-size: 1.5rem !important;
     white-space: nowrap !important;
     background: transparent !important;  /* No background interference */
     text-shadow: none !important;        /* No shadow conflicts */
     opacity: 1 !important;              /* Fully visible */
   }

   /* FORCE accordion-price color - overrides everything */
   .accordion-title-line .accordion-price {
     color: #ffd133 !important;
   }
   
   .accordion-header .accordion-price {
     color: #ffd133 !important;
   }
   
   .accordion-actions {
     display: flex;
     flex-direction: column;
     align-items: flex-end;
     gap: 12px;
   }
   
   .buy-now-btn {
     display: inline-block;
     background: linear-gradient(135deg, #ffd133, #ff9f1c);
     color: #1f6473 !important;
     padding: 10px 24px;
     border-radius: 25px;
     text-decoration: none;
     font-weight: bold;
     font-size: 0.95rem;
     box-shadow: 0 4px 12px rgba(255,181,19,0.4);
     transition: all 0.3s ease;
     min-width: 100px;
     text-align: center;
     pointer-events: auto !important;
     z-index: 20 !important;
   }
   .buy-now-btn * {
     pointer-events: none;
   }
   
   .buy-now-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(255,181,19,0.6);
     background: linear-gradient(135deg, #ff9f1c, #ffd133);
   }
   
   .accordion-toggle {
     color: #ffd133;
     text-decoration: none;
     font-size: 0.95rem;
     font-weight: 500;
     display: flex;
     align-items: center;
     gap: 8px;
     transition: color 0.3s ease;
   }
   
   .accordion-toggle:hover {
     color: #ffffff;
   }
   
   .arrow {
     font-size: 0.8rem;
     transition: transform 0.3s ease;
   }
   
   .accordion-header.active .arrow {
     transform: rotate(180deg);
   }
   
   .accordion-content {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease, padding 0.4s ease;
     background: rgba(0,0,0,0.2);
   }
   
   .accordion-content.active {
     max-height: 1000px;
     padding: 25px 20px;
   }
   
   .accordion-content p {
     margin: 0;
     color: #e0e0e0;
     line-height: 1.7;
     font-size: 0.95rem;
   }
   
   /* MOBILE - Buy Now ABOVE more info */
   @media (max-width: 768px) {
     .accordion-header {
       padding: 20px;
       flex-direction: column;
       align-items: stretch;
       gap: 15px;
       background: transparent !important;  /* Force no background */
     }
     
     .accordion-header.active {
       background: transparent !important;  /* No highlight when open */
     }
     
     .accordion-header:hover,
     .accordion-header:active,
     .accordion-header:focus {
       background: transparent !important;  /* No touch states */
     }
     
     .accordion-header:not(.active) {
       background: transparent !important;
     }
     
     .accordion-poster {
       width: 60px;
       height: 60px;
       align-self: center;
       margin-right: 0;
     }
     
     .accordion-title-line {
       justify-content: space-between;
       gap: 10px;
     }
     
     .accordion-actions {
       flex-direction: row;
       justify-content: space-between;
       align-items: center;
       width: 100%;
       pointer-events: none;  /* Block parent clicks */
     }
     
     .buy-now-btn {
       order: 1;
       flex: 1;
       text-align: center;
       padding: 8px 16px;
       font-size: 0.9rem;
     }
     
     .accordion-toggle {
       order: 2;
       flex-shrink: 0;
       white-space: nowrap;
     }
   }
   .accordion-actions .buy-now-btn {
     pointer-events: auto !important;  /* Button works */
   }
/* ADD THIS */
   @media (max-width: 768px) {
     .video-menu button,
     .search-btn,
     .slide-button,
     .buy-now-btn {
       min-height: 44px; /* Apple's minimum touch target */
       min-width: 44px;
     }
     
     .slider-nav-buttons button {
       width: 44px;  /* Currently 40px */
       height: 44px;
     }
   }
   
   /* Add to CSS */
   .video-container.loading::after {
     content: "";
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 50px;
     height: 50px;
     border: 4px solid rgba(255,181,19,0.3);
     border-top-color: #ffb513;
     border-radius: 50%;
     animation: spin 0.8s linear infinite;
   }
   
   @keyframes spin {
     to { transform: translate(-50%, -50%) rotate(360deg); }
   }
   
   /* Button loading state */
   .search-btn.loading {
     pointer-events: none;
     opacity: 0.7;
     position: relative;
   }
   
   .search-btn.loading::after {
     content: "";
     position: absolute;
     width: 20px;
     height: 20px;
     border: 2px solid transparent;
     border-top-color: #0d2c33;
     border-radius: 50%;
     animation: spin 0.6s linear infinite;
     right: 15px;
     top: 50%;
     transform: translateY(-50%);
   }
   
   .faq-answer {
     transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                 opacity 0.25s ease,
                 padding 0.3s ease;
   }
   
   .footer-legal p {
     font-size: 0.8rem;  /* ← Increase from 0.75rem */
     line-height: 1.6;   /* Add line-height */
     max-width: 900px;   /* Constrain width */
     margin: 0 auto;     /* Center */
   }
   
   /* Add scale to buttons for tactile feedback */
   .search-btn:hover,
   .buy-now-btn:hover {
     transform: translateY(-2px) scale(1.02);
   }
   
   .video-menu button:hover {
     transform: scale(1.05);
   }
   
   .video-section {
     position: relative;
   }
   
   /* Add subtle glow to active video button */
   .video-menu button.active {
     box-shadow: 0 0 20px rgba(255,181,19,0.5);
   }
   
   .shows-container,
   .carousel-container,
   .video-section,
   .faq-section {
     backdrop-filter: blur(10px);
     background: rgba(31, 100, 115, 0.85);
   }
   
   
   /* COMPACT SITE-WIDE ALERT STYLES */
   .site-alert-compact {
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 9999;
     max-height: 33vh;
     transform: translateY(100%);
     transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
   }
   
   .site-alert-compact.active {
     transform: translateY(0);
   }
   
   .alert-compact-container {
     position: relative;
     max-width: 1200px;
     margin: 0 auto;
     background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
     padding: 15px 50px 15px 55px;
     border-top: 3px solid #ff4444;
     display: flex;
     align-items: center;
     gap: 15px;
     min-height: 80px;
     max-height: 33vh;
     overflow-y: auto;
   }
   
   .alert-compact-close {
     position: absolute;
     top: 10px;
     right: 15px;
     width: 28px;
     height: 28px;
     background: rgba(255, 255, 255, 0.2);
     border: none;
     border-radius: 4px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s ease;
     font-size: 24px;
     line-height: 1;
     color: #ffffff;
     font-weight: 300;
     padding: 0;
     z-index: 10;
   }
   
   .alert-compact-close:hover {
     background: rgba(255, 255, 255, 0.35);
     transform: scale(1.1);
   }
   
   .alert-compact-close:focus {
     outline: 2px solid #ffffff;
     outline-offset: 2px;
   }
   
   .alert-compact-icon {
     position: absolute;
     left: 15px;
     top: 50%;
     transform: translateY(-50%);
     width: 32px;
     height: 32px;
     background: rgba(255, 255, 255, 0.25);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     font-size: 20px;
     color: #ffffff;
     font-weight: bold;
   }
   
   .alert-compact-content {
     color: #ffffff;
     font-size: 0.95rem;
     line-height: 1.5;
     flex: 1;
     padding-right: 10px;
   }
   
   .alert-compact-content strong {
     font-weight: 700;
     color: #ffffff;
     margin-right: 5px;
   }
   
   .alert-compact-content a {
     color: #ffd700;
     text-decoration: underline;
     font-weight: 600;
     transition: color 0.2s ease;
   }
   
   .alert-compact-content a:hover {
     color: #ffed4e;
   }
   
   .alert-compact-container::-webkit-scrollbar {
     width: 6px;
   }
   
   .alert-compact-container::-webkit-scrollbar-track {
     background: rgba(0, 0, 0, 0.2);
   }
   
   .alert-compact-container::-webkit-scrollbar-thumb {
     background: rgba(255, 255, 255, 0.3);
     border-radius: 3px;
   }
   
   .alert-compact-container::-webkit-scrollbar-thumb:hover {
     background: rgba(255, 255, 255, 0.5);
   }
   
   @media (max-width: 1024px) {
     .alert-compact-container {
       padding: 12px 45px 12px 50px;
       min-height: 70px;
     }
     .alert-compact-icon {
       width: 28px;
       height: 28px;
       font-size: 18px;
       left: 12px;
     }
     .alert-compact-content {
       font-size: 0.9rem;
     }
   }
   
   @media (max-width: 768px) {
     .site-alert-compact {
       max-height: 30vh;
     }
     .alert-compact-container {
       padding: 12px 40px 12px 12px;
       min-height: 60px;
       max-height: 30vh;
     }
     .alert-compact-icon {
       position: relative;
       left: 0;
       top: 0;
       transform: none;
       width: 26px;
       height: 26px;
       font-size: 16px;
       margin-right: 8px;
     }
     .alert-compact-close {
       width: 26px;
       height: 26px;
       font-size: 20px;
       top: 8px;
       right: 10px;
     }
     .alert-compact-content {
       font-size: 0.85rem;
       line-height: 1.4;
     }
   }
   
   @media (max-width: 480px) {
     .site-alert-compact {
       max-height: 25vh;
     }
     .alert-compact-container {
       padding: 10px 35px 10px 10px;
       gap: 10px;
       min-height: 55px;
       max-height: 25vh;
     }
     .alert-compact-icon {
       width: 24px;
       height: 24px;
       font-size: 14px;
     }
     .alert-compact-content {
       font-size: 0.8rem;
     }
   }
   
   @media print {
     .site-alert-compact {
       display: none !important;
     }
   }
   
   @media (prefers-reduced-motion: reduce) {
     .site-alert-compact {
       transition: none;
     }
     .alert-compact-close:hover {
       transform: none;
     }
   }
