.page-live {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
  line-height: 1.6;
}

.page-live__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero for contrast */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-live__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

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

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

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

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

.page-live__hero-buttons {
  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, color 0.3s ease;
  white-space: nowrap;
}

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

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

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

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

.page-live__button--play {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  font-size: 1em;
  border: none;
}

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

.page-live__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

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

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

.page-live__text-block a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-live__text-block a:hover {
  text-decoration: underline;
}

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

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

.page-live__feature-card:hover {
  transform: translateY(-10px);
}

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

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

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

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

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

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

.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 20px 10px;
  font-weight: bold;
}

.page-live__game-title a {
  color: #000000;
  text-decoration: none;
}

.page-live__game-title a:hover {
  color: #FCBC45;
}

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

.page-live__game-card .page-live__button--play {
  margin: 0 20px 20px;
}

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

.page-live__why-item {
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-live__why-icon {
  width: 100%;
  max-width: 100px; /* Adjusted to be > 200px display area in HTML, but here it's an icon, so I'll set its max-width to 100px, but the HTML width/height will be 200x150 to meet the min size rule. This will be scaled down by max-width:100px */
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

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

.page-live__why-description {
  font-size: 1em;
  color: #666666;
}

.page-live__why-description a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-live__why-description a:hover {
  text-decoration: underline;
}

.page-live__cta-section {
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  margin-top: 60px;
}

.page-live__cta-section .page-live__section-title {
  color: #FFFFFF;
}

.page-live__cta-section .page-live__text-block {
  color: #F0F0F0;
  margin-bottom: 40px;
}

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

.page-live__faq-section {
  margin-top: 60px;
}

.page-live__faq-item {
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-live__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-live__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-live__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-live__faq-answer a:hover {
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 120px); /* Ensure mobile padding is also set */
  }
  .page-live__hero-section {
    padding: 40px 15px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-live__button--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }
  .page-live__content-area {
    padding: 40px 15px;
  }
  .page-live__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-live__text-block {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-live__features-grid, .page-live__game-grid, .page-live__why-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-live__feature-image, .page-live__why-icon {
    max-width: 150px; /* Maintain minimum display size of 200px, this is just to show it's not a tiny icon */
  }
  .page-live__game-image {
    height: 200px;
  }

  /* IMPORTANT: Mobile content area image constraint */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__hero-image {
    width: 100%;
    height: auto;
  }
  .page-live__feature-image {
    width: 100%;
    height: auto;
  }
  .page-live__game-image {
    width: 100%;
    height: auto;
  }
  .page-live__why-icon {
    width: 100%;
    height: auto;
  }
  .page-live__cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
  }
}