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

.page-live__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #000000; /* Main brand color for hero background */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.page-live__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 60px 20px 40px;
}

.page-live__hero-title {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  line-height: 1.2;
}

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

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

.page-live__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-live__btn--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Main brand color for text */
  border: 2px solid #FCBC45;
}

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

.page-live__btn--secondary {
  background-color: transparent;
  color: #FFFFFF; /* Auxiliary color */
  border: 2px solid #FFFFFF;
}

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

.page-live__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  position: relative;
  z-index: 1;
  margin-top: -80px; /* Overlap with content for visual flow */
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

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

.page-live__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

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

.page-live__about-live-gaming,
.page-live__game-selection,
.page-live__gcash-guide,
.page-live__why-choose-us,
.page-live__responsible-gaming {
  padding: 60px 0;
}

.page-live__about-live-gaming {
  background-color: #FFFFFF;
}

.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: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-live__feature-icon {
  width: 200px; /* Min size */
  height: 150px; /* Min size */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-live__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
}

.page-live__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
}

.page-live__game-selection {
  background-color: #f0f0f0;
}

.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: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  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: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-live__game-title {
  font-size: 1.6em;
  font-weight: 600;
  color: #000000;
  margin: 20px 15px 10px;
}

.page-live__game-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
  padding: 0 15px 20px;
}

.page-live__btn--game {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  padding: 10px 25px;
  font-size: 0.95em;
  margin-bottom: 20px;
}

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

.page-live__gcash-guide {
  background-color: #FFFFFF;
}

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

.page-live__guide-step {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-live__guide-icon {
  width: 200px; /* Min size */
  height: 150px; /* Min size */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-live__step-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
}

.page-live__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
}

.page-live__btn--step {
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  padding: 10px 25px;
  font-size: 0.95em;
}

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

.page-live__additional-info {
  margin-top: 50px;
  text-align: center;
  font-size: 1em;
  color: #555555;
}

.page-live__text-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-live__text-link:hover {
  color: #e0a53b;
  text-decoration: underline;
}

.page-live__why-choose-us {
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__why-choose-us .page-live__section-title {
  color: #FCBC45;
}

.page-live__why-choose-us .page-live__section-description {
  color: #f0f0f0;
}

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

.page-live__choice-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

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

.page-live__choice-title {
  font-size: 1.6em;
  font-weight: 600;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-live__choice-text {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-live__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.page-live__cta-text {
  font-size: 1.3em;
  font-weight: 500;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-live__responsible-gaming {
  background-color: #f0f0f0;
  text-align: center;
}

.page-live__btn--ghost {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
  padding: 12px 25px;
  margin-top: 30px;
}

.page-live__btn--ghost:hover {
  background-color: #000000;
  color: #FFFFFF;
}

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

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

@media (max-width: 768px) {
  .page-live__hero-section {
    flex-direction: column;
    padding-top: var(--header-offset, 120px);
    padding-bottom: 0;
  }

  .page-live__hero-content {
    padding: 40px 15px 30px;
  }

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

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

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

  .page-live__btn {
    width: 100%;
    max-width: 300px;
  }

  .page-live__hero-image-wrapper {
    margin-top: -50px;
  }

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

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

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

  .page-live__features-grid,
  .page-live__game-grid,
  .page-live__guide-steps,
  .page-live__choice-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-live__feature-icon,
  .page-live__guide-icon {
    width: 150px; /* Ensure min 200px display size is not violated by CSS */
    height: 112px; /* Adjusted proportionally */
    max-width: 100%; /* Important for mobile overflow */
    height: auto; /* Important for mobile overflow */
  }

  .page-live__game-image {
    height: 180px;
    max-width: 100%; /* Important for mobile overflow */
    height: auto; /* Important for mobile overflow */
  }

  /* Ensure all images within .page-live are responsive on mobile */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}