/* style/blog-beginner-guide-p888-game.css */
.page-blog-beginner-guide-p888-game {
  background-color: #08160F; /* Custom Background */
  color: #F2FFF6; /* Custom Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-beginner-guide-p888-game__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-beginner-guide-p888-game__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
  background-color: #0A4B2C;
}

.page-blog-beginner-guide-p888-game__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

.page-blog-beginner-guide-p888-game__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-blog-beginner-guide-p888-game__hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  max-width: 900px;
  margin-top: -200px; /* Adjust based on image height and content needs */
  color: #F2FFF6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-blog-beginner-guide-p888-game__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2C14E; /* Custom Gold */
  line-height: 1.2;
}

.page-blog-beginner-guide-p888-game__intro-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #F2FFF6; /* Custom Text Main */
}

.page-blog-beginner-guide-p888-game__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-beginner-guide-p888-game__btn-primary,
.page-blog-beginner-guide-p888-game__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.2s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-beginner-guide-p888-game__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button */
  color: #F2FFF6; /* Custom Text Main */
  border: none;
}

.page-blog-beginner-guide-p888-game__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-beginner-guide-p888-game__btn-secondary {
  background-color: transparent;
  color: #57E38D; /* Custom Glow */
  border: 2px solid #2E7A4E; /* Custom Border */
}

.page-blog-beginner-guide-p888-game__btn-secondary:hover {
  background-color: rgba(87, 227, 141, 0.1);
  transform: translateY(-2px);
}

.page-blog-beginner-guide-p888-game__btn-center {
  margin: 30px auto 0 auto; /* Center button below content */
  display: block;
  max-width: 300px;
  text-align: center;
}

.page-blog-beginner-guide-p888-game__section {
  padding: 60px 0;
  background-color: #08160F; /* Custom Background */
}

.page-blog-beginner-guide-p888-game__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2C14E; /* Custom Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-beginner-guide-p888-game__text-block {
  font-size: 1rem;
  color: #F2FFF6; /* Custom Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-beginner-guide-p888-game__text-block strong {
  color: #F2C14E;
}

.page-blog-beginner-guide-p888-game__feature-list,
.page-blog-beginner-guide-p888-game__method-list,
.page-blog-beginner-guide-p888-game__step-by-step-list,
.page-blog-beginner-guide-p888-game__promotion-list,
.page-blog-beginner-guide-p888-game__responsible-list,
.page-blog-beginner-guide-p888-game__note-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-beginner-guide-p888-game__feature-item,
.page-blog-beginner-guide-p888-game__method-item,
.page-blog-beginner-guide-p888-game__step-item,
.page-blog-beginner-guide-p888-game__promotion-item,
.page-blog-beginner-guide-p888-game__responsible-item,
.page-blog-beginner-guide-p888-game__note-item {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 15px;
  color: #F2FFF6; /* Custom Text Main */
}

.page-blog-beginner-guide-p888-game__feature-item strong,
.page-blog-beginner-guide-p888-game__method-title,
.page-blog-beginner-guide-p888-game__step-title,
.page-blog-beginner-guide-p888-game__promotion-title,
.page-blog-beginner-guide-p888-game__responsible-item strong {
  color: #57E38D; /* Custom Glow */
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: block;
}

.page-blog-beginner-guide-p888-game__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.page-blog-beginner-guide-p888-game__step-description {
  color: #A7D9B8; /* Custom Text Secondary */
}

.page-blog-beginner-guide-p888-game__sub-step-list {
  list-style: decimal;
  padding-left: 20px;
  color: #A7D9B8; /* Custom Text Secondary */
  margin-top: 10px;
}

.page-blog-beginner-guide-p888-game__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.page-blog-beginner-guide-p888-game__game-card {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  color: #F2FFF6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-beginner-guide-p888-game__game-title {
  color: #F2C14E; /* Custom Gold */
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.page-blog-beginner-guide-p888-game__game-description {
  color: #A7D9B8; /* Custom Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-beginner-guide-p888-game__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-beginner-guide-p888-game__image-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-beginner-guide-p888-game__text-link {
  color: #57E38D; /* Custom Glow */
  text-decoration: underline;
}

.page-blog-beginner-guide-p888-game__text-link:hover {
  color: #F2C14E; /* Custom Gold */
}

.page-blog-beginner-guide-p888-game__faq-list {
  margin-top: 30px;
}

.page-blog-beginner-guide-p888-game__faq-item {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-beginner-guide-p888-game__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #F2FFF6; /* Custom Text Main */
  font-weight: bold;
  font-size: 1.1rem;
  list-style: none; /* For details/summary */
}

.page-blog-beginner-guide-p888-game__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-beginner-guide-p888-game__faq-qtext {
  flex-grow: 1;
}

.page-blog-beginner-guide-p888-game__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Custom Glow */
}

.page-blog-beginner-guide-p888-game__faq-item[open] .page-blog-beginner-guide-p888-game__faq-toggle {
  content: "−";
}

.page-blog-beginner-guide-p888-game__faq-answer {
  padding: 0 20px 20px 20px;
  color: #A7D9B8; /* Custom Text Secondary */
  font-size: 0.95rem;
}

.page-blog-beginner-guide-p888-game__faq-answer p {
  margin-bottom: 10px;
}

.page-blog-beginner-guide-p888-game__faq-answer p:last-child {
  margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-blog-beginner-guide-p888-game__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-beginner-guide-p888-game__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-blog-beginner-guide-p888-game__hero-content {
    margin-top: -100px; /* Adjust for smaller screens */
    padding: 15px;
  }

  .page-blog-beginner-guide-p888-game__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-beginner-guide-p888-game__intro-text {
    font-size: 1rem;
  }

  .page-blog-beginner-guide-p888-game__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-beginner-guide-p888-game__btn-primary,
  .page-blog-beginner-guide-p888-game__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-beginner-guide-p888-game__section {
    padding: 40px 0;
  }

  .page-blog-beginner-guide-p888-game__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
  }

  .page-blog-beginner-guide-p888-game__text-block {
    font-size: 0.95rem;
  }

  .page-blog-beginner-guide-p888-game__feature-item,
  .page-blog-beginner-guide-p888-game__method-item,
  .page-blog-beginner-guide-p888-game__step-item,
  .page-blog-beginner-guide-p888-game__promotion-item,
  .page-blog-beginner-guide-p888-game__responsible-item,
  .page-blog-beginner-guide-p888-game__note-item {
    padding: 20px;
  }

  .page-blog-beginner-guide-p888-game__feature-item strong,
  .page-blog-beginner-guide-p888-game__method-title,
  .page-blog-beginner-guide-p888-game__step-title,
  .page-blog-beginner-guide-p888-game__promotion-title,
  .page-blog-beginner-guide-p888-game__responsible-item strong {
    font-size: 1.1rem;
  }

  .page-blog-beginner-guide-p888-game__game-categories {
    grid-template-columns: 1fr;
  }

  .page-blog-beginner-guide-p888-game img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-beginner-guide-p888-game__section,
  .page-blog-beginner-guide-p888-game__card,
  .page-blog-beginner-guide-p888-game__container,
  .page-blog-beginner-guide-p888-game__image-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-beginner-guide-p888-game__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-beginner-guide-p888-game__faq-answer {
    padding: 0 15px 15px 15px;
  }
}