.page-blog-79king-78-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--Text-Main); /* #F3F8FF */
  background-color: var(--Deep-Navy); /* #08162B */
}

.page-blog-79king-78-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-blog-79king-78-guide__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-blog-79king-78-guide__hero-image-wrapper {
  width: 100%;
  height: auto;
  position: relative;
}

.page-blog-79king-78-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Default to cover for desktop */
}

.page-blog-79king-78-guide__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  text-align: center;
  max-width: 900px;
  margin-top: -100px; /* Pull content up over the image slightly for visual flow */
  background: linear-gradient(180deg, rgba(8, 22, 43, 0.8) 0%, var(--Deep-Navy) 100%);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-79king-78-guide__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  color: var(--Text-Main); /* #F3F8FF */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog-79king-78-guide__hero-description {
  font-size: 1.1em;
  color: var(--Text-Secondary); /* #AFC4E8 */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog-79king-78-guide__cta-buttons--center {
  margin-top: 30px;
}

.page-blog-79king-78-guide__btn-primary,
.page-blog-79king-78-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-79king-78-guide__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-79king-78-guide__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
}

.page-blog-79king-78-guide__btn-secondary {
  background: var(--Card-B-G); /* #10233F */
  color: var(--Text-Main); /* #F3F8FF */
  border: 2px solid var(--Border); /* #244D84 */
}

.page-blog-79king-78-guide__btn-secondary:hover {
  background: var(--Border); /* #244D84 */
  transform: translateY(-2px);
}

