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

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
  background-color: #0A2463; /* Main brand color as background for hero text overlay */
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.page-live__hero-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
  z-index: 0;
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E3B505; /* Auxiliary color for emphasis */
  line-height: 1.2;
}

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

.page-live__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 0 10px;
}

.page-live__cta-button--primary {
  background-color: #E3B505;
  color: #0A2463;
}

.page-live__cta-button--primary:hover {
  background-color: #ffc928;
  transform: translateY(-2px);
}

.page-live__cta-button--secondary {
  background-color: #0A2463;
  color: #E3B505;
  border: 2px solid #E3B505;
}

.page-live__cta-button--secondary:hover {
  background-color: #1a3c7c;
  transform: translateY(-2px);
}

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

.page-live__section-title {
  font-size: 2.8em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.page-live__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E3B505;
  border-radius: 2px;
}

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

.page-live__about-section,
.page-live__games-section,
.page-live__bonuses-section,
.page-live__mobile-section,
.page-live__responsible-gaming-section,
.page-live__faq-section,
.page-live__cta-bottom-section {
  padding: 60px 0;
}

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

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

.page-live__feature-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-live__feature-card:hover {
  transform: translateY(-10px);
}

.page-live__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-live__card-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-live__card-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
}

.page-live__games-section {
  background-color: #f4f4f4;
}

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

.page-live__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__game-card:hover {
  transform: translateY(-10px);
}

.page-live__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-live__game-card .page-live__cta-button {
  margin-top: 20px;
  width: fit-content;
  align-self: center;
}

.page-live__bonuses-section {
  background-color: #0A2463;
  color: #ffffff;
}

.page-live__bonuses-section .page-live__section-title,
.page-live__bonuses-section .page-live__section-intro {
  color: #ffffff;
}

.page-live__bonuses-section .page-live__section-title::after {
  background-color: #E3B505;
}

.page-live__bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live__bonus-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-live__bonus-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-live__bonus-card .page-live__card-title {
  color: #E3B505;
}

.page-live__bonus-card .page-live__card-description {
  color: #f0f0f0;
}

.page-live__bonuses-section .page-live__section-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #cccccc;
}

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

.page-live__mobile-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-live__mobile-content {
  flex: 1;
  min-width: 300px;
}

.page-live__mobile-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-live__mobile-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-live__mobile-features li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
  display: flex;
  align-items: center;
}

.page-live__feature-icon {
  font-size: 1.5em;
  color: #E3B505;
  margin-right: 15px;
}

.page-live__responsible-gaming-section {
  background-color: #f4f4f4;
  text-align: center;
}

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

.page-live__faq-list {
  margin-top: 40px;
}

.page-live__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-live__faq-question {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-live__faq-question::after {
  content: '+';
  font-size: 1.2em;
  color: #E3B505;
  transition: transform 0.3s ease;
}

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

.page-live__faq-answer {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-live__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-live__cta-bottom-section {
  background-color: #E3B505;
  color: #0A2463;
  text-align: center;
  padding: 80px 0;
}

.page-live__cta-bottom-section .page-live__section-title,
.page-live__cta-bottom-section .page-live__section-intro {
  color: #0A2463;
}

.page-live__cta-bottom-section .page-live__section-title::after {
  background-color: #0A2463;
}

.page-live__cta-bottom-section .page-live__cta-button {
  background-color: #0A2463;
  color: #E3B505;
}

.page-live__cta-bottom-section .page-live__cta-button:hover {
  background-color: #1a3c7c;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-intro {
    font-size: 0.95em;
  }
  .page-live__feature-grid,
  .page-live__game-grid,
  .page-live__bonus-cards {
    grid-template-columns: 1fr;
  }
  .page-live__mobile-flex {
    flex-direction: column;
    gap: 30px;
  }
  .page-live__mobile-image {
    order: -1; /* Image appears above text on mobile */
  }
  .page-live__container {
    padding: 30px 15px;
  }
  .page-live__feature-image, .page-live__game-image, .page-live__bonus-image, .page-live__mobile-image {
    max-width: 100%;
    height: auto;
  }
  /* Enforce minimum image size for content images */
  .page-live__hero-image,
  .page-live__feature-image,
  .page-live__game-image,
  .page-live__bonus-image,
  .page-live__mobile-image {
    min-width: 200px;
    min-height: 200px;
  }
  /* Ensure no horizontal scroll on mobile */
  .page-live {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-cta-group {
    flex-direction: column;
  }
  .page-live__cta-button {
    width: 90%;
    margin: 10px auto;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__faq-question {
    font-size: 1.2em;
  }
  .page-live__faq-answer {
    font-size: 0.9em;
  }
}