/* style/live.css */
.page-live {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Ensures consistency with body background if shared.css doesn't set it directly */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.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 */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

.page-live__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login color for emphasis */
  line-height: 1.1;
  font-weight: bold;
}

.page-live__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.page-live__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for button */
  color: #000000; /* Dark text on light button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
  border: 2px solid #FCBC45;
}

.page-live__hero-button:hover {
  background-color: #FCBC45;
  filter: brightness(1.1);
}

.page-live__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-live__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
}

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

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

.page-live__games-showcase {
  padding: 80px 20px;
  background-color: #f5f5f5;
}

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

.page-live__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-live__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  border-bottom: 3px solid #FCBC45;
}

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

.page-live__game-description {
  font-size: 1em;
  color: #555555;
  padding: 0 20px;
  margin-bottom: 25px;
  height: 120px;
  overflow: hidden;
}

.page-live__game-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid #000000;
}

.page-live__game-button:hover {
  background-color: #FCBC45;
  border-color: #FCBC45;
  color: #000000;
}

.page-live__advantage-section {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.page-live__advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-live__advantage-item {
  text-align: center;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-live__advantage-image {
  width: 100%;
  height: 200px; /* Minimum 200px height */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

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

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

.page-live__getting-started-section {
  padding: 80px 20px;
  background-color: #000000;
  color: #FFFFFF;
}

.page-live__getting-started-section .page-live__section-title {
  color: #FCBC45;
}

.page-live__getting-started-section .page-live__section-intro {
  color: #E0E0E0;
}

.page-live__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-live__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-live__step-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid #FCBC45;
}

.page-live__step-button:hover {
  background-color: #FCBC45;
  filter: brightness(1.1);
}

.page-live__cta-section {
  background-color: #FCBC45;
  color: #000000;
  padding: 70px 20px;
  text-align: center;
}

.page-live__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #000000;
  font-weight: bold;
}

.page-live__cta-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #333333;
}

.page-live__cta-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4em;
  transition: background-color 0.3s ease;
  border: 2px solid #000000;
}

.page-live__cta-button:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-live__responsible-gaming-section {
  padding: 80px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.page-live__responsible-gaming-link {
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
}

.page-live__responsible-gaming-link:hover {
  color: #FCBC45;
}

.page-live__faq-section {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.page-live__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-live__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
}

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

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

.page-live__faq-link {
  color: #000000;
  text-decoration: underline;
}

.page-live__faq-link:hover {
  color: #FCBC45;
}

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

@media (max-width: 768px) {
  .page-live {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header height */
  }
  .page-live__hero-section {
    padding: 40px 15px;
  }
  .page-live__hero-title {
    font-size: 2.5em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__hero-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-live__games-showcase, .page-live__advantage-section, .page-live__getting-started-section, .page-live__cta-section, .page-live__responsible-gaming-section, .page-live__faq-section {
    padding: 50px 15px;
  }
  .page-live__game-grid, .page-live__advantage-grid, .page-live__steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-live__game-image, .page-live__advantage-image {
    height: auto; /* Allow height to adjust */
    max-width: 100%;
  }
  .page-live__game-description {
    height: auto;
  }
  .page-live__cta-title {
    font-size: 2em;
  }
  .page-live__cta-description {
    font-size: 1.1em;
  }
  .page-live__cta-button {
    padding: 15px 30px;
    font-size: 1.2em;
  }
  /* Ensure all content images within .page-live are responsive and not smaller than 200px */
  .page-live img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Minimum width for content images */
    min-height: 200px; /* Minimum height for content images */
    object-fit: cover;
  }
  .page-live__game-image, .page-live__advantage-image {
    min-width: 200px;
    min-height: 200px;
  }
  .page-live__game-image {
    height: 200px; /* Specific height for card images on mobile if needed for consistency */
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2em;
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__cta-title {
    font-size: 1.8em;
  }
}