.page-live {
  color: #333333; /* Dark text for default white body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

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

.page-live__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Deep Red for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-live__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

.page-live__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-live__button--primary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  border: 2px solid #FFD700;
}

.page-live__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-live__button--secondary {
  background-color: transparent;
  color: #8B0000; /* Deep Red */
  border: 2px solid #8B0000;
}

.page-live__button--secondary:hover {
  background-color: #8B0000;
  color: #FFD700; /* Gold */
  transform: translateY(-2px);
}

.page-live__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 6px;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  border: 1px solid #FFD700;
}

.page-live__button--small:hover {
  background-color: #e6c200;
  transform: translateY(-1px);
}

/* Hero Section */
.page-live__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(139,0,0,0.1) 100%); /* Subtle gradient for background */
  gap: 40px;
  text-align: center;
  overflow: hidden;
}

.page-live__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-live__hero-title {
  font-size: 3.5em;
  color: #8B0000; /* Deep Red */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-live__hero-description {
  font-size: 1.3em;
  color: #333333;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__hero-image-wrapper {
  width: 100%;
  max-width: 1000px; /* Max width for hero image */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

/* Features Section */
.page-live__features-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-live__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-live__feature-icon {
  width: 200px; /* Enforcing minimum size for content images */
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0,0,0,0.1));
  display: block; /* Ensure it's a block element for margin auto */
  margin-left: auto;
  margin-right: auto;
}

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

.page-live__feature-description {
  font-size: 1em;
  color: #666666;
}

/* Games Showcase Section */
.page-live__games-showcase {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-live__game-card {
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-live__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
  min-width: 200px; /* Enforcing minimum size for content images */
  min-height: 200px;
}

.page-live__game-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-live__game-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  padding: 0 15px;
}

/* Bonuses CTA Section */
.page-live__bonuses-cta {
  padding: 80px 0;
  background: linear-gradient(90deg, #FFD700, #8B0000);
  color: #ffffff;
  text-align: center;
}

.page-live__bonuses-cta .page-live__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-live__bonuses-content {
  max-width: 800px;
}

.page-live__bonuses-title {
  font-size: 3em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-live__bonuses-cta .page-live__button--primary {
  background-color: #ffffff;
  color: #8B0000;
  border-color: #ffffff;
}

.page-live__bonuses-cta .page-live__button--primary:hover {
  background-color: #e0e0e0;
}

.page-live__bonuses-cta .page-live__button--secondary {
  color: #ffffff;
  border-color: #ffffff;
}

.page-live__bonuses-cta .page-live__button--secondary:hover {
  background-color: #ffffff;
  color: #8B0000;
}

.page-live__bonuses-image-wrapper {
  width: 100%;
  max-width: 700px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-live__bonuses-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Enforcing minimum size for content images */
  min-height: 200px;
}

/* Security Section */
.page-live__security-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-live__security-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-live__security-icon {
  width: 200px; /* Enforcing minimum size for content images */
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 3px rgba(0,0,0,0.05));
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.page-live__security-heading {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-live__security-description {
  font-size: 0.95em;
  color: #666666;
}

/* Getting Started Section */
.page-live__getting-started {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-live__step-card {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-live__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #8B0000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #8B0000;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.page-live__step-title {
  font-size: 1.6em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-live__step-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-live__faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-live__faq-accordion {
  margin-top: 40px;
}

.page-live__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-live__faq-question {
  font-size: 1.2em;
  color: #8B0000;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  font-weight: bold;
}

.page-live__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-live__faq-item.active .page-live__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-live__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #555555;
  display: none; /* Hidden by default, toggled by JS */
}

.page-live__faq-item.active .page-live__faq-answer {
  display: block;
}

.page-live__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #FFD700;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-live__cta-text {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-live__cta-bottom .page-live__button--primary {
  background-color: #8B0000;
  color: #FFD700;
  border-color: #8B0000;
}

.page-live__cta-bottom .page-live__button--primary:hover {
  background-color: #6a0000;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-live__hero-title {
    font-size: 2.8em;
  }
  .page-live__bonuses-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-live__hero-section {
    padding: 40px 15px;
  }
  .page-live__hero-title {
    font-size: 2.2em;
  }
  .page-live__hero-description {
    font-size: 1.1em;
  }
  .page-live__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-live__button {
    width: 100%;
  }
  .page-live__section-title {
    font-size: 2em;
  }
  .page-live__section-intro {
    font-size: 1em;
  }
  .page-live__features-section, .page-live__games-showcase, .page-live__bonuses-cta, .page-live__security-section, .page-live__getting-started, .page-live__faq-section {
    padding: 50px 0;
  }
  .page-live__feature-grid, .page-live__game-grid, .page-live__security-points, .page-live__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-live__feature-card, .page-live__game-card, .page-live__security-item, .page-live__step-card {
    padding: 25px;
  }
  .page-live__bonuses-title {
    font-size: 2em;
  }
  .page-live__bonuses-description {
    font-size: 1em;
  }
  .page-live__cta-text {
    font-size: 1.2em;
  }
  /* Mobile content image overflow prevention */
  .page-live img {
    max-width: 100%;
    height: auto;
  }
  .page-live__hero-image-wrapper, .page-live__bonuses-image-wrapper {
    max-width: 100%;
    border-radius: 0;
  }
  .page-live__hero-image {
    width: 100%;
    height: auto;
  }
  .page-live__bonuses-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-live__hero-title {
    font-size: 1.8em;
  }
  .page-live__hero-description {
    font-size: 0.95em;
  }
  .page-live__bonuses-title {
    font-size: 1.8em;
  }
  .page-live__cta-text {
    font-size: 1em;
  }
}