/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

/* Background */
.background {
  background-image: url("images/hero-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
  color: #FFA500;
}

/* Main Title */
.main-title {
  font-size: 32px;
  font-weight: bold;
  font-style: italic;
  margin-top: 20px;
  color: #FFA500;
}

/* Join Button */
.join-btn {
  display: inline-block;
  margin: 15px 0;
  padding: 12px 25px;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  font-style: italic;
  text-decoration: none;
  border-radius: 8px;
}

/* Media Control Button */
.media-btn {
  margin: 10px auto;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  font-style: italic;
  background-color: #FFA500;
  border: none;
  border-radius: 6px;
  color: #000;
  cursor: pointer;
}

/* Icon Bar */
.icon-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.icon {
  text-align: center;
  width: 80px;
}

.icon img {
  width: 100%;
  height: auto;
}

.icon p {
  font-size: 12px;
  font-weight: bold;
  font-style: italic;
  margin-top: 5px;
  color: #FFA500;
}

/* Spacing */
.spacer {
  height: 40px;
}

/* Video Section */
.video-section video {
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  margin-top: 10px;
}

/* Audio Section */
.audio-section audio {
  margin-top: 10px;
  width: 80%;
  max-width: 400px;
}

/* Info Section */
.info-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
}

.info-box {
  background-color: rgba(0, 0, 0, 0.7);
  color: #FFA500;
  padding: 20px;
  border: 2px solid #FFA500;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
}

.info-box h2 {
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 5px;
}

.info-box p {
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 600px) {
  .main-title {
    font-size: 24px;
  }

  .join-btn, .media-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .icon {
    width: 60px;
  }

  .info-box {
    padding: 15px;
  }

  .spacer {
    height: 30px;
  }
}