.page-live {
  padding-top: var(--header-offset, 120px);
  background-color: #f8f8f8; /* Light background for default body */
  color: #333333; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 0;
  margin-bottom: 60px;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

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

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

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

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

.page-live__button--primary {
  background-color: #FFD700;
  color: #1A2E44;
  border: 2px solid #FFD700;
}

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

.page-live__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

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

.page-live__section-title {
  font-size: 2.5em;
  color: #1A2E44;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
}

.page-live__section-subtitle {
  font-size: 1.2em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__games-showcase-section {
  margin-bottom: 60px;
}

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

.page-live__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

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

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

.page-live__game-title {
  font-size: 1.8em;
  color: #1A2E44;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-live__game-title a {
  color: inherit;
  text-decoration: none;
}

.page-live__game-title a:hover {
  color: #FFD700;
}

.page-live__game-description {
  color: #666666;
  font-size: 1em;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-live__why-betph-section {
  background-color: #1A2E44;
  color: #ffffff;
  padding: 80px 0;
  margin-bottom: 60px;
}

.page-live__why-betph-section .page-live__section-title {
  color: #FFD700;
}

.page-live__why-betph-section .page-live__section-subtitle {
  color: #cccccc;
}

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

.page-live__feature-item {
  text-align: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.page-live__feature-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-live__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Enhance visibility on dark background */
}

.page-live__feature-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live__feature-text {
  color: #f0f0f0;
}

.page-live__how-to-play-section {
  margin-bottom: 60px;
}

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

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

.page-live__step-title {
  font-size: 1.6em;
  color: #1A2E44;
  margin-bottom: 15px;
}

.page-live__step-description {
  color: #666666;
  margin-bottom: 25px;
}

.page-live__detail-pages-section {
  margin-bottom: 60px;
}

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

.page-live__detail-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
}

.page-live__detail-title {
  font-size: 1.6em;
  color: #1A2E44;
  margin-bottom: 10px;
}

.page-live__detail-title a {
  color: inherit;
  text-decoration: none;
}

.page-live__detail-title a:hover {
  color: #FFD700;
}

.page-live__detail-description {
  color: #666666;
  margin-bottom: 20px;
}

.page-live__cta-section {
  background: linear-gradient(135deg, #1A2E44, #3a5c80);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 60px;
}

.page-live__cta-content {
  max-width: 900px;
}

.page-live__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-live__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-live__responsible-gaming-section, .page-live__contact-support-section {
  background-color: #ffffff;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-live__responsible-gaming-section .page-live__section-title, .page-live__contact-support-section .page-live__section-title {
  color: #1A2E44;
}

.page-live__responsible-gaming-section .page-live__section-subtitle, .page-live__contact-support-section .page-live__section-subtitle {
  color: #666666;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__section-title {
    font-size: 2.2em;
  }
  .page-live__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-live__game-grid, .page-live__feature-grid, .page-live__steps-grid, .page-live__detail-list {
    grid-template-columns: 1fr;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-subtitle {
    font-size: 1em;
  }
  .page-live__cta-title {
    font-size: 2em;
  }
  .page-live__cta-text {
    font-size: 1.1em;
  }
  /* Ensure content images are responsive and do not 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__button {
    width: 90%;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__game-image {
    height: 200px;
  }
  .page-live__feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-live__cta-title {
    font-size: 1.8em;
  }
  .page-live__cta-text {
    font-size: 1em;
  }
}