/* style/live.css */
.page-live {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Main text color for dark background */
  background-color: #0A0A0A; /* Page background color */
}

.page-live__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 10px; /* Small padding to avoid header overlap, body handles main offset */
  margin-bottom: 60px;
}

.page-live__hero-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
}

.page-live__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-live__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 40px auto 0;
  text-align: center;
  padding: 0 20px;
}

.page-live__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFD36B; /* Glow color for main title */
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 3.8rem); /* Responsive font size */
}

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

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

.page-live__btn-primary,
.page-live__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-live__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for light button */
  border: none;
}

.page-live__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-live__btn-secondary {
  background: #111111; /* Card BG color */
  color: #FFD36B; /* Glow color for text */
  border: 2px solid #3A2A12; /* Border color */
}

.page-live__btn-secondary:hover {
  background: #222222;
  color: #FFF6D6;
  transform: translateY(-2px);
}

.page-live__section {
  padding: 60px 0;
  margin-bottom: 40px;
}

.page-live__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #FFD36B;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.3);
}

.page-live__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #FFF6D6;
}

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

.page-live__dark-section {
  background-color: #111111; /* Card BG for dark sections */
}

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

.page-live__game-card {
  background-color: #111111;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #3A2A12;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
}

.page-live__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 211, 107, 0.2);
}

.page-live__game-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px rgba(255, 211, 107, 0.5));
}

.page-live__card-title {
  font-size: 1.5em;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-live__card-text {
  font-size: 0.95em;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-live__card-link {
  color: #FFD36B;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #F2C14E;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-live__card-link:hover {
  color: #FFF6D6;
  border-color: #FFF6D6;
}

.page-live__game-showcase-image,
.page-live__security-image,
.page-live__promo-image,
.page-live__mobile-app-image,
.page-live__payment-graphic,
.page-live__responsible-gaming-graphic,
.page-live__support-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 40px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid #3A2A12;
}

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

.page-live__feature-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for feature items */
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #3A2A12;
  text-align: center;
  color: #FFF6D6;
}

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

.page-live__feature-text {
  font-size: 1em;
  color: #FFF6D6;
  margin-bottom: 25px;
}

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

.page-live__promo-card {
  background-color: #111111;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #3A2A12;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF6D6;
}

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

.page-live__two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-live__column-title {
  font-size: 1.8em;
  color: #FFD36B;
  margin-bottom: 20px;
  text-align: center;
}

.page-live__column-text {
  color: #FFF6D6;
  margin-bottom: 25px;
  text-align: center;
}

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

.page-live__support-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #3A2A12;
  text-align: center;
  color: #FFF6D6;
}

.page-live__faq-section {
  padding-bottom: 80px;
}

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

.page-live__faq-item {
  background-color: #111111; /* Card BG color */
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF6D6;
}

.page-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #1A1A1A; /* Slightly different background for question */
  transition: background-color 0.3s ease;
}

.page-live__faq-question:hover {
  background-color: #2A2A2A;
}

.page-live__faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: #FFD36B;
}

.page-live__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD36B;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-live__faq-item.active .page-live__faq-toggle {
  transform: rotate(45deg);
}

.page-live__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #FFF6D6;
}

.page-live__faq-item.active .page-live__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px 25px;
}

.page-live__faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  }
  .page-live__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  .page-live__two-column-layout {
    grid-template-columns: 1fr;
  }
  .page-live__column-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 100px) !important; /* Mobile padding for header */
    margin-bottom: 40px;
  }
  .page-live__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__btn-primary,
  .page-live__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }

  .page-live__section {
    padding: 40px 0;
    margin-bottom: 30px;
  }
  .page-live__section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
  .page-live__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-live__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-live img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-live__game-grid,
  .page-live__features-grid,
  .page-live__promo-grid,
  .page-live__support-channels {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-live__game-card,
  .page-live__feature-item,
  .page-live__promo-card,
  .page-live__support-item {
    padding: 20px;
  }

  .page-live__card-title,
  .page-live__feature-title,
  .page-live__column-title {
    font-size: 1.3em;
  }

  .page-live__faq-question h3 {
    font-size: 1em;
  }
  .page-live__faq-question {
    padding: 15px 20px;
  }
  .page-live__faq-answer {
    padding: 0 20px;
  }
  .page-live__faq-item.active .page-live__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-live__hero-cta-buttons {
    gap: 10px;
  }
  .page-live__hero-title {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }
  .page-live__section-title {
    font-size: clamp(1.4rem, 7vw, 1.8rem);
  }
  .page-live__btn-primary,
  .page-live__btn-secondary {
    padding: 10px 15px;
  }
}