/* style/live.css */
.page-live {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-live__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-live__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 90%;
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
}

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

.page-live__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__hero-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
}

.page-live__hero-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-live__hero-cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-live__hero-cta-button--secondary:hover {
  background-color: #FFD700;
  color: #000000;
}

.page-live__introduction-section,
.page-live__games-section,
.page-live__features-section,
.page-live__bonuses-section,
.page-live__get-started-section,
.page-live__faq-section,
.page-live__responsible-gaming-section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-live__introduction-title,
.page-live__games-title,
.page-live__features-title,
.page-live__bonuses-title,
.page-live__get-started-title,
.page-live__faq-title,
.page-live__responsible-gaming-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.page-live__introduction-text,
.page-live__games-description,
.page-live__games-text,
.page-live__bonuses-text,
.page-live__get-started-description,
.page-live__faq-answer,
.page-live__responsible-gaming-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-live__games-description {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__game-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.12);
}

.page-live__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

.page-live__game-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-live__game-card-text {
  font-size: 1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-live__game-card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-live__game-card-button:hover {
  background-color: #e6c200;
}

.page-live__feature-list {
  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: 8px;
  padding: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

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

.page-live__feature-text {
  font-size: 1em;
}

.page-live__bonuses-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-live__bonuses-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-live__bonuses-content {
  text-align: center;
}

.page-live__bonuses-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-live__bonuses-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-live__get-started-steps {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-live__get-started-step {
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-live__get-started-step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live__get-started-step-text {
  font-size: 1em;
}

.page-live__get-started-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.page-live__get-started-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-live__faq-items {
  margin-top: 30px;
}

.page-live__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-live__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live__faq-answer {
  font-size: 1em;
}

.page-live__faq-answer a,
.page-live__responsible-gaming-text a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live__faq-answer a:hover,
.page-live__responsible-gaming-text a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-live__responsible-gaming-text {
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__introduction-title,
  .page-live__games-title,
  .page-live__features-title,
  .page-live__bonuses-title,
  .page-live__get-started-title,
  .page-live__faq-title,
  .page-live__responsible-gaming-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 0;
  }
  .page-live__hero-content {
    padding: 20px;
    max-width: 95%;
  }
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-live__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live__introduction-section,
  .page-live__games-section,
  .page-live__features-section,
  .page-live__bonuses-section,
  .page-live__get-started-section,
  .page-live__faq-section,
  .page-live__responsible-gaming-section {
    margin-bottom: 40px;
    padding: 15px;
  }
  .page-live__introduction-title,
  .page-live__games-title,
  .page-live__features-title,
  .page-live__bonuses-title,
  .page-live__get-started-title,
  .page-live__faq-title,
  .page-live__responsible-gaming-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-live__game-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-live__feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-live__bonuses-container {
    flex-direction: column;
  }
  .page-live__bonuses-image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .page-live__game-card-image, .page-live__bonuses-image {
    max-width: 100%;
    height: auto;
  }
  .page-live img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
  .page-live__game-card-image,
  .page-live__bonuses-image,
  .page-live__hero-image {
    width: 100%;
    height: auto;
  }
  /* Ensure content area images are not smaller than 200px */
  .page-live__game-card-image {
    width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-live__bonuses-image {
    width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-live__hero-image {
    width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}