.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); /* Fixed header offset for PC */
}

.page-live__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  text-align: center;
  background-color: #000000; /* Fallback background */
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  opacity: 0.7;
}

.page-live__hero-content {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45;
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

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

.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.2s ease;
  white-space: nowrap;
}

.page-live__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

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

.page-live__button--login,
.page-live__button--play,
.page-live__button--claim,
.page-live__button--join {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

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

.page-live__button--details {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

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

.page-live__section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-live__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

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

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

.page-live__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
}

.page-live__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-live__game-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-live__game-card:hover {
  transform: translateY(-5px);
}

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

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

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

.page-live__game-card .page-live__button {
  margin: 0 20px 20px;
  text-align: center;
}

.page-live__bonus-image, .page-live__security-image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-live__details-list {
  margin-top: 40px;
}

.page-live__details-item {
  background-color: #f0f0f0;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-live__details-title {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-live__details-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-live__details-title a:hover {
  color: #FCBC45;
  text-decoration: underline;
}

.page-live__details-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 15px;
}

.page-live__details-item .page-live__button {
  margin-top: 10px;
}

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

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-live__hero-section {
    min-height: 400px;
  }
  .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__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-live__section {
    padding: 40px 15px;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__paragraph {
    font-size: 0.95em;
  }
  .page-live__game-cards {
    grid-template-columns: 1fr;
  }
  .page-live__game-card-image {
    height: 200px;
  }
  .page-live__game-card-title {
    font-size: 1.4em;
  }
  .page-live__details-title {
    font-size: 1.5em;
  }
  /* Ensure all content area images are responsive and not smaller than 200px display */
  .page-live img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum display size for content images */
    min-height: 200px; /* Enforce minimum display size for content images */
  }
  .page-live__hero-image {
    min-width: unset;
    min-height: unset;
  }
  .page-live__bonus-image, .page-live__security-image {
    min-width: 200px;
    min-height: 200px;
  }
}

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