.page-live {
  color: #333333; /* Dark text for light body background */
}

.page-live__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

.page-live__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff; /* White text over dark/rich image */
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay for readability */
  border-radius: 10px;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live__hero-description {
  font-size: 1.3em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-live__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-live__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.page-live__button--primary {
  background-color: #FFD700; /* Gold primary button */
  color: #1A1A1A; /* Dark text for gold button */
  border: 2px solid #FFD700;
}

.page-live__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-live__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
}

.page-live__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-live__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-live__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

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

.page-live__section-title {
  font-size: 2.8em;
  color: #1A1A1A; /* Dark title for content sections */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-live__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-live__section-description {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555555;
}

.page-live__features-section, .page-live__games-showcase, .page-live__promotions-section, .page-live__why-choose-us, .page-live__faq-section, .page-live__registration-cta {
  padding: 80px 0;
  background-color: #f4f4f4;
}

.page-live__features-section {
  background-color: #ffffff;
}

.page-live__feature-grid, .page-live__game-grid, .page-live__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-live__feature-card, .page-live__game-card, .page-live__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__feature-card:hover, .page-live__game-card:hover, .page-live__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-live__feature-image, .page-live__game-image {
  width: 100%; /* Ensure images are responsive within their cards */
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-live__card-title {
  font-size: 1.8em;
  color: #1A1A1A;
  margin-bottom: 15px;
}

.page-live__card-text {
  font-size: 1em;
  line-height: 1.7;
  color: #666666;
  flex-grow: 1; /* Allow text to take up available space */
  margin-bottom: 20px;
}

.page-live__game-card .page-live__button {
  margin-top: auto; /* Push button to bottom */
}

.page-live__view-all-games, .page-live__view-all-promos {
  text-align: center;
  margin-top: 60px;
}

.page-live__why-choose-us {
  background-color: #1A1A1A; /* Dark background for this section */
  color: #f0f0f0; /* Light text */
}

.page-live__why-choose-us .page-live__section-title {
  color: #FFD700;
}

.page-live__why-choose-us .page-live__section-title::after {
  background-color: #FFD700;
}

.page-live__why-choose-us .page-live__section-description {
  color: #cccccc;
}

.page-live__advantage-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.page-live__advantage-item {
  background-color: rgba(255, 215, 0, 0.1);
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-live__advantage-item strong {
  color: #FFD700;
}

.page-live__cta-buttons {
  text-align: center;
  margin-top: 50px;
}

.page-live__faq-accordion {
  max-width: 900px;
  margin: 50px auto 0;
}

.page-live__accordion-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-live__accordion-header {
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-live__accordion-header:hover {
  background-color: #e6c200;
}

.page-live__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-live__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-live__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-live__accordion-content p {
  padding: 15px 0;
  line-height: 1.7;
  color: #444444;
}

.page-live__accordion-content a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-live__accordion-content a:hover {
  text-decoration: underline;
}

.page-live__registration-cta {
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%); /* Dark gradient background */
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
}

.page-live__registration-cta .page-live__section-title {
  color: #FFD700;
}

.page-live__registration-cta .page-live__section-title::after {
  background-color: #FFD700;
}

.page-live__registration-cta .page-live__section-description {
  color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__section-title {
    font-size: 2.2em;
  }
  .page-live__advantage-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-live__hero-content {
    padding: 25px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-live__features-section, .page-live__games-showcase, .page-live__promotions-section, .page-live__why-choose-us, .page-live__faq-section, .page-live__registration-cta {
    padding: 50px 0;
  }
  .page-live__feature-grid, .page-live__game-grid, .page-live__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-live__feature-image, .page-live__game-image {
    max-width: 100%;
    height: auto; /* Allow image height to adjust */
    min-height: 200px; /* Ensure minimum size */
  }
  .page-live__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-live__accordion-content p {
    padding: 10px 0;
    font-size: 0.95em;
  }
  /* Ensure all content images do not cause horizontal overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__hero-content {
    padding: 20px;
  }
  .page-live__button {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-live__section-title {
    font-size: 1.6em;
  }
  .page-live__section-description {
    font-size: 0.9em;
  }
  .page-live__advantage-item {
    font-size: 0.95em;
  }
}