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

.page-live__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #1A1A1A; /* Dark background for hero */
  position: relative;
  overflow: hidden;
}

.page-live__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-live__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

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

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

.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.2s ease;
  white-space: nowrap;
}

.page-live__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A1A1A; /* Dark text on gold */
}

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

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

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

.page-live__button--tertiary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFD700;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-live__button--tertiary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

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

.page-live__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-live__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.page-live__section-intro {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #cccccc;
}

.page-live__section--games {
  background-color: #1A1A1A; /* Dark background for games section */
}

.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: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

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

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

.page-live__game-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #b0b0b0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live__section--why-choose {
  background-color: #333; /* Slightly lighter dark background */
}

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

.page-live__feature-item {
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

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

.page-live__feature-icon {
  width: 100%; /* Ensure images are not small icons */
  max-width: 250px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-live__feature-description {
  font-size: 0.9em;
  line-height: 1.6;
  color: #c0c0c0;
}

.page-live__section--cta {
  background: linear-gradient(135deg, #FFD700, #e6c200); /* Gold gradient background */
  color: #1A1A1A; /* Dark text on gold */
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  margin: 60px auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.page-live__cta-title {
  font-size: 3em;
  color: #1A1A1A;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-live__cta-description {
  font-size: 1.2em;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
  color: #333;
}

.page-live__cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-live__section--promotions {
  background-color: #1A1A1A;
}

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

.page-live__promo-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

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

.page-live__promo-title {
  font-size: 1.7em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live__promo-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #b0b0b0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live__view-all-promos {
  margin-top: 50px;
}

.page-live__section--faq {
  background-color: #333;
}

.page-live__faq-container {
  margin-top: 40px;
  text-align: left;
}

.page-live__faq-item {
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-live__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

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

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

.page-live__section--responsible-gaming {
  background-color: #1A1A1A;
}

.page-live__section--join-us {
  background: linear-gradient(45deg, #1A1A1A, #333); /* Dark gradient */
  padding: 80px 20px;
  margin-top: 60px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.page-live__join-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-live__join-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.page-live__join-description {
  font-size: 1.2em;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__section-title {
    font-size: 2.4em;
  }
  .page-live__cta-title {
    font-size: 2.5em;
  }
  .page-live__join-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 40px 15px;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-live__hero-image,
  .page-live__cta-image,
  .page-live__game-image,
  .page-live__feature-icon,
  .page-live__promo-image {
    max-width: 100%;
    height: auto;
  }
  .page-live__section {
    padding: 60px 15px;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-intro {
    font-size: 0.95em;
  }
  .page-live__cta-title {
    font-size: 2em;
  }
  .page-live__cta-description {
    font-size: 1em;
  }
  .page-live__join-title {
    font-size: 2em;
  }
  .page-live__join-description {
    font-size: 1em;
  }
  .page-live__game-card,
  .page-live__feature-item,
  .page-live__promo-card {
    padding: 20px;
  }
  .page-live__game-title,
  .page-live__feature-heading,
  .page-live__promo-title {
    font-size: 1.5em;
  }
  .page-live__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__cta-title {
    font-size: 1.8em;
  }
  .page-live__join-title {
    font-size: 1.8em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-live__button {
    font-size: 0.9em;
  }
}