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

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

.page-live__hero-section {
  padding-top: var(--header-offset, 120px); /* Desktop default */
  padding-bottom: 60px; /* Adjust padding for bottom */
  position: relative;
  overflow: hidden;
  background-color: #0A0A0A; /* Use background color if image doesn't fill entirely */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-live__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: none; /* Removed filter to comply with strict rule */
}

.page-live__hero-content {
  padding: 40px 20px;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.page-live__hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: bold;
  color: #F2C14E; /* Changed to main brand color for better contrast on dark background */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-live__hero-description {
  font-size: 1.1rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

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

/* General Section Styling */
.page-live__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #F2C14E; /* Main color for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
  line-height: 1.2;
}

.page-live__text-block {
  font-size: 1.05rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #FFF6D6; /* Text Main */
}

/* Buttons */
.page-live__btn-primary,
.page-live__btn-secondary,
.page-live__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 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%); /* Button color */
  color: #111111; /* Dark text for contrast */
  border: 2px solid transparent;
}

.page-live__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  color: #0A0A0A;
}

.page-live__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E; /* Border color */
}

.page-live__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111;
}

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

.page-live__btn-tertiary:hover {
  background-color: #3A2A12;
  color: #FFF6D6;
}

/* Why Choose Section */
.page-live__why-choose-section,
.page-live__promotions-section,
.page-live__mobile-section,
.page-live__payment-section,
.page-live__faq-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background */
}

.page-live__dark-section {
  background-color: #111111; /* Card BG */
  padding: 80px 0;
}

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

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

.page-live__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-live__feature-title {
  font-size: 1.5rem;
  color: #FFD36B; /* Glow color */
  margin-bottom: 15px;
}

.page-live__feature-text {
  color: #FFF6D6; /* Text Main */
}

/* Game Selection Section */
.page-live__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live__game-card {
  background-color: #0A0A0A; /* Background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12; /* Border color */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-live__game-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Main color */
  padding: 20px 15px 10px;
}

.page-live__game-description {
  font-size: 0.95rem;
  color: #FFF6D6; /* Text Main */
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-live__game-card .page-live__btn-tertiary {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
}

/* Promotions Section */
.page-live__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live__promo-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12; /* Border color */
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-live__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-live__promo-title {
  font-size: 1.6rem;
  color: #FFD36B; /* Glow color */
  padding: 20px 15px 10px;
}

.page-live__promo-description {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-live__promo-card .page-live__btn-primary,
.page-live__promo-card .page-live__btn-secondary {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
}

/* Getting Started Section */
.page-live__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-live__step-card {
  background-color: #0A0A0A; /* Background */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12; /* Border color */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-live__step-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
}

.page-live__step-description {
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-live__step-card .page-live__btn-primary,
.page-live__step-card .page-live__btn-secondary {
  width: 100%;
}

/* Mobile Section */
.page-live__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}

.page-live__mobile-text {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.page-live__mobile-subtitle {
  font-size: 2rem;
  color: #FFD36B; /* Glow color */
  margin-bottom: 20px;
}

.page-live__mobile-description {
  font-size: 1.1rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

.page-live__mobile-note {
  font-size: 0.9rem;
  color: #F2C14E; /* Main color */
  margin-top: 15px;
}

.page-live__mobile-image-wrapper {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

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