/* style/live.css */

/* --- Base Styles for .page-live (assuming dark body background from shared.css) --- */
.page-live {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

.page-live__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.page-live__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height of image wrapper */
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum size requirement */
}

.page-live__hero-content {
  position: relative;
  z-index: 10;
  padding: 20px 0 60px;
  max-width: 900px;
}

.page-live__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-live__hero-description {
  font-size: 1.2em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

.page-live__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

/* --- Buttons --- */
.page-live__btn-primary,
.page-live__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%; /* Ensure responsiveness */
}

.page-live__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for contrast */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-live__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
  opacity: 0.9;
}

.page-live__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B; /* Glow */
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.3);
}

.page-live__btn-secondary:hover {
  background: rgba(255, 211, 107, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.5);
}

.page-live__cta-buttons--centered {
  justify-content: center;
  margin-top: 40px;
}

/* --- Section General Styles --- */
.page-live__info-section,
.page-live__content-section,
.page-live__faq-section,
.page-live__media-partners,
.page-live__cta-section {
  padding: 60px 0;
  border-bottom: 1px solid #3A2A12; /* Border */
}

.page-live__info-section.page-live__dark-section,
.page-live__media-partners.page-live__dark-section,
.page-live__cta-section.page-live__dark-section {
  background-color: #111111; /* Card BG */
}

.page-live__section-title {
  font-size: 2.5em;
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.page-live__sub-title {
  font-size: 1.8em;
  color: #F2C14E; /* Main Color */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-live__text-block {
  font-size: 1.1em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
}