/* style/live.css */

/* General styles for the live page, ensuring text color contrasts with dark background #0A0A0A */
.page-live {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main color */
  background-color: #0A0A0A; /* Overall background */
  line-height: 1.6;
  font-size: 16px;
}

/* Section padding */
.page-live__section-padding {
  padding: 60px 20px;
}

/* Container for content width */
.page-live__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%; /* Ensure container takes full width on smaller screens before max-width applies */
  box-sizing: border-box;
}

/* Hero Section */
.page-live__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #0A0A0A;
}

.page-live__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  margin-bottom: 0;
  display: block;
}

.page-live__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly for design */
  position: relative;
  z-index: 1;
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid #3A2A12; /* Border */
}