
    /* Base styles for the page */
.page-79-king-78 {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0;
  background-color: #1a1a2e; /* Dark background */
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, relying on body padding for header offset */
}

/* Section styling */
.page-79-king-78__hero-section,
.page-79-king-78__features-section,
.page-79-king-78__games-section,
.page-79-king-78__providers-section,
.page-79-king-78__faq-section,
.page-79-king-78__cta-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-79-king-78__section-title {
  color: #ffcc00; /* Accent color */
  font-size: 2.2em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-79-king-78__section-intro {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #cccccc;
}

/* Hero Section */
.page-79-king-78__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: linear-gradient(135deg, #1a1a2e, #0f0f1d);
  padding-bottom: 60px;
}

.page-79-king-78__hero-content {
  text-align: center;
  max-width: 800px;
}

.page-79-king-78__hero-title {
  font-size: 2.8em;
  color: #ffcc00;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-79-king-78__hero-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-79-king-78__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-79-king-78__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.page-79-king-78__button--primary {
  background-color: #ffcc00;
  color: #1a1a2e;
  border: 2px solid #ffcc00;
}

.page-79-king-78__button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-79-king-78__button--secondary {
  background-color: transparent;
  color: #ffcc00;
  border: 2px solid #ffcc00;
}

.page-79-king-78__button--secondary:hover {
  background-color: #ffcc00;
  color: #1a1a2e;
  transform: translateY(-2px);
}

.page-79-king-78__hero-image-wrapper {
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-79-king-78__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto; /* Centering image */
}

/* Features Section */
.page-79-king-78__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-79-king-78__feature-item:hover {
  transform: translateY(-5px);
}

.page-79-king-78__feature-icon {
  width: 100%; /* Ensure max-width: 100% applies */
  max-width: 250px; /* Example size, min 200px */
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-79-king-78__feature-heading {
  font-size: 1.5em;
  color: #ffcc00;
  margin-bottom: 10px;
}

.page-79-king-78__feature-description {
  color: #cccccc;
  font-size: 0.95em;
}

/* Games Section */
.page-79-king-78__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-79-king-78__game-card {
  background-color: #2c2c4a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-align: left;
}

.page-79-king-78__game-card:hover {
  transform: translateY(-5px);
}

.page-79-king-78__game-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* Centering image */
}

.page-79-king-78__game-title {
  font-size: 1.4em;
  color: #ffcc00;
  padding: 15px 20px 5px;
}

.page-79-king-78__game-description {
  color: #cccccc;
  font-size: 0.9em;
  padding: 0 20px 20px;
}

/* Providers Section */
.page-79-king-78__providers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.page-79-king-78__provider-item {
  background-color: #3a3a5e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-79-king-78__faq-list {
  margin-top: 40px;
  text-align: left;
}

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

.page-79-king-78__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #3a3a5e;
  color: #ffcc00;
  cursor: pointer;
  user-select: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-79-king-78__faq-question:hover {
  background-color: #4a4a70;
}

.page-79-king-78__faq-question-text {
  margin: 0;
  color: #ffcc00;
  font-size: 1.1em;
  pointer-events: none; /* Prevent h3 from blocking click on parent div */
}

.page-79-king-78__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent span from blocking click on parent div */
}

.page-79-king-78__faq-item.active .page-79-king-78__faq-toggle {
  transform: rotate(45deg); /* Change '+' to 'x' or '-' */
}

.page-79-king-78__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  color: #cccccc;
  font-size: 0.95em;
}

.page-79-king-78__faq-item.active .page-79-king-78__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px 15px !important;
  opacity: 1;
}

.page-79-king-78__faq-answer p {
  margin: 0;
}

/* CTA Section */
.page-79-king-78__cta-section {
  background-color: #0f0f1d;
  padding: 60px 20px;
}

.page-79-king-78__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

/* Floating Buttons */
.page-79-king-78__floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 1000;
}

.page-79-king-78__floating-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.page-79-king-78__floating-button--register {
  background-color: #ffcc00;
  color: #1a1a2e;
}

.page-79-king-78__floating-button--register:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-79-king-78__floating-button--login {
  background-color: #3a3a5e;
  color: #fff;
  border: 1px solid #ffcc00;
}

.page-79-king-78__floating-button--login:hover {
  background-color: #4a4a70;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-79-king-78__hero-section {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-79-king-78__hero-title {
    font-size: 2em;
  }

  .page-79-king-78__hero-description {
    font-size: 1em;
  }

  .page-79-king-78__hero-buttons,
  .page-79-king-78__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-79-king-78__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-79-king-78__section-title {
    font-size: 1.8em;
  }

  .page-79-king-78__features-grid,
  .page-79-king-78__games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Mobile responsive list items (Features, Games, Providers) */
  .page-79-king-78__features-grid,
  .page-79-king-78__games-grid,
  .page-79-king-78__providers-grid {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-79-king-78__feature-item,
  .page-79-king-78__game-card,
  .page-79-king-78__provider-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important; /* Adjust padding to avoid too narrow content */
    padding-right: 15px !important; /* Adjust padding to avoid too narrow content */
    margin-left: 0 !important;
    margin-right: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

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

  .page-79-king-78__faq-question,
  .page-79-king-78__faq-answer {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-79-king-78__floating-buttons {
    width: calc(100% - 40px); /* Account for 20px padding on each side */
    bottom: 15px;
    gap: 10px;
  }

  .page-79-king-78__floating-button {
    flex: 1;
    font-size: 1em;
    padding: 10px 15px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .page-79-king-78__hero-title {
    font-size: 2.5em;
  }
  .page-79-king-78__hero-description {
    font-size: 1.1em;
  }
  .page-79-king-78__features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-79-king-78__games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .page-79-king-78__hero-section {
    flex-direction: row;
    padding-left: 40px;
    padding-right: 40px;
  }
  .page-79-king-78__hero-content {
    text-align: left;
    max-width: 50%;
  }
  .page-79-king-78__hero-buttons {
    justify-content: flex-start;
  }
  .page-79-king-78__hero-image-wrapper {
    max-width: 50%;
  }
  .page-79-king-78__hero-title {
    font-size: 3.2em;
  }
  .page-79-king-78__features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-79-king-78__games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
  