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

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

.page-live__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A192F; /* Dark background for hero content */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

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

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

.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;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-live__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* 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__section-title {
  font-size: 2.5em;
  color: #0A192F; /* Main dark color */
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
}

.page-live__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

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

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

.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: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-live__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.page-live__game-title {
  font-size: 1.8em;
  color: #0A192F;
  margin: 25px 15px 10px 15px;
}

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

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

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

.page-live__why-choose-section .page-live__section-description {
  color: #cccccc;
}

.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.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: background-color 0.3s ease;
}

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

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

.page-live__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-live__promo-cta-section {
  padding: 60px 0;
  background-color: #f0f0f0;
  text-align: center;
}

.page-live__promo-cta-section .page-live__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-live__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-live__promo-content .page-live__section-title {
  color: #0A192F;
}

.page-live__promo-content .page-live__section-description {
  color: #555555;
}

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

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

.page-live__detail-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.page-live__detail-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-live__detail-title a {
  color: #0A192F;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.page-live__cta-register-section {
  padding: 80px 0;
  background-color: #0A192F;
  color: #ffffff;
  text-align: center;
}

.page-live__cta-register-section .page-live__section-title {
  color: #FFD700;
  margin-bottom: 20px;
}

.page-live__cta-register-section .page-live__section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

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

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

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

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }

  .page-live__hero-section {
    padding: 60px 0;
  }

  .page-live__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-live__button {
    width: 80%;
    max-width: 300px;
  }

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

  .page-live__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-live__game-grid, .page-live__features-grid, .page-live__details-grid {
    grid-template-columns: 1fr;
  }

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

  /* Ensure all images within .page-live are responsive and don't overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }

  .page-live__promo-cta-section .page-live__container {
    flex-direction: column;
  }

  .page-live__promo-image {
    width: 100%;
    height: auto;
  }
}

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

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

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

  .page-live__button {
    padding: 12px 25px;
    font-size: 1em;
  }

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