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

.page-live__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #0A246A; /* Primary brand color */
}

.page-live__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  max-height: 700px;
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-live__hero-title {
  font-size: 3.2em;
  color: #F3C70E; /* Secondary accent color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

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

.page-live__button--primary {
  background-color: #F3C70E; /* Secondary accent color */
  color: #0A246A; /* Primary brand color */
  border: 2px solid #F3C70E;
}

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

.page-live__button--secondary {
  background-color: transparent;
  color: #F3C70E; /* Secondary accent color */
  border: 2px solid #F3C70E;
}

.page-live__button--secondary:hover {
  background-color: rgba(243, 199, 14, 0.1);
  transform: translateY(-2px);
}

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

.page-live__section-title {
  font-size: 2.5em;
  color: #0A246A; /* Primary brand color */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

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

.page-live__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-live__about-section {
  background-color: #ffffff;
  padding: 60px 0;
}

.page-live__games-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.page-live__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 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.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.page-live__game-description {
  font-size: 1em;
  line-height: 1.6;
  padding: 0 15px 20px;
  flex-grow: 1;
}

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

.page-live__features-section {
  background-color: #0A246A;
  padding: 60px 0;
  color: #ffffff;
}

.page-live__features-section .page-live__section-title {
  color: #F3C70E;
}

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

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

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

.page-live__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: none; /* Ensure no CSS filter is applied */
}

.page-live__feature-title {
  font-size: 1.6em;
  color: #F3C70E;
  margin-bottom: 15px;
}

.page-live__feature-description {
  font-size: 0.95em;
  line-height: 1.6;
}

.page-live__bonuses-section {
  background-color: #f4f4f4;
  padding: 60px 0;
  text-align: center;
}

.page-live__bonus-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-live__bonus-list {
  list-style: none;
  padding: 0;
  margin: 30px auto 40px;
  max-width: 700px;
  text-align: left;
}

.page-live__bonus-item {
  background-color: #ffffff;
  border-left: 5px solid #F3C70E;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
}

.page-live__bonus-item strong {
  color: #0A246A;
}

.page-live__mobile-section {
  background-color: #ffffff;
  padding: 60px 0;
}

.page-live__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-live__mobile-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-live__mobile-text .page-live__button {
  margin-right: 15px;
  margin-top: 20px;
}

.page-live__mobile-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  filter: none; /* Ensure no CSS filter is applied */
}

.page-live__responsible-gaming-section {
  background-color: #0A246A;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-live__responsible-gaming-section .page-live__section-title {
  color: #F3C70E;
}

.page-live__responsible-gaming-section .page-live__section-title::after {
  background-color: #ffffff;
}

.page-live__responsible-gaming-section .page-live__text-content {
  color: #e0e0e0;
}

.page-live__cta-section {
  background-color: #f4f4f4;
  padding: 60px 0;
  text-align: center;
}

.page-live__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Responsive Design */
@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: 2em;
  }

  .page-live__game-image {
    height: 200px;
  }

  .page-live__feature-item {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 120px);
    padding: 30px 15px;
  }

  .page-live__hero-image {
    max-height: 400px;
  }

  .page-live__hero-content {
    position: static;
    transform: none;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 15px;
  }

  .page-live__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-live__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-live__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-live__container {
    padding: 30px 15px;
  }

  .page-live__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-live__text-content {
    font-size: 1em;
  }

  .page-live__game-grid, .page-live__features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-live__game-image {
    height: 180px;
  }

  .page-live__mobile-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-live__mobile-image {
    max-width: 300px;
  }

  .page-live__mobile-text .page-live__button {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-live__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  /* Enforce image max-width for content area images */
  .page-live img {
    max-width: 100%;
    height: auto;
  }

  /* Content area images must not be smaller than 200px */
  .page-live__game-image, .page-live__feature-icon, .page-live__bonus-image, .page-live__mobile-image {
    min-width: 200px; 
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.6em;
  }

  .page-live__hero-description {
    font-size: 0.9em;
  }

  .page-live__section-title {
    font-size: 1.5em;
  }

  .page-live__button {
    font-size: 0.9em;
  }

  .page-live__game-title {
    font-size: 1.5em;
  }

  .page-live__feature-title {
    font-size: 1.4em;
  }
}