/* style/live.css */
.page-live {
  color: #f0f0f0; /* Light text for dark background elements, adjusted for readability */
  background-color: #0A2239; /* Dark blue background for the entire page content area */
}

.page-live__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px; /* Minimum height for hero section */
  overflow: hidden;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image slightly for text readability, no color change */
  z-index: 1;
}

.page-live__hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  padding: 40px 20px;
  color: #ffffff;
}

.page-live__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-live__hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: 1.3rem;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #f0f0f0;
}

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

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

.page-live__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark blue text */
  border: 2px solid #FFD700;
}

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

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

.page-live__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-2px);
}

.page-live__button--small {
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 6px;
}

.page-live__section {
  padding: 80px 20px;
  text-align: center;
}

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

.page-live__heading {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for section headings */
}

.page-live__subheading {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 60px;
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__why-choose {
  background-color: #0A2239;
}

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

.page-live__feature-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for card background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-live__feature-image {
  width: 100%; /* Ensure images take full width of card */
  max-width: 400px; /* Max width for images */
  height: auto;
  min-height: 200px; /* Minimum height */
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-live__feature-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-live__feature-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-live__game-showcase {
  background-color: #0d2a45; /* Slightly lighter dark blue */
}

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

.page-live__game-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__game-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
}

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

.page-live__game-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-live__game-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
  flex-grow: 1; /* Allows description to take available space */
  margin-bottom: 20px;
}

.page-live__bonuses {
  background-color: #0A2239;
}

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

.page-live__bonus-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-live__bonus-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
}

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

.page-live__bonus-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-live__bonus-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-live__vip {
  background-color: #0d2a45;
}

.page-live__vip-benefits {
  list-style: none;
  padding: 0;
  margin: 40px auto 60px auto;
  max-width: 700px;
  text-align: left;
}

.page-live__vip-item {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-live__vip-item::before {
  content: '★'; /* Star icon */
  color: #FFD700;
  position: absolute;
  left: 0;
  font-size: 1.3rem;
  top: 0;
}

.page-live__mobile-app {
  background-color: #0A2239;
}

.page-live__mobile-app-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-live__mobile-app-text {
  flex: 1;
}

.page-live__mobile-app-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-live__mobile-app-image {
  width: 100%;
  max-width: 500px; /* Max width for image */
  height: auto;
  min-height: 200px; /* Minimum height */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-live__app-features {
  list-style: none;
  padding: 0;
  margin: 30px 0 40px 0;
}

.page-live__app-feature-item {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-live__app-feature-item::before {
  content: '✓'; /* Checkmark icon */
  color: #FFD700;
  position: absolute;
  left: 0;
  font-size: 1.3rem;
  top: 0;
}

.page-live__responsible-gaming {
  background-color: #0d2a45;
}

.page-live__faq {
  background-color: #0A2239;
}

.page-live__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-live__faq-question {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-live__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-live__cta-final {
  background-color: #FFD700; /* Gold background for final CTA */
  color: #0A2239; /* Dark blue text */
  padding: 100px 20px;
}

.page-live__cta-final .page-live__heading {
  color: #0A2239;
}

.page-live__cta-final .page-live__subheading {
  color: #333333;
}

.page-live__cta-final .page-live__button--primary {
  background-color: #0A2239;
  color: #FFD700;
  border-color: #0A2239;
}

.page-live__cta-final .page-live__button--primary:hover {
  background-color: #1a3a5a;
  border-color: #1a3a5a;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 3rem;
  }
  .page-live__heading {
    font-size: 2.4rem;
  }
  .page-live__mobile-app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-live__mobile-app-text, .page-live__mobile-app-image-wrapper {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-live__hero-title {
    font-size: 2.5rem;
  }
  .page-live__hero-description {
    font-size: 1.1rem;
  }
  .page-live__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
    max-width: 300px;
  }
  .page-live__section {
    padding: 60px 15px;
  }
  .page-live__heading {
    font-size: 2rem;
  }
  .page-live__subheading {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .page-live__features-grid, .page-live__game-cards-grid, .page-live__bonus-grid {
    grid-template-columns: 1fr;
  }
  .page-live__feature-title, .page-live__game-title, .page-live__bonus-title {
    font-size: 1.5rem;
  }
  .page-live__faq-question {
    font-size: 1.3rem;
  }
  /* Mobile content area images must not overflow */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__mobile-app-image {
    max-width: 80%; /* Adjust for better fit on smaller screens */
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 2rem;
  }
  .page-live__hero-description {
    font-size: 1rem;
  }
  .page-live__heading {
    font-size: 1.8rem;
  }
  .page-live__feature-title, .page-live__game-title, .page-live__bonus-title {
    font-size: 1.3rem;
  }
  .page-live__faq-question {
    font-size: 1.1rem;
  }
}