body {
  background-color: black;
  color: white;
  font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
}

.tradeshow-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.tradeshow-title {
  font-size: clamp(2rem, 8vw, 6rem);
  font-weight: bold;
  margin-bottom: 2rem;
  color: white;
}

.tradeshow-subtitle {
  font-size: clamp(1rem, 4vw, 2rem);
  margin-bottom: 3rem;
  color: white;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(255,153,0,0.3);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.video-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.video-btn {
  background: rgba(0,0,0,0.7);
  border: 2px solid rgb(255,153,0);
  color: rgb(255,153,0);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-btn:hover {
  background: rgb(255,153,0);
  color: black;
  transform: scale(1.1);
}

.tradeshow-info {
  margin-top: 3rem;
  text-align: center;
}

.info-card {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,153,0,0.3);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,153,0,0.5);
  box-shadow: 0 15px 30px rgba(255,153,0,0.2);
}

.info-title {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Ensure location elements stay together */
.location-group {
  white-space: nowrap;
  display: inline-block;
  font-size: 0.95rem;
  line-height: 1.4;
}

.tradeshow-subtitle .location-group {
  white-space: nowrap;
  display: inline-block;
}

/* Center the tradeshow info cards */
.tradeshow-info .container {
  max-width: 1400px;
}

.tradeshow-info .row {
  gap: 2rem;
}

.tradeshow-info .col-md-5 {
  flex: 0 0 auto;
  width: auto;
  max-width: 550px;
  min-width: 450px;
}

.info-card p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tradeshow-info .col-md-5 {
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .location-group {
    white-space: normal;
    word-break: break-word;
  }
}

.back-btn {
  position: fixed;
  top: 100px;
  left: 20px;
  background: rgba(0,0,0,0.8);
  border: 2px solid rgb(255,153,0);
  color: rgb(255,153,0);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-btn:hover {
  background: rgb(255,153,0);
  color: black;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tradeshow-subtitle {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .location-group {
    white-space: normal;
    display: inline;
  }

  .info-card {
    padding: 1.5rem;
    margin: 0.5rem 0;
  }

  .info-icon {
    font-size: 2.5rem;
  }

  .info-title {
    font-size: 1.3rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 250px;
  }

  .back-btn {
    top: 80px;
    left: 10px;
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .tradeshow-hero {
    padding: 1rem;
  }

  .tradeshow-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .tradeshow-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .video-container {
    margin-bottom: 2rem;
  }

  .info-card {
    padding: 1rem;
  }

  .location-line {
    font-size: 1rem;
  }
}