.page-blog-79king-78-guide__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: var(--Gold); /* #F2C14E */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-blog-79king-78-guide__text-block {
  font-size: 1.05em;
  color: var(--Text-Secondary); /* #AFC4E8 */
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-79king-78-guide__introduction-section,
.page-blog-79king-78-guide__guide-section,
.page-blog-79king-78-guide__deposit-withdraw-section,
.page-blog-79king-78-guide__game-types-section,
.page-blog-79king-78-guide__security-section,
.page-blog-79king-78-guide__faq-section {
  padding: 60px 0;
  position: relative;
}

.page-blog-79king-78-guide__introduction-section {
  background: linear-gradient(180deg, var(--Deep-Navy) 0%, rgba(16, 35, 63, 0.8) 100%);
}

.page-blog-79king-78-guide__guide-section {
  background-color: var(--Card-B-G); /* #10233F */
  border-top: 1px solid var(--Divider);
  border-bottom: 1px solid var(--Divider);
}

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

.page-blog-79king-78-guide__guide-item {
  background-color: var(--Deep-Navy); /* #08162B */
  border: 1px solid var(--Border); /* #244D84 */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-blog-79king-78-guide__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-79king-78-guide__guide-heading {
  font-size: 1.5em;
  color: var(--Text-Main); /* #F3F8FF */
  margin-bottom: 15px;
}

.page-blog-79king-78-guide__deposit-withdraw-section {
  background: linear-gradient(180deg, rgba(16, 35, 63, 0.8) 0%, var(--Deep-Navy) 100%);
}

.page-blog-79king-78-guide__article-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: var(--Card-B-G); /* #10233F */
  border-radius: 10px;
  border: 1px solid var(--Border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-79king-78-guide__sub-heading {
  font-size: 1.8em;
  color: var(--Gold); /* #F2C14E */
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: center;
}

.page-blog-79king-78-guide__list {
  list-style: none;
  padding: 0;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-blog-79king-78-guide__list-item {
  color: var(--Text-Secondary); /* #AFC4E8 */
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-blog-79king-78-guide__list-item::before {
  content: '✔';
  color: var(--Glow); /* #4FA8FF */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

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

.page-blog-79king-78-guide__game-card {
  background-color: var(--Deep-Navy); /* #08162B */
  border: 1px solid var(--Border); /* #244D84 */
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  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;
}

.page-blog-79king-78-guide__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-79king-78-guide__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-79king-78-guide__game-heading {
  font-size: 1.4em;
  color: var(--Text-Main); /* #F3F8FF */
  margin: 20px 15px 10px;
}

.page-blog-79king-78-guide__game-description {
  font-size: 0.95em;
  color: var(--Text-Secondary); /* #AFC4E8 */
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-blog-79king-78-guide__btn-link {
  display: inline-block;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-blog-79king-78-guide__btn-link:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
}

.page-blog-79king-78-guide__security-section {
  background-color: var(--Card-B-G); /* #10233F */
  border-top: 1px solid var(--Divider);
}

.page-blog-79king-78-guide__faq-section {
  background: linear-gradient(180deg, var(--Deep-Navy) 0%, rgba(16, 35, 63, 0.8) 100%);
}

details.page-blog-79king-78-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--Border); /* #244D84 */
  overflow: hidden;
  background: var(--Card-B-G); /* #10233F */
  color: var(--Text-Main);
}

details.page-blog-79king-78-guide__faq-item summary.page-blog-79king-78-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-blog-79king-78-guide__faq-item summary.page-blog-79king-78-guide__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog-79king-78-guide__faq-item summary.page-blog-79king-78-guide__faq-question:hover {
  background: var(--Border); /* #244D84 */
}

.page-blog-79king-78-guide__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--Text-Main); /* #F3F8FF */
}

.page-blog-79king-78-guide__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--Glow); /* #4FA8FF */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-blog-79king-78-guide__faq-item .page-blog-79king-78-guide__faq-answer {
  padding: 0 20px 20px;
  background: var(--Deep-Navy); /* #08162B */
  border-radius: 0 0 5px 5px;
  color: var(--Text-Secondary); /* #AFC4E8 */
}

/* General image responsiveness */
.page-blog-79king-78-guide img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
  .page-blog-79king-78-guide__hero-content {
    margin-top: -80px;
    padding: 30px 20px;
  }

  .page-blog-79king-78-guide__main-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }

  .page-blog-79king-78-guide__section-title {
    font-size: clamp(1.6em, 3.5vw, 2.5em);
  }

  .page-blog-79king-78-guide__guide-steps {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-blog-79king-78-guide__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-79king-78-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-79king-78-guide__container,
  .page-blog-79king-78-guide__hero-section,
  .page-blog-79king-78-guide__introduction-section,
  .page-blog-79king-77-guide__guide-section,
  .page-blog-79king-78-guide__deposit-withdraw-section,
  .page-blog-79king-78-guide__game-types-section,
  .page-blog-79king-78-guide__security-section,
  .page-blog-79king-78-guide__faq-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  .page-blog-79king-78-guide__hero-section {
    padding-top: 10px !important;
  }

  .page-blog-79king-78-guide__hero-image-wrapper {
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-79king-78-guide__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-79king-78-guide__hero-content {
    margin-top: -50px;
    padding: 25px 15px;
  }

  .page-blog-79king-78-guide__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-blog-79king-78-guide__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-79king-78-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .page-blog-79king-78-guide__btn-primary,
  .page-blog-79king-78-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-79king-77-guide__guide-steps,
  .page-blog-79king-78-guide__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-79king-78-guide__guide-item,
  .page-blog-79king-78-guide__game-card {
    padding: 20px;
  }

  .page-blog-79king-78-guide__game-image {
    height: 180px;
  }

  .page-blog-79king-78-guide__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
    margin-bottom: 30px;
  }

  .page-blog-79king-78-guide__sub-heading {
    font-size: 1.5em;
    margin-top: 25px;
  }

  .page-blog-79king-78-guide__article-body {
    padding: 15px;
  }

  .page-blog-79king-78-guide p,
  .page-blog-79king-78-guide li {
    font-size: 0.95em;
  }

  details.page-blog-79king-78-guide__faq-item summary.page-blog-79king-78-guide__faq-question {
    padding: 15px;
  }

  .page-blog-79king-78-guide__faq-qtext {
    font-size: 15px;
  }

  .page-blog-79king-78-guide__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

  details.page-blog-79king-78-guide__faq-item .page-blog-79king-78-guide__faq-answer {
    padding: 0 15px 15px;
  }
  
  .page-blog-79king-78-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}