
    /* Base styles for the page */
.page-g-king-79 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #f0f0f0;
  background-color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 10px; /* Small padding to avoid content directly under fixed header, assuming body padding handles main offset */
}

.page-g-king-79__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.page-g-king-79__hero-section {
  position: relative;
  width: 100%;
  height: 60vh; /* Adjust height for visual impact */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #000; /* Fallback */
}

.page-g-king-79__hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.5; /* Darken image for better text readability */
}

.page-g-king-79__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
  z-index: 2;
}

.page-g-king-79__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-g-king-79__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #fff;
  line-height: 1.2;
}

.page-g-king-79__highlight {
  color: #ffcc00; /* Highlight color for keywords */
}

.page-g-king-79__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-g-king-79__hero-cta-button {
  display: inline-block;
  background-color: #e44d26; /* Action color */
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-g-king-79__hero-cta-button:hover {
  background-color: #ff6633;
}

/* General Section Styles */
.page-g-king-79__section-title {
  font-size: 2.5em;
  color: #ffcc00;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-g-king-79__section-description {
  font-size: 1.1em;
  color: #ccc;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.page-g-king-79__about-section {
  padding: 60px 0;
  background-color: #222;
}

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

.page-g-king-79__feature-item {
  background-color: #2c2c2c;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-g-king-79__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-g-king-79__feature-icon {
  width: 100%;
  max-width: 250px; /* Ensure images are not too small but fit the grid */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-g-king-79__feature-title {
  font-size: 1.6em;
  color: #ffcc00;
  margin-bottom: 10px;
}

.page-g-king-79__feature-text {
  font-size: 1em;
  color: #ccc;
}

/* How to Play Section */
.page-g-king-79__how-to-play-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-g-king-79__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-g-king-79__step-item {
  background-color: #2c2c2c;
  padding: 25px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  box-sizing: border-box; /* Crucial for responsive list items */
}

.page-g-king-79__step-number {
  background-color: #e44d26;
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-g-king-79__step-content {
  flex-grow: 1;
}

.page-g-king-79__step-title {
  font-size: 1.4em;
  color: #ffcc00;
  margin-top: 0;
  margin-bottom: 8px;
}

.page-g-king-79__step-description {
  font-size: 0.95em;
  color: #ccc;
  margin-bottom: 0;
}

.page-g-king-79__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-g-king-79__cta-button {
  display: inline-block;
  background-color: #e44d26;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-g-king-79__cta-button:hover {
  background-color: #ff6633;
}

/* Promotions Section */
.page-g-king-79__promotions-section {
  padding: 60px 0;
  background-color: #222;
}

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

.page-g-king-79__promo-card {
  background-color: #2c2c2c;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-g-king-79__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-g-king-79__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #3a3a3a;
}

.page-g-king-79__promo-title {
  font-size: 1.5em;
  color: #ffcc00;
  padding: 20px 20px 10px;
  margin-bottom: 0;
}

.page-g-king-79__promo-text {
  font-size: 1em;
  color: #ccc;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-g-king-79__promo-action {
  padding: 0 20px 20px;
  text-align: right;
}

.page-g-king-79__learn-more {
  color: #e44d26;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  cursor: pointer; /* Indicating it's clickable, but without actual link */
  transition: color 0.3s ease;
}

.page-g-king-79__learn-more:hover {
  color: #ff6633;
}

.page-g-king-79__promo-note {
  font-size: 0.9em;
  color: #aaa;
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
.page-g-king-79__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-g-king-79__faq-list {
  margin-top: 40px;
}

.page-g-king-79__faq-item {
  background-color: #2c2c2c;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-g-king-79__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #333;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-g-king-79__faq-question:hover {
  background-color: #444;
}

.page-g-king-79__faq-title {
  font-size: 1.3em;
  color: #ffcc00;
  margin: 0;
  pointer-events: none; /* Prevent text selection interfering with click */
}

.page-g-king-79__faq-toggle {
  font-size: 1.8em;
  color: #e44d26;
  font-weight: bold;
  line-height: 1;
  pointer-events: none; /* Prevent toggle icon interfering with click */
  transition: transform 0.3s ease;
}

.page-g-king-79__faq-item.active .page-g-king-79__faq-toggle {
  transform: rotate(45deg); /* Change + to X-like or - */
  color: #fff;
}

.page-g-king-79__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px; /* Adjust padding for closed state */
  color: #ccc;
  font-size: 1em;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.page-g-king-79__faq-item.active .page-g-king-79__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to show content */
  padding: 20px 25px !important; /* Padding for open state */
  opacity: 1;
}

.page-g-king-79__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-g-king-79__hero-title {
    font-size: 2.8em;
  }
  .page-g-king-79__hero-subtitle {
    font-size: 1.2em;
  }
  .page-g-king-79__section-title {
    font-size: 2.2em;
  }
  .page-g-king-79__container {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .page-g-king-79__hero-section {
    height: 70vh;
  }
  .page-g-king-79__hero-title {
    font-size: 2.2em;
  }
  .page-g-king-79__hero-subtitle {
    font-size: 1em;
  }
  .page-g-king-79__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-g-king-79__section-title {
    font-size: 1.8em;
    padding-top: 30px;
  }
  .page-g-king-79__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  /* List Item Responsive */
  .page-g-king-79__steps-list,
  .page-g-king-79__promo-grid,
  .page-g-king-79__features-grid {
    grid-template-columns: 1fr; /* Single column layout for mobile */
    gap: 20px;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .page-g-king-79__step-item,
  .page-g-king-79__feature-item,
  .page-g-king-79__promo-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 20px !important; /* Adjust padding for mobile */
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .page-g-king-79__feature-icon,
  .page-g-king-79__promo-image {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-g-king-79__faq-question {
    padding: 15px 20px;
  }
  .page-g-king-79__faq-title {
    font-size: 1.1em;
  }
  .page-g-king-79__faq-toggle {
    font-size: 1.5em;
  }
  .page-g-king-79__faq-answer {
    padding: 0 20px;
  }
  .page-g-king-79__faq-item.active .page-g-king-79__faq-answer {
    padding: 15px 20px !important;
  }
}

@media (max-width: 480px) {
  .page-g-king-79__hero-title {
    font-size: 1.8em;
  }
  .page-g-king-79__hero-subtitle {
    font-size: 0.9em;
  }
  .page-g-king-79__hero-cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-g-king-79__section-title {
    font-size: 1.5em;
  }
  .page-g-king-79__feature-title,
  .page-g-king-79__step-title,
  .page-g-king-79__promo-title {
    font-size: 1.3em;
  }
  .page-g-king-79__feature-text,
  .page-g-king-79__step-description,
  .page-g-king-79__promo-text {
    font-size: 0.85em;
  }
}
  