.page-live {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensure spacing below fixed header */
}

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

/* Hero Section */
.page-live__hero-section {
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #000000; /* Dark background for hero content */
  color: #FFFFFF; /* Light text for dark hero background */
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.page-live__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-live__button--register {
  background-color: #FCBC45; /* Gold for registration */
  color: #000000; /* Dark text for gold button */
}

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

.page-live__button--login {
  background-color: #FFFFFF; /* White for login */
  color: #000000; /* Dark text for white button */
  border: 2px solid #FCBC45;
}

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

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

.page-live__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-live__text-content {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

.page-live__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 500px; /* Ensure cards are not too small */
}

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

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

.page-live__game-card-title {
  font-size: 1.8em;
  font-weight: 600;
  margin: 25px 15px 15px;
  color: #000000;
}

.page-live__game-card-text {
  font-size: 0.95em;
  line-height: 1.6;
  padding: 0 20px;
  flex-grow: 1;
}

.page-live__button--play {
  background-color: #FCBC45;
  color: #000000;
  margin: 25px auto;
  padding: 12px 25px;
  font-size: 1em;
}

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

/* Features Section */
.page-live__features {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-live__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-live__feature-item {
  background-color: #F0F0F0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-live__feature-item:hover {
  transform: translateY(-5px);
}

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

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

/* Bonuses and Promotions */
.page-live__bonuses-promotions {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__bonuses-promotions .page-live__section-title,
.page-live__bonuses-promotions .page-live__section-description {
  color: #FFFFFF;
}

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

.page-live__bonus-image {
  width: 50%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-live__bonus-details {
  width: 50%;
}

.page-live__bonus-subtitle {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FCBC45;
}

.page-live__bonus-text {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 25px;
}

.page-live__button--claim {
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 35px;
  font-size: 1.1em;
}

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

/* Get Started Section */
.page-live__get-started {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-live__steps-list {
  list-style: none;
  padding: 0;
  margin: 50px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-live__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  counter-increment: step-counter;
  position: relative;
  text-align: center;
}

.page-live__step-item::before {
  content: counter(step-counter);
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: 700;
  margin: -55px auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

/* FAQ Section */
.page-live__faq {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-live__accordion {
  max-width: 900px;
  margin: 50px auto 0;
}

.page-live__accordion-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-live__accordion-header {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  font-size: 1.2em;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-live__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-live__accordion-header.active {
  background-color: #e0a53b;
}

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

.page-live__accordion-content {
  padding: 0 25px;
  background-color: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-live__accordion-content p {
  padding: 15px 0;
  line-height: 1.7;
  color: #444444;
}

/* Final Call to Action */
.page-live__cta-final {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-live__cta-final .page-live__section-title,
.page-live__cta-final .page-live__section-description {
  color: #FFFFFF;
}

.page-live__cta-final-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-live__button--explore {
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 35px;
  font-size: 1.1em;
}

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

.page-live__button--download {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 15px 35px;
  font-size: 1.1em;
}

.page-live__button--download:hover {
  background-color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3em;
  }
  .page-live__section-title {
    font-size: 2.2em;
  }
  .page-live__bonus-content {
    flex-direction: column;
    text-align: center;
  }
  .page-live__bonus-image,
  .page-live__bonus-details {
    width: 100%;
  }
  .page-live__bonus-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 40px 15px 30px;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .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;
    margin: 0 auto;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-live__game-grid,
  .page-live__feature-list,
  .page-live__steps-list {
    grid-template-columns: 1fr;
  }
  .page-live__game-card-image {
    height: 200px; /* Adjust height for smaller screens */
  }
  .page-live__bonus-subtitle {
    font-size: 1.6em;
  }
  .page-live__cta-buttons,
  .page-live__cta-final-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  /* Ensure images in content area are responsive and not too small */
  .page-live img {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px !important; /* Ensure minimum size */
    min-height: 200px !important;
  }
  .page-live__hero-image {
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-live__game-card-image {
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-live__bonus-image {
    min-width: 200px !important;
    min-height: 200px !important;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 0.95em;
  }
  .page-live__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__bonus-subtitle {
    font-size: 1.4em;
  }
  .page-live__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }
}