.page-live {
  color: #ffffff; /* Light text on dark body background */
  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__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1A202C; /* Auxiliary dark background */
  padding: 60px 0;
  text-align: center;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim image for text readability, not changing color */
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  z-index: 0;
}

.page-live__hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Adjust as needed */
  text-align: center;
}

.page-live__hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(26, 32, 44, 0.7); /* Semi-transparent dark background for text */
  border-radius: 8px;
}

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

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

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

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

.page-live__button--primary {
  background-color: #FFD700; /* Gold primary color */
  color: #1A202C; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-live__button--primary:hover {
  background-color: #e6c200;
  color: #0d121b;
}

.page-live__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-live__button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C; /* Dark text on gold */
}

.page-live__section {
  padding: 60px 0;
  background-color: #1A202C; /* Auxiliary dark background */
  margin-bottom: 20px;
}

.page-live__section:nth-of-type(even) {
  background-color: #2c3e50; /* Slightly lighter dark background for contrast */
}

.page-live__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold primary color */
  text-align: center;
  margin-bottom: 20px;
}

.page-live__section-intro {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-live__feature-grid, .page-live__game-list, .page-live__bonus-grid, .page-live__steps-grid, .page-live__security-features {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.page-live__feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-live__feature-card, .page-live__game-item, .page-live__bonus-card, .page-live__step-card, .page-live__security-item, .page-live__detail-card {
  background-color: #2c3e50; /* Dark background for cards */
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__feature-image, .page-live__game-image, .page-live__security-icon, .page-live__mobile-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too wide in cards */
  min-width: 200px; /* Min size for content images */
  min-height: 200px; /* Min size for content images */
  border-radius: 6px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-live__feature-title, .page-live__game-title, .page-live__bonus-title, .page-live__step-title, .page-live__security-title, .page-live__detail-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-live__detail-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-live__detail-title a:hover {
  text-decoration: underline;
}

.page-live__feature-description, .page-live__game-description, .page-live__bonus-description, .page-live__step-description, .page-live__security-description, .page-live__detail-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  flex-grow: 1;
}

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

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

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

.page-live__detail-card {
  text-align: left;
}

.page-live__button--text {
  background: none;
  border: none;
  color: #FFD700; /* Gold text */
  padding: 10px 0;
  margin-top: 15px;
  font-size: 1em;
  text-decoration: underline;
}

.page-live__button--text:hover {
  color: #e6c200;
}

.page-live__steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-live__step-icon {
  background-color: #FFD700; /* Gold background */
  color: #1A202C; /* Dark text */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-live__security-features {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

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

.page-live__mobile-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  min-width: 200px; /* Min size */
  min-height: 200px; /* Min size */
}

.page-live__mobile-text {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

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

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

.page-live__button--lg {
  padding: 18px 40px;
  font-size: 1.3em;
}

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

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 40px 0;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__section {
    padding: 40px 0;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-intro {
    font-size: 0.95em;
  }
  .page-live__feature-grid, .page-live__game-list, .page-live__bonus-grid, .page-live__steps-grid, .page-live__security-features, .page-live__detail-list {
    grid-template-columns: 1fr;
  }
  .page-live__feature-card, .page-live__game-item, .page-live__bonus-card, .page-live__step-card, .page-live__security-item, .page-live__detail-card {
    padding: 20px;
  }
  .page-live__feature-image, .page-live__game-image, .page-live__security-icon, .page-live__mobile-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-live__mobile-content {
    flex-direction: column;
    text-align: center;
  }
  .page-live__mobile-text {
    max-width: 100%;
    text-align: center;
  }
  .page-live__mobile-subtitle {
    font-size: 1.8em;
  }
  /* Prevent content overflow for all images in content area */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.9em;
  }
  .page-live__button {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-live__section-title {
    font-size: 1.6em;
  }
  .page-live__section-intro {
    font-size: 0.85em;
  }
  .page-live__feature-title, .page-live__game-title, .page-live__bonus-title, .page-live__step-title, .page-live__security-title, .page-live__detail-title {
    font-size: 1.4em;
  }
  .page-live__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
}