/* ========================================
   index.css
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f0f0f0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Graduate', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#root {
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

.fade-up.visible {
  animation: fadeUp 0.8s ease-out forwards;
}

/* ========================================
   App.css
   ======================================== */
.App {
  min-height: 100vh;
}

/* ========================================
   AlertBar.css
   ======================================== */
.alert-bar {
  background: linear-gradient(to right, #000 0%, #1e3a8a 10%, #1e3a8a 90%, #000 100%);
  padding: 2rem 2rem;
  text-align: center;
  position: relative;
}

.alert-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, #f3ebbf 20%, #f3ebbf 80%, transparent 100%);
  z-index: 1;
}

.alert-bar-content {
  max-width: 1450px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.alert-bar-content p {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

.alert-bar-btn {
  background: #152a5e;
  color: #f3ebbf;
  border: 2px solid #f3ebbf;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  border-radius: 50px;
}

.alert-bar-btn:hover {
  background: #f3ebbf;
  color: #000;
}

/* ========================================
   Footer.css
   ======================================== */
.footer {
  background: radial-gradient(ellipse at center, #181818 0%, #101010 70%);
  padding: 4rem 2rem 2rem 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, #f3ebbf 20%, #f3ebbf 80%, transparent 100%);
  z-index: 1;
}

.footer-container {
  max-width: 1450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

.footer-logo h2 {
  color: #fff;
  font-size: 1.5rem;
  font-family: 'Anton', sans-serif;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.footer-tagline {
  color: #fff;
  font-size: 0.7rem;
  opacity: 0.7;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.footer-tagline .tagline-star {
  font-size: 0.5rem;
  color: #666;
  position: relative;
  top: -2px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #FFD700;
  border-color: #FFD700;
  color: #000;
  transform: translateY(-3px);
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
}

.footer-column-title {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: 'Graduate', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  font-family: 'Roboto', sans-serif;
  opacity: 0.8;
}

.footer-menu li a:hover {
  color: #FFD700;
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(243, 235, 191, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #fff;
  opacity: 0.5;
  font-size: 0.9rem;
  font-family: 'Roboto', sans-serif;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

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

/* ========================================
   Videos.css
   ======================================== */
.videos {
  background: radial-gradient(ellipse at center top, rgba(192, 192, 192, 0.15) 0%, rgba(255, 255, 255, 1) 70%, #fff 100%);
  padding: 4rem 2rem;
  position: relative;
}

.videos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent 0%, #FFD700 20%, #FFD700 80%, transparent 100%);
  z-index: 1;
}

.videos::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent 0%, #FFD700 20%, #FFD700 80%, transparent 100%);
  z-index: 1;
}

.videos-container {
  max-width: 1450px;
  margin: 0 auto;
}

.videos-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.videos-heading {
  font-size: 3rem;
  margin: 0;
  font-weight: 700;
  color: #000;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.8);
}

.channel-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.05);
}

.channel-link:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.youtube-icon {
  color: #ff0000;
}

.channel-name {
  color: #000;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.video-card {
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  display: block;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-card:hover .video-play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 2px solid #000;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-thumbnail::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0.9;
  transition: all 0.3s ease;
  pointer-events: none;
}

.video-title {
  font-size: 1.1rem;
  color: #000;
  font-weight: 600;
  line-height: 1.4;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0;
}

.videos-cta {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  display: block;
  margin: 0 auto;
}

.videos-cta:hover {
  background: transparent;
  color: #000;
}

@media (max-width: 1200px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Newsletter.css
   ======================================== */
.newsletter {
  position: relative;
  padding: 6rem 2rem;
  background-size: cover;
  background-position: top center;
  overflow: hidden;
}

.newsletter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.95) 100%);
  z-index: 1;
}

.newsletter-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 0;
  margin-left: 10%;
  text-align: left;
}

.newsletter-heading {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8);
}

.newsletter-text {
  font-size: 1.2rem;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-family: 'Roboto', sans-serif;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  border-radius: 50px;
  outline: none;
  transition: all 0.3s ease;
}

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

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: #FFD700;
}

.newsletter-btn {
  background: #f3ebbf;
  color: #000;
  border: 2px solid #f3ebbf;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: transparent;
  color: #f3ebbf;
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-heading {
    font-size: 2rem;
  }
}

/* ========================================
   Section.css
   ======================================== */
.section {
  background: radial-gradient(ellipse at center, #181818 0%, #101010 70%);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr repeat(2, minmax(0, 362.5px)) 1fr;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, #f3ebbf 20%, #f3ebbf 80%, transparent 100%);
  z-index: 1;
}

.section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, #f3ebbf 20%, #f3ebbf 80%, transparent 100%);
  z-index: 1;
}

