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

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

.page-live__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Main color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-live__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__highlight {
  color: #FFD36B; /* Auxiliary color for highlights */
  font-weight: bold;
}

.page-live__text-link {
  color: #FFD36B;
  text-decoration: underline;
}

/* Buttons */
.page-live__btn-primary,
.page-live__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
  box-sizing: border-box;
}

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

.page-live__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

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

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

.page-live__small-btn {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-live__large-btn {
  padding: 15px 35px;
  font-size: 1.2em;
}

/* Cards */
.page-live__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFF6D6; /* Text Main */
}

.page-live__card-title {
  font-size: 1.4em;
  color: #F2C14E;
  margin-top: 15px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-live__card-link {
  color: #F2C14E;
  text-decoration: none;
}

.page-live__card-link:hover {
  text-decoration: underline;
  color: #FFD36B;
}

/* Hero Section */
.page-live__hero-section {
  background: linear-gradient(135deg, #0A0A0A 0%, #111111 100%); /* Dark gradient for hero background */
  padding-top: var(--header-offset, 120px); /* Applied here as per instruction */
  padding-bottom: 60px;
  text-align: center;
}

.page-live__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.page-live__hero-image-wrapper {
  width: 100%;
  max-width: 1000px; /* Constrain image width */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page-live__hero-content {
  max-width: 800px;
  text-align: center;
}

.page-live__hero-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive H1 font size */
  color: #F2C14E;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

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

/* Introduction Section */
.page-live__introduction-section {
  padding: 60px 0;
  text-align: center;
}

/* Why Choose Section */
.page-live__why-choose-section {
  padding: 60px 0;
}

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

.page-live__feature-card .page-live__feature-icon {
  width: 100%;
  max-width: 200px; /* Min size for content images */
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
}

/* Games Section */
.page-live__games-section {
  padding: 60px 0;
  text-align: center;
}

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

.page-live__game-card .page-live__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-live__game-card .page-live__btn-secondary {
  margin-top: 15px;
}

/* Promotions Section */
.page-live__promotions-section {
  padding: 60px 0;
  text-align: center;
}

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

.page-live__promo-card .page-live__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-live__promo-card .page-live__btn-primary {
  margin-top: 15px;
}

/* Mobile Experience Section */
.page-live__mobile-experience-section {
  padding: 60px 0;
  text-align: center;
}

.page-live__mobile-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-live__mobile-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-live__mobile-content {
  max-width: 500px;
}

.page-live__mobile-content .page-live__btn-primary,
.page-live__mobile-content .page-live__btn-secondary {
  margin-top: 20px;
  margin-right: 10px;
}

/* Safety Section */
.page-live__safety-section {
  padding: 60px 0;
  text-align: center;
}

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

.page-live__safety-item .page-live__safety-icon {
  width: 200px; /* Must be >= 200px */
  height: 200px; /* Must be >= 200px */
  object-fit: contain;
  margin-bottom: 15px;
}

/* Get Started Section */
.page-live__get-started-section {
  padding: 60px 0;
  text-align: center;
}

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

.page-live__step-card .page-live__btn-primary,
.page-live__step-card .page-live__btn-secondary {
  margin-top: 20px;
}

/* FAQ Section */
.page-live__faq-section {
  padding: 60px 0;
}

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

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

.page-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2C14E;
  background-color: #111111;
  transition: background-color 0.3s ease;
}

.page-live__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-live__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}