.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 content is below fixed header */
}

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

.page-live__hero-section {
  background-color: #000000; /* Main background for hero */
  color: #FFFFFF;
  padding: 80px 20px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-live__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-live__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Golden yellow for main title */
}

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

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

.page-live__btn {
  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, color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-live__btn--register {
  background-color: #FFFFFF; /* White for register */
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-live__btn--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-live__btn--login {
  background-color: #FCBC45; /* Golden yellow for login */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-live__btn--login:hover {
  background-color: #e0a538;
  transform: translateY(-2px);
}

.page-live__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  z-index: 0; /* Ensure image is behind text if needed */
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-live__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

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

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

.page-live__text-content {
  font-size: 1.05em;
  color: #444444;
  margin-bottom: 20px;
  text-align: justify;
}

.page-live__about-section, .page-live__games-section, .page-live__promotions-section, .page-live__security-section, .page-live__mobile-section, .page-live__cta-section {
  padding: 60px 0;
}

.page-live__about-section {
  background-color: #f9f9f9;
}

.page-live__games-section {
  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: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.page-live__btn--play {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 10px 20px;
  font-size: 1em;
}

.page-live__btn--play:hover {
  background-color: #e0a538;
}

.page-live__promotions-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-live__promotions-section .page-live__section-title {
  color: #FCBC45;
}

.page-live__promotions-section .page-live__section-description {
  color: #e0e0e0;
}

.page-live__promo-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-live__btn--view-all {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
  margin-top: 20px;
}

.page-live__btn--view-all:hover {
  background-color: #f0f0f0;
}

.page-live__security-section {
  background-color: #f9f9f9;
  text-align: center;
}

.page-live__security-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-live__mobile-section {
  background-color: #FFFFFF;
  text-align: center;
}

.page-live__mobile-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-live__btn--download {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 20px;
}

.page-live__btn--download:hover {
  background-color: #e0a538;
}

.page-live__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-live__cta-section .page-live__section-title {
  color: #FFFFFF;
}

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

.page-live__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-live__btn--support {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-live__btn--support:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-live__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-live__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-live__game-grid {
    grid-template-columns: 1fr;
  }
  .page-live__game-image {
    height: 200px;
  }
  .page-live__promo-image, .page-live__security-image, .page-live__mobile-image {
    max-width: 100%;
    margin: 30px auto;
  }
  .page-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  /* Mobile specific image sizing to prevent overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__hero-section {
    padding: 60px 15px 30px;
  }
  .page-live__about-section, .page-live__games-section, .page-live__promotions-section, .page-live__security-section, .page-live__mobile-section, .page-live__cta-section {
    padding: 40px 0;
  }
  .page-live__container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 1.5em;
  }
  .page-live__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
}