.page-live {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main color, chosen for contrast on dark background */
  background-color: #0A0A0A; /* Background color */
  line-height: 1.6;
}

.page-live__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-live__section {
  padding: 60px 0;
  text-align: center;
}

/* Header spacing for fixed header */
.page-live__hero-section {
  padding-top: var(--header-offset, 120px); /* Desktop default */
  background: linear-gradient(135deg, #F2C14E, #FFD36B); /* Golden gradient for hero */
  position: relative;
  overflow: hidden;
}

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

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

.page-live__hero-content-wrapper {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  color: #000000; /* Dark text on light gradient background for hero content */
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.page-live__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000000; /* Ensuring high contrast */
}

.page-live__hero-description {
  font-size: 1.25rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333; /* Ensuring high contrast */
}

.page-live__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2C14E; /* Main brand color for titles */
}

.page-live__section-description {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #FFF6D6; /* Text Main color */
}

/* Buttons */
.page-live__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-live__btn-primary,
.page-live__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-live__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #000000; /* Dark text on light gradient for contrast */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-live__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-live__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Main brand color */
  border: 2px solid #F2C14E; /* Border color */
  box-shadow: 0 2px 10px rgba(242, 193, 78, 0.2);
}

.page-live__btn-secondary:hover {
  background-color: #F2C14E;
  color: #000000; /* Dark text on brand color for contrast */
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-live__btn-small {
  padding: 10px 20px;
  font-size: 1rem;
  min-width: auto;
}

/* Game Categories */
.page-live__live-games-overview {
  background-color: #0A0A0A; /* Background color */
}

.page-live__game-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-live__category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #111111; /* Card BG color */
  border-radius: 12px;
  padding: 20px;
  width: 150px;
  min-height: 150px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border: 1px solid #3A2A12; /* Border color */
}

.page-live__category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.3);
}

.page-live__category-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px #FFD36B); /* Glow color */
}

.page-live__category-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFF6D6; /* Text Main color */
}

/* Why Choose Section */
.page-live__why-choose {
  background-color: #111111; /* Card BG color for dark section */
  color: #FFF6D6;
}

.page-live__why-choose .page-live__section-title {
  color: #F2C14E; /* Brand color for title */
}

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

.page-live__feature-item {
  background-color: #0A0A0A; /* Background color */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  text-align: left;
  border: 1px solid #3A2A12; /* Border color */
  transition: transform 0.3s ease;
}

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

.page-live__feature-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-live__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2C14E; /* Brand color */
}

.page-live__feature-description {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main color */
}

/* Popular Games Grid */
.page-live__popular-games-grid {
  background-color: #0A0A0A; /* Background color */
}

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

.page-live__game-card {
  background-color: #111111; /* Card BG color */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  overflow: hidden;
  text-align: left;
  border: 1px solid #3A2A12; /* Border color */
  transition: transform 0.3s ease;
}

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

.page-live__game-card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-live__game-card-content {
  padding: 20px;
}

.page-live__game-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2C14E; /* Brand color */
}

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

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

.page-live__game-card-description {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main color */
}

/* Promotions CTA */
.page-live__promotions-cta {
  background-color: #FFD36B; /* Auxiliary color for light background */
  color: #000000; /* Dark text for contrast */
  padding: 80px 0;
}

.page-live__promotions-cta .page-live__section-title {
  color: #000000; /* Dark text for contrast */
}

.page-live__promotions-cta .page-live__section-description {
  color: #333333; /* Dark text for contrast */
}

/* Mobile App Section */
.page-live__mobile-app-section {
  background-color: #111111; /* Card BG color for dark section */
  color: #FFF6D6;
}

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

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

.page-live__mobile-app-section .page-live__section-title {
  color: #F2C14E;
}

.page-live__app-download-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

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

.page-live__mobile-app-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* Payment Methods */
.page-live__payment-methods {
  background-color: #0A0A0A; /* Background color */
}

.page-live__payment-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-live__payment-logo {
  width: 167px; /* Fixed width */
  height: 127px; /* Fixed height */
  object-fit: contain;
  filter: grayscale(100%) brightness(150%) drop-shadow(0 0 5px #FFD36B); /* Golden glow effect */
  transition: filter 0.3s ease;
}

.page-live__payment-logo:hover {
  filter: grayscale(0%) brightness(100%) drop-shadow(0 0 10px #FFD36B); /* Color on hover */
}

/* FAQ Section */
.page-live__faq-section {
  background-color: #111111; /* Card BG color */
  color: #FFF6D6;
}

.page-live__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-live__faq-item {
  background-color: #0A0A0A; /* Background color */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-live__faq-item.active {
  background-color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2C14E; /* Brand color */
}

.page-live__faq-question:hover {
  background-color: #1a1a1a;
}

.page-live__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FFD36B; /* Glow color */
  transition: transform 0.3s ease;
}

.page-live__faq-item.active .page-live__faq-toggle {
  transform: rotate(45deg); /* Plus to X effect */
}

.page-live__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  text-align: left;
  color: #FFF6D6; /* Text Main color */
}

.page-live__faq-item.active .page-live__faq-answer {
  max-height: 1000px !important;
  padding: 15px 20px;
}

.page-live__faq-answer p {
  margin: 0;
  padding-bottom: 5px;
}

/* About superph Section */
.page-live__about-superph {
  background-color: #0A0A0A; /* Background color */
  text-align: left;
}

.page-live__about-superph .page-live__section-title {
  text-align: center;
  color: #F2C14E;
}

.page-live__text-block {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #FFF6D6; /* Text Main color */
}

/* Final CTA Section */
.page-live__final-cta {
  background-color: #111111; /* Card BG color for dark section */
  padding: 80px 0;
  color: #FFF6D6;
}

.page-live__final-cta .page-live__section-title {
  color: #F2C14E;
}

/* General image responsive styles */
.page-live img:not(.page-live__category-icon):not(.page-live__payment-logo):not(.page-live__hero-image) {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsive adjustments */
@media (max-width: 992px) {
  .page-live__hero-content-wrapper {
    padding: 60px 0;
  }
  .page-live__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-live__hero-description {
    font-size: 1.1rem;
  }
  .page-live__section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
  .page-live__mobile-app-layout {
    flex-direction: column;
    text-align: center;
  }
  .page-live__mobile-app-content {
    order: 2;
  }
  .page-live__mobile-app-image-wrapper {
    order: 1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-live__hero-content-wrapper {
    padding: 40px 0;
  }
  .page-live__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__btn-primary,
  .page-live__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-live__app-download-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__game-categories,
  .page-live__features-grid,
  .page-live__games-cards-grid,
  .page-live__payment-logos {
    gap: 20px;
  }
  .page-live__category-item {
    width: 120px;
    min-height: 120px;
    padding: 15px;
  }
  .page-live__category-icon {
    margin-bottom: 10px;
  }
  .page-live__feature-image,
  .page-live__game-card-image {
    height: 180px;
  }
  .page-live img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-live__section,
  .page-live__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-live__faq-item.active .page-live__faq-answer {
    padding: 10px 15px;
  }
  .page-live__faq-question {
    padding: 15px;
  }
}