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

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

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

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

.page-live__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-live__hero-section {
  background: linear-gradient(135deg, #F2C14E, #FFD36B); /* Main and Auxiliary color gradient */
  padding-top: var(--header-offset, 120px); /* For fixed header */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-live__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  order: 2; /* Content below image */
}

.page-live__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
  color: #0A0A0A; /* Dark text for light background */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-live__hero-description {
  font-size: 1.2em;
  color: #333333; /* Dark text for light background */
  margin-bottom: 30px;
}

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

.page-live__hero-image-wrapper {
  order: 1; /* Image above content */
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-live__hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.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;
  box-sizing: border-box;
  max-width: 100%;
  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: #ffffff; /* White text for dark button */
  border: 2px solid transparent;
}

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

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

.page-live__btn-secondary:hover {
  background: #f0f0f0;
  color: #DDA11D;
  border-color: #DDA11D;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

.page-live__btn-text {
    color: #F2C14E; /* Main color text */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-live__btn-text:hover {
    color: #FFD36B; /* Glow color */
    text-decoration: underline;
}

.page-live__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Feature List */
.page-live__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-live__feature-item {
  background: #111111; /* Card BG */
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border color */
  text-align: center;
  font-size: 1.1em;
  font-weight: bold;
  color: #FFF6D6; /* Text Main */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-live__game-card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}

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

.page-live__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 15px;
}

.page-live__game-title {
  font-size: 1.4em;
  color: #F2C14E; /* Main color */
  margin: 0 15px 10px;
  font-weight: bold;
}

.page-live__game-text {
  font-size: 1em;
  color: #FFF6D6; /* Text Main */
  margin: 0 15px 20px;
  flex-grow: 1;
}

/* Content Wrapper for image/text side by side */
.page-live__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-live__text-block {
    flex: 1;
}

.page-live__image-block {
    flex: 1;
    text-align: center;
}

.page-live__experience-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.page-live__experience-list,
.page-live__security-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.page-live__experience-item,
.page-live__security-item {
    background: #111111; /* Card BG */
    border-left: 4px solid #F2C14E; /* Main color accent */
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    color: #FFF6D6; /* Text Main */
    font-size: 1.05em;
}

/* How to Play Steps */
.page-live__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-live__step-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-live__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #F2C14E; /* Main color */
  color: #0A0A0A; /* Dark text for light background */
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-live__step-title {
  font-size: 1.5em;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-live__step-text {
  font-size: 1em;
  color: #FFF6D6; /* Text Main */
}

/* FAQ Section */
.page-live__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-live__faq-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #1a1a1a;
  color: #FFF6D6; /* Text Main */
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.3s ease;
}

.page-live__faq-question:hover {
  background: #222222;
}

.page-live__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #F2C14E; /* Main color */
  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, padding 0.3s ease;
  color: #FFF6D6; /* Text Main */
  font-size: 1em;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-live__text-block, .page-live__image-block {
    flex: none;
    width: 100%;
  }
  .page-live__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }
  .page-live__hero-title {
    font-size: clamp(2em, 8vw, 2.5em);
  }
  .page-live__hero-description {
    font-size: 1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__btn-primary,
  .page-live__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-live__section {
    padding: 40px 0;
  }
  .page-live__section-title {
    font-size: 1.8em;
  }
  .page-live__section-description {
    font-size: 0.95em;
  }
  .page-live__game-grid,
  .page-live__feature-list,
  .page-live__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-live__game-image {
    height: 180px;
  }
  .page-live__game-title {
    font-size: 1.2em;
  }
  .page-live__step-title {
    font-size: 1.3em;
  }
  .page-live__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-live__faq-answer {
    padding: 10px 20px 15px;
  }

  /* Mobile image and container responsive rules */
  .page-live img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-live__section,
  .page-live__card,
  .page-live__container,
  .page-live__hero-image-wrapper,
  .page-live__image-block,
  .page-live__game-card,
  .page-live__feature-item,
  .page-live__step-item,
  .page-live__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-live__hero-section .page-live__container {
    padding-left: 0;
    padding-right: 0;
  }
  .page-live__hero-content {
    padding: 0 15px;
  }
  .page-live__hero-buttons {
    padding: 0 15px;
    gap: 10px;
  }
  .page-live__cta-center {
    padding: 0 15px;
  }
  .page-live__cta-button,
  .page-live__btn-primary,
  .page-live__btn-secondary,
  .page-live a[class*="button"],
  .page-live a[class*="btn"] {
    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__cta-buttons,
  .page-live__button-group,
  .page-live__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-live__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}