.section-container {
  display: contents;
}

/* Old info-box styles removed - using InfoBoxes.css styles instead */

/* ========================================
   TwoColumn.css
   ======================================== */
.two-column {
  background-color: #000;
  position: relative;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.two-column-container {
  display: contents;
}

.two-column-column {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
}

.two-column-column:first-child {
  justify-content: flex-end;
}

.two-column-column:last-child {
  justify-content: flex-start;
}

.two-column-content {
  max-width: 725px;
  width: 100%;
  padding: 3rem 2rem;
  box-sizing: border-box;
  position: relative;
  z-index: 15;
  color: #fff;
}

.two-column-heading {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #fff;
}

.two-column-subheading {
  font-size: 1.2rem;
  color: #fff;
  opacity: 0.7;
  margin-bottom: 2rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.tour-dates-table {
  margin-bottom: 2rem;
}

.tour-date-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 3px solid rgba(243, 235, 191, 0.5);
}

.tour-date-row:last-child {
  border-bottom: none;
}

.tour-date-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tour-date {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Graduate', sans-serif;
  letter-spacing: 0.05em;
}

.tour-city {
  font-size: 1rem;
  color: #fff;
  opacity: 0.9;
}

.tour-venue {
  font-size: 0.9rem;
  color: #fff;
  opacity: 0.6;
}

.tour-ticket-btn {
  background: transparent;
  color: #f3ebbf;
  border: 2px solid #f3ebbf;
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  white-space: nowrap;
}

.tour-ticket-btn:hover {
  background: #f3ebbf;
  color: #000;
}

.two-column-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.two-column-cta {
  background: #fff;
  color: #000;
  border: 2px solid #fff;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Raleway', sans-serif;
  border-radius: 50px;
}

.two-column-cta:hover {
  background: transparent;
  color: #fff;
}

.two-column-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.two-column-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  background: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  z-index: 2;
  pointer-events: none;
}

.two-column-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

