/* style/blog-how-to-play-at-neo79.css */
.page-blog-how-to-play-at-neo79 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: transparent; /* Body background handled by shared.css var(--background-color) */
}

.page-blog-how-to-play-at-neo79__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px 20px; /* Small top padding, more bottom padding */
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-how-to-play-at-neo79__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px; /* Space between image and content */
}

.page-blog-how-to-play-at-neo79__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.page-blog-how-to-play-at-neo79__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  z-index: 1;
}

.page-blog-how-to-play-at-neo79__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-how-to-play-at-neo79__hero-description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-how-to-play-at-neo79__btn-primary,
.page-blog-how-to-play-at-neo79__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  box-sizing: border-box;
}

.page-blog-how-to-play-at-neo79__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-blog-how-to-play-at-neo79__btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-blog-how-to-play-at-neo79__btn-secondary {
  background: #11271B; /* Card B G */
  color: #2AD16F; /* From Button gradient start */
  border: 2px solid #2E7A4E; /* Border color */
}

.page-blog-how-to-play-at-neo79__btn-secondary:hover {
  transform: translateY(-2px);
  background: #1E3A2A; /* Divider */
  color: #F2FFF6;
}

.page-blog-how-to-play-at-neo79__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-how-to-play-at-neo79__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-how-to-play-at-neo79__introduction p,
.page-blog-how-to-play-at-neo79__tips-section p,
.page-blog-how-to-play-at-neo79__withdrawal-guide p,
.page-blog-how-to-play-at-neo79__cta-final p {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-blog-how-to-play-at-neo79__introduction {
  background-color: #0A4B2C; /* Deep Green for light-bg equivalent */
  color: #F2FFF6;
}

.page-blog-how-to-play-at-neo79__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-play-at-neo79__light-bg {
  background-color: #0A4B2C; /* Deep Green, acting as a lighter dark */
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-play-at-neo79__guide-step {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-blog-how-to-play-at-neo79__step-title {
  font-size: 2em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 25px;
  font-weight: bold;
}

.page-blog-how-to-play-at-neo79__step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 900px;
}

.page-blog-how-to-play-at-neo79__step-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog-how-to-play-at-neo79__step-list {
  list-style: none;
  padding: 0;
  text-align: left;
  width: 100%;
  max-width: 700px;
}

.page-blog-how-to-play-at-neo79__step-list li {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.page-blog-how-to-play-at-neo79__step-list li::before {
  content: '✓';
  color: #57E38D; /* Glow */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-blog-how-to-play-at-neo79__game-grid,
.page-blog-how-to-play-at-neo79__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-play-at-neo79__game-card,
.page-blog-how-to-play-at-neo79__promo-card {
  background-color: #11271B; /* Card B G */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-how-to-play-at-neo79__game-image,
.page-blog-how-to-play-at-neo79__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-how-to-play-at-neo79__game-title,
.page-blog-how-to-play-at-neo79__promo-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-play-at-neo79__game-title a,
.page-blog-how-to-play-at-neo79__promo-title a {
  color: #F2C14E; /* Gold */
  text-decoration: none;
}

.page-blog-how-to-play-at-neo79__game-title a:hover,
.page-blog-how-to-play-at-neo79__promo-title a:hover {
  text-decoration: underline;
}

.page-blog-how-to-play-at-neo79__game-description,
.page-blog-how-to-play-at-neo79__promo-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-how-to-play-at-neo79__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-blog-how-to-play-at-neo79__tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 30px auto;
}

.page-blog-how-to-play-at-neo79__tips-list li {
  background-color: #11271B; /* Card B G */
  color: #F2FFF6; /* Text Main */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  position: relative;
  padding-left: 45px;
  font-size: 1.1em;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-how-to-play-at-neo79__tips-list li::before {
  content: '💡';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
}

.page-blog-how-to-play-at-neo79__faq-list {
  margin-top: 30px;
}

.page-blog-how-to-play-at-neo79__faq-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-play-at-neo79__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  background-color: #1E3A2A; /* Divider */
  transition: background-color 0.3s ease;
}

.page-blog-how-to-play-at-neo79__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-how-to-play-at-neo79__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-how-to-play-at-neo79__faq-item[open] .page-blog-how-to-play-at-neo79__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

.page-blog-how-to-play-at-neo79__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-play-at-neo79__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-play-at-neo79__faq-item summary {
  list-style: none;
}

.page-blog-how-to-play-at-neo79__cta-final {
  text-align: center;
  padding: 60px 20px;
}

.page-blog-how-to-play-at-neo79__cta-final .page-blog-how-to-play-at-neo79__btn-primary,
.page-blog-how-to-play-at-neo79__cta-final .page-blog-how-to-play-at-neo79__btn-secondary {
  margin: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-play-at-neo79__section-title {
    font-size: 2em;
  }
  .page-blog-how-to-play-at-neo79__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-blog-how-to-play-at-neo79__game-image,
  .page-blog-how-to-play-at-neo79__promo-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-play-at-neo79 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-play-at-neo79__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-how-to-play-at-neo79__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-blog-how-to-play-at-neo79__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-how-to-play-at-neo79__main-title {
    font-size: clamp(1.6em, 6vw, 2.5em);
  }

  .page-blog-how-to-play-at-neo79__hero-description {
    font-size: 1em;
  }

  .page-blog-how-to-play-at-neo79__btn-primary,
  .page-blog-how-to-play-at-neo79__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    margin: 8px 0;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-how-to-play-at-neo79__hero-content .page-blog-how-to-play-at-neo79__btn-primary {
    max-width: 300px !important; /* Keep hero button a bit smaller */
    width: auto !important;
  }

  .page-blog-how-to-play-at-neo79__content-area {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-play-at-neo79__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-how-to-play-at-neo79__guide-step {
    margin-bottom: 40px;
  }

  .page-blog-how-to-play-at-neo79__step-title {
    font-size: 1.6em;
    margin-bottom: 20px;
  }

  .page-blog-how-to-play-at-neo79__step-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-how-to-play-at-neo79__step-list li,
  .page-blog-how-to-play-at-neo79__tips-list li,
  .page-blog-how-to-play-at-neo79__game-description,
  .page-blog-how-to-play-at-neo79__promo-description,
  .page-blog-how-to-play-at-neo79__faq-answer p {
    font-size: 0.95em;
  }

  .page-blog-how-to-play-at-neo79__game-grid,
  .page-blog-how-to-play-at-neo79__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-play-at-neo79__game-card,
  .page-blog-how-to-play-at-neo79__promo-card {
    padding: 20px;
  }

  .page-blog-how-to-play-at-neo79__game-image,
  .page-blog-how-to-play-at-neo79__promo-image {
    height: 150px;
  }

  .page-blog-how-to-play-at-neo79__game-title,
  .page-blog-how-to-play-at-neo79__promo-title {
    font-size: 1.3em;
  }

  .page-blog-how-to-play-at-neo79__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-blog-how-to-play-at-neo79__faq-answer {
    padding: 10px 20px 15px;
  }

  .page-blog-how-to-play-at-neo79__cta-final {
    padding: 40px 15px;
  }

  .page-blog-how-to-play-at-neo79__cta-final .page-blog-how-to-play-at-neo79__btn-primary,
  .page-blog-how-to-play-at-neo79__cta-final .page-blog-how-to-play-at-neo79__btn-secondary {
    display: block;
    width: 100%;
    margin: 10px 0;
  }

  /* Ensure all containers for images, videos, buttons are responsive */
  .page-blog-how-to-play-at-neo79__hero-section,
  .page-blog-how-to-play-at-neo79__introduction,
  .page-blog-how-to-play-at-neo79__guide-section,
  .page-blog-how-to-play-at-neo79__game-types,
  .page-blog-how-to-play-at-neo79__withdrawal-guide,
  .page-blog-how-to-play-at-neo79__promotions,
  .page-blog-how-to-play-at-neo79__tips-section,
  .page-blog-how-to-play-at-neo79__faq-section,
  .page-blog-how-to-play-at-neo79__cta-final {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-play-at-neo79__step-content,
  .page-blog-how-to-play-at-neo79__promo-grid,
  .page-blog-how-to-play-at-neo79__game-grid,
  .page-blog-how-to-play-at-neo79__faq-list,
  .page-blog-how-to-play-at-neo79__tips-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-play-at-neo79__cta-buttons {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
  }

  .page-blog-how-to-play-at-neo79__game-card,
  .page-blog-how-to-play-at-neo79__promo-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Image and video specific rules for mobile */
  .page-blog-how-to-play-at-neo79 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-play-at-neo79 video,
  .page-blog-how-to-play-at-neo79__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-play-at-neo79__video-section,
  .page-blog-how-to-play-at-neo79__video-container,
  .page-blog-how-to-play-at-neo79__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}