:root {
  --phfun-primary: #F2C14E;
  --phfun-secondary: #FFD36B;
  --phfun-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --phfun-card-bg: #111111;
  --phfun-background: #0A0A0A;
  --phfun-text-main: #FFF6D6;
  --phfun-border: #3A2A12;
  --phfun-glow: #FFD36B;
}

.page-live {
  background-color: var(--phfun-background);
  color: var(--phfun-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-live__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Specific override for top padding to avoid double spacing with body padding-top */
  text-align: center;
  overflow: hidden;
}

.page-live__video-container {
  width: 100%;
  max-width: 1920px; /* Ensure video container can stretch for large screens */
  margin: 0 auto;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-live__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-live__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent overlay for text readability */
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  margin-top: 150px; /* Push content down to avoid overlapping video */
}