@media (max-width: 768px) {
  .two-column-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========================================
   ScrollingText.css
   ======================================== */
.scrolling-text {
  background-color: #000;
  padding: 2rem 0;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}

.scrolling-text-content {
  display: inline-block;
  animation: scroll 25s linear infinite;
}

.scrolling-text-content.paused {
  animation-play-state: paused;
}

.scrolling-text-content span {
  display: inline-block;
  color: #fff;
  font-size: 2rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========================================
   PageTemplate.css
   ======================================== */
.page {
  min-height: 100vh;
  padding-top: 56px;
}

.page-hero {
  background-color: #000;
  color: #fff;
  padding: 8rem 2rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 5rem;
  font-weight: 700;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin: 0;
}

.page-content {
  max-width: 1450px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.page-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

/* ========================================
   Lightbox.css
   ======================================== */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  transition: opacity 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  opacity: 0.7;
}

.lightbox-close svg {
  width: 40px;
  height: 40px;
}

.lightbox-video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

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

/* ========================================
   InfoBoxes.css
   ======================================== */
.info-boxes {
  background-color: #000;
  padding: 6rem 0;
}

.info-boxes-row {
  max-width: 1450px;
  margin: 0 auto 2rem auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.info-boxes-row:last-child {
  margin-bottom: 0;
}

/* Dynamic column layouts */
.info-boxes-row[data-columns="1"] .info-box {
  width: 100%;
}

.info-boxes-row[data-columns="2"] .info-box {
  width: calc(50% - 1rem);
}

.info-boxes-row[data-columns="3"] .info-box {
  width: calc(33.333% - 1.35rem);
}

.info-boxes-row[data-columns="4"] .info-box {
  width: calc(25% - 1.5rem);
}

.info-boxes-row[data-columns="5"] .info-box {
  width: calc(20% - 1.6rem);
}

.info-boxes-row[data-columns="6"] .info-box {
  width: calc(16.666% - 1.65rem);
}

.info-box {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-image: inherit;
  transition: transform 0.5s ease;
  z-index: 0;
}

.info-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
}

.info-box-title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.1;
  word-wrap: break-word;
}

.info-box-title.smaller {
  font-size: 1.5rem;
}

.info-box:hover::before {
  transform: scale(1.1);
}

@media (max-width: 918px) {
  .info-boxes {
    padding: 3rem 0;
    max-width: 1450px;
    margin: 0 auto;
    padding: 3rem 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .info-boxes-row {
    display: contents;
  }

  /* Force all boxes to use grid on tablets - ignore data-columns attribute */
  .info-boxes-row .info-box {
    width: 100% !important;
  }

  .info-box {
    padding: 1.5rem;
  }

  .info-box-title {
    font-size: 1.8rem;
  }

  .info-box-title.smaller {
    font-size: 1.3rem;
  }
}

@media (max-width: 630px) {
  /* All boxes become full width on mobile */
  .info-boxes-row .info-box {
    width: 100%;
  }

  .info-box {
    padding: 1rem;
  }

  .info-box-title {
    font-size: 1.6rem;
  }

  .info-box-title.smaller {
    font-size: 1.2rem;
  }
}

/* ========================================
   Story.css
   ======================================== */
.story {
  background-color: #000;
  padding: 6rem 0;
}

.story-container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 2rem;
}

.story-heading {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 3rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.story-text {
  max-width: 60%;
}

.story-text p {
  color: #fff;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
}

.story-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 918px) {
  .story {
    padding: 3rem 0;
  }

  .story-container {
    padding: 0 1rem;
  }

  .story-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .story-text {
    max-width: 100%;
  }

  .story-text p {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

@media (max-width: 630px) {
  .story {
    padding: 2rem 0;
  }

  .story-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .story-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}

/* ========================================
   ImageText.css
   ======================================== */
.image-text {
  background-color: #000;
  padding: 6rem 0;
}

.image-text-container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.image-text-image {
  flex-shrink: 0;
  width: 300px;
}

.image-text-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.image-text-text p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 0.5;
  margin-bottom: 1rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}

.image-text-text p:last-child {
  margin-bottom: 0;
}

.image-text-btn {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
  border-radius: 0;
  align-self: flex-start;
}

.image-text-btn:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 918px) {
  .image-text {
    padding: 3rem 0;
  }

  .image-text-container {
    flex-direction: column;
    padding: 0 1rem;
    gap: 2rem;
  }

  .image-text-image {
    width: 100%;
    max-width: 300px;
  }

  .image-text-content {
    gap: 1.5rem;
    width: 100%;
  }

  .image-text-text p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .image-text-btn {
    align-self: center;
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .image-text {
    padding: 2rem 0;
  }

  .image-text-container {
    gap: 1.5rem;
  }

  .image-text-image {
    max-width: 250px;
  }

  .image-text-text p {
    font-size: 0.95rem;
  }

  .image-text-btn {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }
}

/* ========================================
   LogoGrid.css
   ======================================== */
.logo-grid {
  background-color: #000;
  padding: 4rem 0;
}

.logo-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7rem;
}

.logo-grid-container > img {
  max-height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-box {
  background-color: #1a1a1a;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  aspect-ratio: 1;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.logo-box:hover {
  background-color: #2a2a2a;
}

.logo-box img {
  max-width: 100%;
  height: auto;
  display: block;
}

.logo-box img.logo-white-filter {
  filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {
  .logo-grid-container {
    gap: 3rem;
  }

  .logo-box {
    padding: 1.5rem;
  }
}

@media (max-width: 918px) {
  .logo-grid {
    padding: 3rem 0;
  }

  .logo-grid-container {
    flex-wrap: wrap;
    padding: 0 1rem;
    gap: 1.5rem;
    justify-content: center;
  }

  .logo-box {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
    padding: 1.5rem;
  }
}

@media (max-width: 630px) {
  .logo-grid {
    padding: 2rem 0;
  }

  .logo-grid-container {
    gap: 0.75rem;
  }

  .logo-box {
    flex: 0 0 calc(33.333% - 0.5rem);
    max-width: calc(33.333% - 0.5rem);
    padding: 0.75rem;
  }

  .logo-box img {
    max-width: 80%;
  }
}

/* ========================================
   WhatWeDo.css
   ======================================== */
.what-we-do {
  background-color: #fff;
  padding: 6rem 0 0 0;
}

.what-we-do-container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 2rem 6rem 2rem;
  display: flex;
  gap: 4rem;
  align-items: center;
  border-bottom: 1px solid #000;
}

.what-we-do-left {
  flex: 0 0 auto;
}

.what-we-do-heading {
  color: #000;
  font-size: 3.5rem;
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
}

.what-we-do-right {
  max-width: 30%;
}

.what-we-do-right p {
  color: #000;
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 918px) {
  .what-we-do {
    padding: 3rem 0 0 0;
  }

  .what-we-do-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1rem 3rem 1rem;
    gap: 2rem;
  }

  .what-we-do-heading {
    font-size: 2.5rem;
  }

  .what-we-do-right {
    max-width: 100%;
  }

  .what-we-do-right p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 630px) {
  .what-we-do {
    padding: 2rem 0 0 0;
  }

  .what-we-do-container {
    padding: 0 1rem 2rem 1rem;
    gap: 1.5rem;
  }

  .what-we-do-heading {
    font-size: 2rem;
  }

  .what-we-do-right p {
    font-size: 0.95rem;
  }
}

/* ========================================
   Navbar.css
   ======================================== */
.navbar {
  background-color: #000;
  padding: 0.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

/* Position navbar below admin bar when logged in */
.admin-bar .navbar {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .navbar {
    top: 46px;
  }
}

.navbar-container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.navbar-logo img {
  height: 40px;
  display: block;
}

/* Custom logo sizing */
.navbar-logo .custom-logo-link {
  display: block;
  line-height: 0;
}

.navbar-logo .custom-logo {
  height: 35px !important;
  width: auto !important;
  display: block;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.navbar-name {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
}

.navbar-tagline {
  color: #fff;
  font-size: 0.75rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  opacity: 0.8;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navbar-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  transition: color 0.3s ease;
  cursor: pointer;
}

.navbar-menu li a:hover {
  color: #ccc;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar-tickets {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.navbar-tickets:hover {
  opacity: 0.8;
}

.navbar-tickets img {
  height: 40px;
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 918px) {
  .hamburger {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #000;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    padding: 4rem 2rem 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-menu li {
    width: 100%;
    text-align: center;
  }

  .navbar-menu li a {
    font-size: 1.1rem;
    display: block;
    padding: 0.75rem;
  }

  .navbar-logo-text {
    display: none;
  }

  .navbar-container {
    padding: 0 1rem;
  }

  .navbar-tickets img {
    height: 30px;
  }
}

@media (max-width: 630px) {
  .navbar-logo img {
    height: 30px;
  }

  .navbar-logo .custom-logo {
    height: 28px !important;
  }
}

/* ========================================
   Content.css
   ======================================== */
.content {
  background-color: #000;
  padding: 4rem 0;
}

.content-container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.content-text {
  flex: 1;
}

.content-text h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.content-text p {
  color: #fff !important;
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  margin-bottom: 1rem;
}

.content-text * {
  color: #fff !important;
}

.content-button {
  flex-shrink: 0;
}

.content-buttons-heading {
  color: #fff;
  font-size: 1.5rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.content-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.content-btn {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
  border-radius: 0;
  text-decoration: none;
}

.content-btn:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
}

@media (max-width: 918px) {
  .content {
    padding: 3rem 0;
  }

  .content-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 0 1rem;
  }

  .content-text p {
    font-size: 1rem;
  }

  .content-button {
    width: 100%;
  }

  .content-buttons-heading {
    padding: 0 1rem;
    font-size: 1.3rem;
  }

  .content-buttons {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .content-btn {
    width: 100%;
    padding: 0.875rem 2rem;
  }
}

@media (max-width: 630px) {
  .content {
    padding: 2rem 0;
  }

  .content-text p {
    font-size: 0.95rem;
  }

  .content-buttons-heading {
    font-size: 1.2rem;
  }

  .content-buttons {
    gap: 0.75rem;
  }

  .content-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* ========================================
   PressPopup.css
   ======================================== */
.press-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 2rem;
}

.press-popup-content {
  background: #fff;
  width: 100%;
  max-width: 900px;
  max-height: 85vh;
  border-radius: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.press-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  color: #000;
  line-height: 1;
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: transform 0.2s ease;
}

.press-popup-close:hover {
  transform: scale(1.1);
}

.press-popup-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 2rem 2rem 1.5rem;
  border-bottom: 2px solid #000;
  text-align: center;
}

.press-links-container {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

.press-link {
  display: block;
  padding: 1rem 1.5rem;
  margin-bottom: 0.75rem;
  background: #f5f5f5;
  color: #000;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-left: 4px solid #000;
  transition: all 0.2s ease;
}

.press-link:hover {
  background: #ffd700;
  border-left-color: #000;
  transform: translateX(5px);
}

.press-link:active {
  transform: translateX(3px);
}

/* Mobile responsive */
@media (max-width: 918px) {
  .press-popup-overlay {
    padding: 1rem;
  }

  .press-popup-content {
    max-height: 90vh;
  }

  .press-popup-close {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 2rem;
    width: 2rem;
    height: 2rem;
  }

  .press-popup-title {
    font-size: 2rem;
    padding: 1.5rem 1rem 1rem;
    padding-right: 3rem; /* Space for close button */
  }

  .press-links-container {
    padding: 1rem;
  }

  .press-link {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 630px) {
  .press-popup-overlay {
    padding: 0.5rem;
  }

  .press-popup-title {
    font-size: 1.75rem;
  }

  .press-link {
    padding: 0.75rem 0.875rem;
    font-size: 0.85rem;
  }
}

/* ========================================
   Services.css
   ======================================== */
.services {
  background-color: #fff;
  padding: 6rem 0;
}

.services-container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-text {
  display: flex;
  flex-direction: column;
  padding-left: 4rem;
}

.services-category:first-child .services-line,
.services-category:first-child .services-line-link {
  margin-top: 0;
}

.services-line {
  color: #000;
  font-size: 5rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.services-line:hover {
  opacity: 0.7;
}

.services-line-link {
  color: #000;
  font-size: 5rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.services-line-link:hover {
  opacity: 0.7;
}

.services-line-links {
  cursor: pointer;
}

.services-line-links:hover {
  opacity: 0.7;
}

.services-line:last-child {
  margin-bottom: 0;
}

.services-line.engagement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: default;
}

.services-line.engagement:hover {
  opacity: 1;
}

.services-line.engagement span {
  flex-shrink: 0;
}

.social-icons {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.social-icons a {
  color: #000;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
}

.social-icons a:hover {
  color: #666;
  transform: scale(1.1);
}

.social-icons svg {
  width: 40px;
  height: 40px;
}

.social-icons img {
  height: 40px;
  width: auto;
}

.services-subheading {
  color: #000;
  font-size: 2rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.services-subheading:hover {
  opacity: 0.7;
}

.services-subheading-item .services-subheading {
  margin-bottom: 0;
}

.video-thumbnails-row {
  display: flex;
  gap: 1rem;
  margin-left: 2rem;
}

.live-subheading-link {
  text-decoration: none;
  display: block;
}

.live-subheading-wrapper {
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000;
  height: 7rem;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.live-subheading-wrapper::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 4rem;
  font-size: 5rem;
  font-weight: 700;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #000;
  z-index: 2;
  pointer-events: none;
  background: #fff;
  mix-blend-mode: lighten;
}

.live-video-masked {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.chevron {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.chevron.open {
  transform: rotate(180deg);
}

.services-subheadings {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes highlightSection {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: rgba(255, 215, 0, 0.2);
  }
  100% {
    background-color: transparent;
  }
}

.services-category.highlight {
  animation: highlightSection 2s ease;
}

.services-subheading-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.services-subheading-item:last-of-type {
  margin-bottom: 3rem;
}

.video-thumbnail {
  width: 240px;
  height: 135px;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.video-thumbnail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
}

.video-thumbnail:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-play-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 1;
}

.video-thumbnail:hover .video-play-icon {
  background-color: #fff;
  transform: scale(1.1);
}

.video-play-icon svg {
  width: 30px;
  height: 30px;
  color: #000;
  margin-left: 3px;
}

@media (max-width: 918px) {
  .services {
    padding: 3rem 0;
  }

  .services-container {
    padding: 0 1rem;
  }

  .services-text {
    padding-left: 1rem;
  }

  .services-line,
  .services-line-link {
    font-size: 2.5rem;
  }

  .chevron {
    width: 30px;
    height: 30px;
  }

  .services-subheading {
    font-size: 1.5rem;
    padding-left: 1rem;
  }

  .video-thumbnails-row {
    flex-wrap: wrap;
    margin-left: 1rem;
  }

  .video-thumbnail {
    width: 180px;
    height: 101px;
  }

  .video-play-icon {
    width: 45px;
    height: 45px;
  }

  .video-play-icon svg {
    width: 22px;
    height: 22px;
  }

  .social-icons {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .social-icons svg,
  .social-icons img {
    width: 30px;
    height: 30px;
  }

  .live-subheading-wrapper {
    height: 5rem;
  }

  .live-subheading-wrapper::before {
    font-size: 3rem;
    padding-left: 1rem;
  }
}

.services-expanded-content {
  padding: 2rem 0 3rem 2rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  animation: slideDown 0.3s ease;
}

.services-expanded-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.bio-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.bio-link-item {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bio-link-item:hover {
  background-color: #000;
  color: #fff;
}

.press-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.press-link-item {
  display: block;
  padding: 1rem 1.5rem;
  background: #f5f5f5;
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-left: 4px solid #000;
  transition: all 0.2s ease;
}

.press-link-item:hover {
  background: #ffd700;
  border-left-color: #000;
  transform: translateX(5px);
}

.appearances-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.appearance-item {
  padding: 1.5rem;
  background: #000;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.appearance-item:hover {
  background: #ffd700;
  color: #000;
  transform: scale(1.05);
}

.development-sizzles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 500px;
}

.sizzle-btn,
.gallery-btn {
  padding: 1.25rem 2rem;
  background: #000;
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.sizzle-btn:hover,
.gallery-btn:hover {
  background: #ffd700;
  color: #000;
  transform: translateX(5px);
}

.view-gallery-btn {
  padding: 1.25rem 2.5rem;
  background: #000;
  color: #fff;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  display: block;
}

.view-gallery-btn:hover {
  background: #ffd700;
  color: #000;
  transform: scale(1.05);
}

@media (max-width: 918px) {
  .services-expanded-content {
    padding: 1.5rem 0 2rem 1rem;
  }

  .services-expanded-content p {
    font-size: 1rem;
  }

  .press-links-grid {
    grid-template-columns: 1fr;
  }

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

  .appearance-item {
    padding: 1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 630px) {
  .services-line,
  .services-line-link {
    font-size: 2rem;
  }

  .services-subheading {
    font-size: 1.2rem;
  }

  .video-thumbnail {
    width: 150px;
    height: 84px;
  }

  .video-play-icon {
    width: 35px;
    height: 35px;
  }

  .video-play-icon svg {
    width: 18px;
    height: 18px;
  }

  .live-subheading-wrapper {
    height: 4rem;
  }

  .live-subheading-wrapper::before {
    font-size: 2rem;
    padding-left: 0.5rem;
  }

  .social-icons svg,
  .social-icons img {
    width: 25px;
    height: 25px;
  }

  .services-expanded-content {
    padding: 1rem 0 1.5rem 0.5rem;
  }

  .services-expanded-content p {
    font-size: 0.9rem;
  }

  .bio-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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

  .appearance-item {
    font-size: 0.9rem;
  }
}

/* ========================================
   LinksPopup.css
   ======================================== */
.links-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 2rem;
}

.links-popup-content {
  background: #fff;
  width: 100%;
  max-width: 500px;
  border-radius: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.links-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  color: #000;
  line-height: 1;
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.links-popup-close:hover {
  transform: scale(1.1);
}

.links-popup-close svg {
  width: 24px;
  height: 24px;
}

.links-popup-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
  color: #000;
  text-transform: uppercase;
}

.links-popup-text {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  color: #333;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.links-popup-button {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.links-popup-button:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

.links-popup-button svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 630px) {
  .links-popup-overlay {
    padding: 1rem;
  }

  .links-popup-content {
    padding: 2rem 1.5rem;
  }

  .links-popup-title {
    font-size: 2rem;
  }

  .links-popup-text {
    font-size: 1rem;
  }

  .links-popup-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

/* ========================================
   PopupPlayer.css
   ======================================== */
.popup-player-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
  overflow: hidden;
}

.popup-player {
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 0;
  max-width: 1400px;
  width: 100%;
  height: 85vh;
  position: relative;
  animation: popupFadeIn 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: 2px solid #000;
  border-radius: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.popup-close:hover {
  background-color: #000;
}

.popup-close:hover svg {
  color: #fff;
}

.popup-close svg {
  width: 24px;
  height: 24px;
  color: #000;
  transition: color 0.3s ease;
}

.popup-content {
  padding: 3rem;
  display: flex;
  gap: 2rem;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.popup-sidebar {
  width: 320px;
  flex-shrink: 0;
  border-right: 2px solid #000;
  padding-right: 1.5rem;
  overflow-y: auto;
  overflow-x: hidden;
}

.popup-main {
  flex: 1;
  min-width: 0;
  padding-right: 4rem;
  overflow-y: auto;
  transition: opacity 0.15s ease;
}

.popup-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.popup-tab-group {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

.popup-tab-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.popup-tab {
  background-color: transparent;
  border: none;
  border-left: 3px solid transparent;
  color: #000;
  padding: 0.75rem 0;
  padding-left: 1rem;
  font-size: 0.9rem;
  font-weight: 400;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.popup-tab:hover {
  border-left-color: #000;
  font-weight: 700;
}

.popup-tab.active {
  border-left-color: #000;
  font-weight: 700;
}

.popup-tab-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.popup-tab-chevron.open {
  transform: rotate(180deg);
}

.popup-subtabs-sidebar {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
}

.popup-subtab-sidebar {
  background-color: transparent;
  border: none;
  border-left: 2px solid transparent;
  border-bottom: 1px solid #f0f0f0;
  color: #666;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  font-weight: 400;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.popup-subtab-sidebar:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.popup-subtab-sidebar:hover {
  color: #000;
  border-left-color: #ccc;
}

.popup-subtab-sidebar.active {
  color: #000;
  font-weight: 700;
  border-left-color: #000;
}

/* Hierarchical sidebar styles */
.popup-subtabs-container {
  display: flex;
  flex-direction: column;
  padding-left: 0.5rem;
  margin-top: 0.5rem;
}

.popup-child-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.5rem !important;
  font-size: 0.85rem;
}

.popup-child-category .popup-tab-chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.popup-child-category .popup-tab-chevron.open {
  transform: rotate(90deg);
}

.popup-video-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.5rem !important;
}

.popup-nested-video {
  padding-left: 2.5rem !important;
}

.popup-video-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.5;
}

.popup-video-item.active .popup-video-icon {
  opacity: 1;
}

.popup-child-videos {
  display: flex;
  flex-direction: column;
}

.popup-tab-parent {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.popup-tab-text {
  flex: 1;
}

.popup-header {
  margin-bottom: 2rem;
  text-align: center;
  display: none;
}

.popup-subsection-title {
  color: #000;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

.popup-video-container {
  background-color: #000;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
  border: 2px solid #000;
}

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

.popup-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #666;
  background-color: #000;
}

.popup-placeholder svg {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  color: #fff;
}

.popup-placeholder p {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #fff;
}

.popup-placeholder-text {
  font-size: 1rem;
  color: #ccc;
}

.popup-gallery-container {
  background-color: #000;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 2px solid #000;
}

.popup-gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.popup-gallery-image {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  display: block;
}

.popup-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}

.popup-gallery-nav:hover {
  background: rgba(255, 255, 255, 0.9);
}

.popup-gallery-nav:hover svg {
  color: #000;
}

.popup-gallery-nav svg {
  width: 30px;
  height: 30px;
  color: #fff;
  transition: color 0.3s ease;
}

.popup-gallery-prev {
  left: 1rem;
}

.popup-gallery-next {
  right: 1rem;
}

.popup-gallery-counter {
  text-align: center;
  padding: 1rem;
  background-color: #000;
  color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-top: 2px solid #fff;
}

.popup-grid-view {
  padding: 2rem 0;
}

.popup-grid-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #000;
}

.popup-section-description {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.popup-section-description p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0.75rem 0;
}

.popup-press-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-right: 5rem;
}

.popup-press-link {
  display: block;
  padding: 1rem 1.5rem;
  background: #f5f5f5;
  color: #000;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-left: 4px solid #000;
  transition: all 0.2s ease;
}

.popup-press-link:hover {
  background: #ffd700;
  border-left-color: #000;
  transform: translateX(5px);
}

.popup-photo-grid-item {
  cursor: pointer;
  overflow: hidden;
  border: 2px solid #000;
  aspect-ratio: 1 / 1;
}

.popup-photo-grid-item:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.popup-photo-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.popup-photo-grid-item:hover .popup-photo-grid-img {
  transform: scale(1.05);
}

.popup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.popup-grid-item {
  background-color: #fff !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.popup-grid-item:hover {
  transform: scale(1.02);
  box-shadow: none;
}

.popup-grid-item:hover .popup-grid-item-overlay {
  opacity: 1;
}

.popup-grid-item-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #000;
}

.popup-grid-item-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.popup-grid-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-grid-item-overlay svg {
  width: 64px;
  height: 64px;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.popup-grid-item-video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #000;
  pointer-events: none;
}

.popup-grid-item-iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.popup-grid-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  aspect-ratio: 16 / 9;
  background-color: #f5f5f5;
}

.popup-grid-item-icon {
  margin-bottom: 1rem;
}

.popup-grid-item-icon svg {
  width: 48px;
  height: 48px;
  color: #000;
}

.popup-grid-item-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
  padding: 0.75rem 0;
  background-color: transparent;
  width: 100%;
  text-align: center;
}

.popup-navigation {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.popup-nav-btn {
  flex: 1;
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.popup-nav-btn:hover:not(:disabled) {
  background-color: #000;
  color: #fff;
}

.popup-nav-btn:hover:not(:disabled) svg {
  color: #fff;
}

.popup-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.popup-nav-btn svg {
  width: 20px;
  height: 20px;
  color: #000;
  transition: color 0.3s ease;
}

.popup-mobile-sidebar-toggle {
  display: none;
}

@media (max-width: 918px) {
  .popup-player-overlay {
    padding: 0.5rem;
  }

  .popup-content {
    padding: 2rem 1rem;
    flex-direction: column;
  }

  .popup-main {
    padding-right: 0;
    padding-top: 3rem;
    order: 1;
  }

  .popup-mobile-sidebar-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #000;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    cursor: pointer;
    margin-bottom: 1rem;
    width: 100%;
    justify-content: center;
    transition: background 0.3s ease;
    order: 2;
  }

  .popup-mobile-sidebar-toggle:hover {
    background: #ffd700;
    color: #000;
  }

  .popup-mobile-sidebar-toggle svg {
    width: 24px;
    height: 24px;
  }

  .popup-sidebar {
    width: 100%;
    border-right: none;
    border-top: 2px solid #000;
    padding-right: 0;
    padding-top: 1.5rem;
    margin-top: 0;
    order: 3;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
  }

  .popup-sidebar.mobile-open {
    max-height: 60vh;
    margin-top: 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .popup-grid-title {
    font-size: 2rem;
  }

  .popup-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
  }

  .popup-grid-item-icon svg {
    width: 36px;
    height: 36px;
  }

  .popup-grid-item-title {
    font-size: 0.85rem;
  }

  .popup-tabs {
    flex-direction: column;
    gap: 0.25rem;
  }

  .popup-tab {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    border-left: 3px solid transparent;
    border-bottom: none;
    white-space: normal;
  }

  .popup-tab:hover,
  .popup-tab.active {
    border-left-color: #000;
    border-bottom-color: transparent;
  }

  .popup-tab-chevron {
    width: 18px;
    height: 18px;
  }

  .popup-subtabs-sidebar {
    padding-left: 0.5rem;
  }

  .popup-subtab-sidebar {
    padding: 0.4rem 0;
    padding-left: 1rem;
    font-size: 0.8rem;
  }

  .popup-subsection-title {
    font-size: 1.5rem;
  }

  .popup-placeholder svg {
    width: 60px;
    height: 60px;
  }

  .popup-placeholder p {
    font-size: 1rem;
  }

  .popup-video-container {
    margin-bottom: 1.5rem;
  }

  .popup-navigation {
    flex-direction: column;
    gap: 1rem;
  }

  .popup-nav-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .popup-close {
    top: 1rem;
    right: 1rem;
  }
}

@media (max-width: 630px) {
  .popup-player-overlay {
    padding: 0;
  }

  .popup-close {
    width: 35px;
    height: 35px;
    top: 0.5rem;
    right: 0.5rem;
  }

  .popup-close svg {
    width: 18px;
    height: 18px;
  }

  .popup-content {
    padding: 1.5rem 0.75rem;
  }

  .popup-sidebar {
    padding-top: 1rem;
    margin-top: 1rem;
  }

  .popup-tabs {
    gap: 0.2rem;
  }

  .popup-tab {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }

  .popup-tab-chevron {
    width: 16px;
    height: 16px;
  }

  .popup-subtab-sidebar {
    padding: 0.35rem 0;
    padding-left: 0.75rem;
    font-size: 0.7rem;
  }

  .popup-subsection-title {
    font-size: 1.2rem;
  }

  .popup-placeholder svg {
    width: 50px;
    height: 50px;
  }

  .popup-placeholder p {
    font-size: 0.9rem;
  }

  .popup-placeholder-text {
    font-size: 0.85rem;
  }

  .popup-video-container {
    margin-bottom: 1rem;
  }

  .popup-nav-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .popup-nav-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* ========================================
   TestVideo.css
   ======================================== */
.test-video {
  padding: 4rem 2rem;
  background: #f5f5f5;
  text-align: center;
}

.test-video h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #000;
}

.test-video-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  background: #000;
}

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

/* ========================================
   Hero.css
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
  margin-top: 0;
}

.hero.audio-active {
  height: auto;
  min-height: 0;
  overflow: visible;
  margin-top: 0;
  padding-top: 0;
}

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

.hero.audio-active .hero-video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-top: 0;
  padding-top: 0;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero.audio-active .hero-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
}

@media (min-aspect-ratio: 16/9) {
  .hero-video iframe {
    height: 56.25vw;
  }
}

@media (max-aspect-ratio: 16/9) {
  .hero-video iframe {
    width: 177.78vh;
  }
}

.hero-text {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hero-text.hidden {
  opacity: 0;
  visibility: hidden;
}

.hero-text h1,
.hero-text p {
  pointer-events: none;
}

.hero-text h1 {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 2rem;
  color: #fff;
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

.hero-tagline {
  max-width: 1450px;
  margin: 1rem auto 0;
  padding: 0 2rem;
  color: #fff;
  font-size: 34px;
  font-weight: 400;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.hero-audio-toggle {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: 2px solid #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.hero-audio-toggle.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-audio-toggle:hover {
  background: rgba(255, 215, 0, 0.9);
  border-color: #ffd700;
  color: #000;
  transform: scale(1.05);
}

.hero-audio-toggle svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .hero-audio-toggle {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .hero-audio-toggle svg {
    width: 20px;
    height: 20px;
  }
}
