:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --dark-text-color: #333333;
  --light-text-color: #ffffff;
  --login-button-color: #EA7C07;
  --border-color: #e0e0e0;
  --background-light: #f9f9f9;
}

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

/* Hero Section */
.page-live-streaming__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  overflow: hidden;
}

.page-live-streaming__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}