/* style/blog-lucki8-game-types-deep-dive.css */
:root {
  --lucki8-primary-color: #26A9E0;
  --lucki8-secondary-color: #FFFFFF;
  --lucki8-login-color: #EA7C07;
  --lucki8-background-color: #FFFFFF;
  --lucki8-dark-text-color: #333333;
  --lucki8-light-text-color: #FFFFFF;
  --lucki8-body-bg: #1a1a1a; /* Inherited from shared.css */
}

.page-blog-lucki8-game-types-deep-dive {
  color: var(--lucki8-light-text-color); /* Body is dark, so text is light */
  background-color: var(--lucki8-body-bg);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-lucki8-game-types-deep-dive__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-blog-lucki8-game-types-deep-dive__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-blog-lucki8-game-types-deep-dive__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-lucki8-game-types-deep-dive__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for text readability */
  border-radius: 10px;
}

.page-blog-lucki8-game-types-deep-dive__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  color: var(--lucki8-secondary-color);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog-lucki8-game-types-deep-dive__description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: var(--lucki8-secondary-color);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-lucki8-game-types-deep-dive__btn-primary {
  display: inline-block;
  background: var(--lucki8-primary-color);
  color: var(--lucki8-light-text-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid var(--lucki8-primary-color);
}

.page-blog-lucki8-game-types-deep-dive__btn-primary:hover {
  background: darken(var(--lucki8-primary-color), 10%); /* Placeholder for darker shade */
  transform: translateY(-2px);
}

.page-blog-lucki8-game-types-deep-dive__btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--lucki8-primary-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid var(--lucki8-primary-color);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-blog-lucki8-game-types-deep-dive__btn-secondary:hover {
  background: var(--lucki8-primary-color);
  color: var(--lucki8-light-text-color);
  transform: translateY(-2px);
}

.page-blog-lucki8-game-types-deep-dive__section {
  padding: 80px 20px;
  text-align: center;
}

.page-blog-lucki8-game-types-deep-dive__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-lucki8-game-types-deep-dive__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: var(--lucki8-primary-color);
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-lucki8-game-types-deep-dive__sub-title {
  font-size: clamp(1.4em, 2.2vw, 2em);
  color: var(--lucki8-secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-lucki8-game-types-deep-dive__text-block {
  font-size: 1.1em;
  color: var(--lucki8-secondary-color);
  margin-bottom: 20px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-lucki8-game-types-deep-dive__text-block a {
  color: var(--lucki8-primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-blog-lucki8-game-types-deep-dive__text-block a:hover {
  text-decoration: underline;
}

.page-blog-lucki8-game-types-deep-dive__image-content {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-blog-lucki8-game-types-deep-dive__faq-section {
  background-color: #2a2a2a; /* Slightly lighter dark background for contrast */
  padding: 80px 20px;
  text-align: center;
}

.page-blog-lucki8-game-types-deep-dive__faq-item {
  background-color: #3a3a3a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-lucki8-game-types-deep-dive__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #4a4a4a;
  cursor: pointer;
  font-weight: bold;
  color: var(--lucki8-secondary-color);
  font-size: 1.1em;
}

.page-blog-lucki8-game-types-deep-dive__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-lucki8-game-types-deep-dive__faq-question::marker {
  display: none;
}

.page-blog-lucki8-game-types-deep-dive__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--lucki8-primary-color);
}

.page-blog-lucki8-game-types-deep-dive__faq-answer {
  padding: 0 20px 20px;
  color: var(--lucki8-secondary-color);
  font-size: 1em;
  line-height: 1.6;
}

.page-blog-lucki8-game-types-deep-dive__faq-answer p {
  margin-bottom: 10px;
  color: var(--lucki8-secondary-color);
}

.page-blog-lucki8-game-types-deep-dive__faq-answer a {
  color: var(--lucki8-primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-blog-lucki8-game-types-deep-dive__faq-answer a:hover {
  text-decoration: underline;
}

.page-blog-lucki8-game-types-deep-dive__faq-item[open] .page-blog-lucki8-game-types-deep-dive__faq-question {
  background-color: #5a5a5a;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-blog-lucki8-game-types-deep-dive {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-lucki8-game-types-deep-dive__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-blog-lucki8-game-types-deep-dive__hero-content {
    padding: 20px;
  }

  .page-blog-lucki8-game-types-deep-dive__main-title {
    font-size: 2em;
  }

  .page-blog-lucki8-game-types-deep-dive__description {
    font-size: 1em;
  }

  .page-blog-lucki8-game-types-deep-dive__btn-primary,
  .page-blog-lucki8-game-types-deep-dive__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
    margin-bottom: 10px;
  }
  
  .page-blog-lucki8-game-types-deep-dive__hero-content .page-blog-lucki8-game-types-deep-dive__btn-primary {
    margin-top: 15px; /* Add some space above button in mobile hero */
  }

  .page-blog-lucki8-game-types-deep-dive__section {
    padding: 40px 15px;
  }

  .page-blog-lucki8-game-types-deep-dive__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-lucki8-game-types-deep-dive__section-title {
    font-size: 1.8em;
  }

  .page-blog-lucki8-game-types-deep-dive__sub-title {
    font-size: 1.2em;
  }

  .page-blog-lucki8-game-types-deep-dive__text-block {
    font-size: 1em;
  }

  .page-blog-lucki8-game-types-deep-dive img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-lucki8-game-types-deep-dive__faq-section {
    padding: 40px 15px;
  }

  .page-blog-lucki8-game-types-deep-dive__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-blog-lucki8-game-types-deep-dive__faq-answer {
    padding: 0 15px 15px;
  }
}

/* Ensure all containers with images/videos/buttons are responsive */
.page-blog-lucki8-game-types-deep-dive__hero-image-wrapper,
.page-blog-lucki8-game-types-deep-dive__container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* Default text color for general elements to ensure contrast against dark body */
.page-blog-lucki8-game-types-deep-dive h1,
.page-blog-lucki8-game-types-deep-dive h2,
.page-blog-lucki8-game-types-deep-dive h3,
.page-blog-lucki8-game-types-deep-dive p,
.page-blog-lucki8-game-types-deep-dive li {
  color: var(--lucki8-light-text-color);
}

/* Specific overrides for titles that should use primary color */
.page-blog-lucki8-game-types-deep-dive__section-title {
  color: var(--lucki8-primary-color);
}

/* Text within semi-transparent backgrounds should remain light */
.page-blog-lucki8-game-types-deep-dive__hero-content h1,
.page-blog-lucki8-game-types-deep-dive__hero-content p {
    color: var(--lucki8-secondary-color);
}