/* 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 content is not hidden by fixed header */
}

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

.page-live__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;
  font-weight: bold;
}

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

/* Hero Section */
.page-live__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  overflow: hidden;
  padding: 60px 20px;
  background-color: #000000;
  color: #ffffff;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.5; /* Darken the image for text readability */
}

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

.page-live__hero-title {
  font-size: 4.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.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;
}

.page-live__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

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

.page-live__button--login {
  background-color: #FCBC45;
  color: #000000;
}

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

/* Why Choose Section */
.page-live__about-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

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

.page-live__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

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

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

/* Game Selection Section */
.page-live__game-selection-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-live__game-card {
  background-color: #f0f0f0;
  border-radius: 10px;
  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(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-live__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

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

.page-live__game-description {
  font-size: 1em;
  color: #555555;
  padding: 0 15px 20px 15px;
}

.page-live__button--play, .page-live__button--explore {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.page-live__button--play:hover, .page-live__button--explore:hover {
  background-color: #e0a53b;
}

/* How to Start Section */
.page-live__how-to-start-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-live__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

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

.page-live__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-live__button--step {
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
}

.page-live__button--step:hover {
  background-color: #333333;
}

.page-live__how-to-image {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin: 50px auto 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Bonuses Section */
.page-live__bonuses-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-live__bonus-card {
  background-color: #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

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

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

.page-live__bonus-description {
  font-size: 1em;
  color: #555555;
}

.page-live__cta-bonuses {
  text-align: center;
  margin-top: 50px;
}

.page-live__button--view-promo {
  background-color: #FCBC45;
  color: #000000;
}

.page-live__button--view-promo:hover {
  background-color: #e0a53b;
}

/* Security Section */
.page-live__security-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-live__security-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-live__security-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-live__security-description {
  font-size: 1em;
  color: #555555;
}

.page-live__cta-security {
  text-align: center;
  margin-top: 50px;
}

.page-live__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__button--learn-more:hover {
  background-color: #333333;
}

/* Support Section */
.page-live__support-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-live__support-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-live__support-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-live__support-details {
  flex: 2;
  min-width: 300px;
}

.page-live__support-subtitle {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
}

.page-live__support-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-live__support-item {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-live__support-item::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #FCBC45;
}

.page-live__button--contact {
  background-color: #FCBC45;
  color: #000000;
}

.page-live__button--contact:hover {
  background-color: #e0a53b;
}

/* Final CTA Section */
.page-live__cta-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  overflow: hidden;
  padding: 80px 20px;
  background-color: #000000;
  color: #ffffff;
}

.page-live__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4; /* Darken the image for text readability */
}

.page-live__cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.page-live__button--register-lg {
  background-color: #FFFFFF;
  color: #000000;
  padding: 18px 35px;
  font-size: 1.2em;
}

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

.page-live__button--login-lg {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-live__button--login-lg:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

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

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

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

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

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

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

  .page-live__button {
    width: 100%;
    max-width: 280px;
  }

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

  .page-live__section-intro {
    font-size: 1em;
  }

  .page-live__features-grid,
  .page-live__games-grid,
  .page-live__steps-grid,
  .page-live__bonus-grid,
  .page-live__security-grid {
    grid-template-columns: 1fr;
  }

  .page-live__support-content {
    flex-direction: column;
  }

  .page-live__support-image {
    min-width: unset;
  }

  .page-live__support-details {
    min-width: unset;
  }

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

  /* Ensure all content area images are responsive and not too small */
  .page-live img {
    max-width: 100%;
    height: auto;
  }

  .page-live__feature-image,
  .page-live__game-image,
  .page-live__how-to-image,
  .page-live__bonus-image,
  .page-live__security-icon,
  .page-live__support-image,
  .page-live__cta-image {
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
    width: 100%; /* Override fixed widths for responsiveness */
    height: auto;
  }
}

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

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

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