/* style/blog-good88-card-game-beginner-guide.css */

/* Base styles for the page content, ensuring contrast with body background */
.page-blog-good88-card-game-beginner-guide {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-good88-card-game-beginner-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-good88-card-game-beginner-guide__section {
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-blog-good88-card-game-beginner-guide__dark-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
}

/* Hero Section */
.page-blog-good88-card-game-beginner-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-good88-card-game-beginner-guide__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-good88-card-game-beginner-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-blog-good88-card-game-beginner-guide__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  color: #F2FFF6;
}

.page-blog-good88-card-game-beginner-guide__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-blog-good88-card-game-beginner-guide__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8; /* Text Secondary */
}

/* Section Titles */
.page-blog-good88-card-game-beginner-guide__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 40px;
  font-weight: bold;
}

/* Text Blocks */
.page-blog-good88-card-game-beginner-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8; /* Text Secondary */
}

/* Buttons */
.page-blog-good88-card-game-beginner-guide__btn-primary,
.page-blog-good88-card-game-beginner-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-good88-card-game-beginner-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
  margin: 10px;
}

.page-blog-good88-card-game-beginner-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-good88-card-game-beginner-guide__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Lighter Green from gradient */
  border: 2px solid #2AD16F;
  margin: 10px;
}

.page-blog-good88-card-game-beginner-guide__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6;
  transform: translateY(-3px);
}

.page-blog-good88-card-game-beginner-guide__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 15px;
}

/* Features Grid */
.page-blog-good88-card-game-beginner-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-blog-good88-card-game-beginner-guide__feature-item {
  background-color: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-good88-card-game-beginner-guide__feature-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-blog-good88-card-game-beginner-guide__feature-description {
  color: #A7D9B8; /* Text Secondary */
}

/* Content with Image */
.page-blog-good88-card-game-beginner-guide__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-blog-good88-card-game-beginner-guide__image-wrapper {
  flex: 1 1 400px;
  min-width: 200px; /* Ensure min width for image */
  max-width: 600px;
}

.page-blog-good88-card-game-beginner-guide__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-blog-good88-card-game-beginner-guide__step-list,
.page-blog-good88-card-game-beginner-guide__strategy-list,
.page-blog-good88-card-game-beginner-guide__responsible-list {
  flex: 1 1 400px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-blog-good88-card-game-beginner-guide__step-item,
.page-blog-good88-card-game-beginner-guide__strategy-item,
.page-blog-good88-card-game-beginner-guide__responsible-list li {
  background-color: #11271B; /* Card BG */
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #2E7A4E;
  color: #A7D9B8;
}

.page-blog-good88-card-game-beginner-guide__step-title,
.page-blog-good88-card-game-beginner-guide__strategy-title {
  font-size: 1.3em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-blog-good88-card-game-beginner-guide__responsible-list strong {
  color: #F2C14E; /* Gold */
}

/* Game List */
.page-blog-good88-card-game-beginner-guide__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-blog-good88-card-game-beginner-guide__game-card {
  background-color: #0A4B2C; /* Deep Green */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
}

.page-blog-good88-card-game-beginner-guide__game-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-blog-good88-card-game-beginner-guide__game-description {
  color: #A7D9B8; /* Text Secondary */
}

/* Transaction Methods */
.page-blog-good88-card-game-beginner-guide__transaction-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-blog-good88-card-game-beginner-guide__method-card {
  flex: 1 1 350px;
  background-color: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
  text-align: left;
  color: #A7D9B8;
}

.page-blog-good88-card-game-beginner-guide__method-title {
  font-size: 1.6em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-blog-good88-card-game-beginner-guide__method-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-blog-good88-card-game-beginner-guide__method-list li {
  margin-bottom: 8px;
  color: #F2FFF6; /* Text Main */
}

/* FAQ Section */
.page-blog-good88-card-game-beginner-guide__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-blog-good88-card-game-beginner-guide__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-good88-card-game-beginner-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #11A84E; /* Main Color */
  border-bottom: 1px solid #2E7A4E;
}

.page-blog-good88-card-game-beginner-guide__faq-question:hover {
  background-color: #22C768; /* Auxiliary Color */
}

.page-blog-good88-card-game-beginner-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-good88-card-game-beginner-guide__faq-item[open] .page-blog-good88-card-game-beginner-guide__faq-toggle {
  content: '−';
}

.page-blog-good88-card-game-beginner-guide__faq-answer {
  padding: 20px;
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
}

/* Details element specific styling */
details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-blog-good88-card-game-beginner-guide__main-title {
    font-size: 2.8em;
  }
  .page-blog-good88-card-game-beginner-guide__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-good88-card-game-beginner-guide__hero-content {
    top: auto;
    bottom: 20px;
    transform: translateX(-50%);
    position: relative;
    margin-top: -100px; /* Adjust if needed to pull content over image */
  }
  .page-blog-good88-card-game-beginner-guide__hero-image {
    filter: brightness(0.4); /* More darken for mobile */
  }
  .page-blog-good88-card-game-beginner-guide__main-title {
    font-size: 2.2em;
    margin-top: 20px;
  }
  .page-blog-good88-card-game-beginner-guide__hero-description {
    font-size: 1em;
  }
  .page-blog-good88-card-game-beginner-guide__section {
    padding: 40px 0;
  }
  .page-blog-good88-card-game-beginner-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-good88-card-game-beginner-guide__text-block {
    font-size: 1em;
  }
  .page-blog-good88-card-game-beginner-guide__btn-primary,
  .page-blog-good88-card-game-beginner-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin: 5px 0;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-good88-card-game-beginner-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }
  .page-blog-good88-card-game-beginner-guide__features-grid,
  .page-blog-good88-card-game-beginner-guide__game-list,
  .page-blog-good88-card-game-beginner-guide__transaction-methods {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  .page-blog-good88-card-game-beginner-guide__content-wrapper {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }
  .page-blog-good88-card-game-beginner-guide__image-wrapper {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
  .page-blog-good88-card-game-beginner-guide__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-good88-card-game-beginner-guide__step-list,
  .page-blog-good88-card-game-beginner-guide__strategy-list,
  .page-blog-good88-card-game-beginner-guide__responsible-list {
    flex: none;
    width: 100%;
    padding: 0 15px;
  }
  .page-blog-good88-card-game-beginner-guide__faq-list {
    padding: 0 15px;
  }
  .page-blog-good88-card-game-beginner-guide__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-blog-good88-card-game-beginner-guide__faq-answer {
    font-size: 0.95em;
    padding: 15px;
  }
  .page-blog-good88-card-game-beginner-guide__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-good88-card-game-beginner-guide__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-good88-card-game-beginner-guide__video-section {
    padding-top: 10px !important;
  }
  .page-blog-good88-card-game-beginner-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-good88-card-game-beginner-guide__section,
  .page-blog-good88-card-game-beginner-guide__card,
  .page-blog-good88-card-game-beginner-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-good88-card-game-beginner-guide__video-section,
  .page-blog-good88-card-game-beginner-guide__video-container,
  .page-blog-good88-card-game-beginner-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-good88-card-game-beginner-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}