.page-live {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
}

.page-live__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-live__section-title {
  font-size: clamp(2.2rem, 3.5vw, 3rem); /* H1 constraint - use clamp for H2 as well */
  color: #F2C14E; /* Primary color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-live__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: rgba(255, 246, 214, 0.8);
}

.page-live__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #FFF6D6;
}

.page-live__card-title {
  font-size: 1.5rem;
  color: #F2C14E;
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-live__card-description {
  font-size: 0.95rem;
  color: rgba(255, 246, 214, 0.7);
}

/* Buttons */
.page-live__btn-primary,
.page-live__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.page-live__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text on bright button */
  border: 2px solid transparent;
}

.page-live__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 216, 106, 0.4);
}

.page-live__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Primary color for text */
  border: 2px solid #F2C14E; /* Primary color for border */
}

.page-live__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.2);
}

.page-live__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
  margin-top: auto; /* Push to bottom of card */
}

.page-live__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  width: 100%; /* Ensure container takes full width */
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-live__button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Hero Section */
.page-live__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  box-sizing: border-box;
  background-color: #0A0A0A; /* Ensure consistent background */
}

.page-live__video-container {
  width: 100%;
  max-width: 1920px; /* Full width for video */
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

.page-live__video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  cursor: pointer; /* For JS click functionality */
}

.page-live__hero-content {
  max-width: 900px;
  text-align: center;
  margin-top: 40px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-live__main-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem); /* H1 font size constraint */
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 0 15px rgba(255, 216, 106, 0.3);
}

.page-live__lead-text {
  font-size: 1.25rem;
  color: rgba(255, 246, 214, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

/* Features Section */
.page-live__features-section {
  background-color: #0A0A0A;
}

.page-live__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live__feature-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Min size requirement */
  min-height: 200px;
}

/* Games Section */
.page-live__games-section {
  background-color: #0A0A0A;
}

.page-live__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.page-live__category-card {
  padding: 25px;
  min-height: 200px; /* Ensure cards are not too small */
}

.page-live__category-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Promo Section */
.page-live__promo-section {
  background-color: #0A0A0A;
}