:root {
  --zx8801-primary-color: #11A84E;
  --zx8801-secondary-color: #22C768;
  --zx8801-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --zx8801-card-bg: #11271B;
  --zx8801-background: #08160F;
  --zx8801-text-main: #F2FFF6;
  --zx8801-text-secondary: #A7D9B8;
  --zx8801-border-color: #2E7A4E;
  --zx8801-glow-color: #57E38D;
  --zx8801-gold-color: #F2C14E;
  --zx8801-divider-color: #1E3A2A;
  --zx8801-deep-green: #0A4B2C;
}

/* body đã có padding-top: var(--header-offset) từ shared.css, không lặp lại ở đây */

.page-blog-zx8801-win-beginners-guide {
  background-color: var(--zx8801-background); /* #08160F - Dark background */
  color: var(--zx8801-text-main); /* #F2FFF6 - Light text for contrast */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-zx8801-win-beginners-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-blog-zx8801-win-beginners-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: var(--zx8801-deep-green); /* A darker green for hero background */
  overflow: hidden; /* Ensure image overflow is hidden */
}

.page-blog-zx8801-win-beginners-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
  margin-bottom: 40px;
}

.page-blog-zx8801-win-beginners-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 300px; /* Ensure image is not too small */
}

.page-blog-zx8801-win-beginners-guide__hero-content {
  position: relative; /* Ensure content is above any potential image overlap, though we avoid it */
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-zx8801-win-beginners-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
  color: var(--zx8801-gold-color); /* Gold for main title */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-blog-zx8801-win-beginners-guide__description {
  font-size: 1.15rem;
  color: var(--zx8801-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* General Sections */
.page-blog-zx8801-win-beginners-guide__content-section,
.page-blog-zx8801-win-beginners-guide__step-section,
.page-blog-zx8801-win-beginners-guide__tips-section,
.page-blog-zx8801-win-beginners-guide__support-section,
.page-blog-zx8801-win-beginners-guide__faq-section,
.page-blog-zx8801-win-beginners-guide__conclusion-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--zx8801-divider-color);
}

.page-blog-zx8801-win-beginners-guide__dark-bg {
  background-color: var(--zx8801-card-bg); /* #11271B - Darker green for sections */
  color: var(--zx8801-text-main); /* #F2FFF6 - Light text */
}

.page-blog-zx8801-win-beginners-guide__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--zx8801-primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-blog-zx8801-win-beginners-guide__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--zx8801-gold-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 500;
}

.page-blog-zx8801-win-beginners-guide__text-block {
  font-size: 1rem;
  color: var(--zx8801-text-secondary);
  margin-bottom: 20px;
}

.page-blog-zx8801-win-beginners-guide__list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  color: var(--zx8801-text-secondary);
}

.page-blog-zx8801-win-beginners-guide__list-item {
  margin-bottom: 10px;
  color: var(--zx8801-text-secondary);
}

.page-blog-zx8801-win-beginners-guide__list-item strong {
  color: var(--zx8801-primary-color);
}

.page-blog-zx8801-win-beginners-guide__image-block {
  text-align: center;
  margin: 30px 0;
}

.page-blog-zx8801-win-beginners-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce min-size */
  min-height: 200px; /* Enforce min-size */
}

/* Buttons */
.page-blog-zx8801-win-beginners-guide__btn-primary,
.page-blog-zx8801-win-beginners-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
  text-align: center;
}

.page-blog-zx8801-win-beginners-guide__btn-primary {
  background: var(--zx8801-button-gradient);
  color: #ffffff;
  border: 2px solid var(--zx8801-primary-color);
}

.page-blog-zx8801-win-beginners-guide__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-zx8801-win-beginners-guide__btn-secondary {
  background-color: transparent;
  color: var(--zx8801-primary-color);
  border: 2px solid var(--zx8801-primary-color);
}

.page-blog-zx8801-win-beginners-guide__btn-secondary:hover {
  background-color: var(--zx8801-primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

/* Game Categories */
.page-blog-zx8801-win-beginners-guide__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-zx8801-win-beginners-guide__game-card {
  background-color: var(--zx8801-card-bg);
  border: 1px solid var(--zx8801-border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-zx8801-win-beginners-guide__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-zx8801-win-beginners-guide__game-title {
  font-size: 1.4rem;
  color: var(--zx8801-gold-color);
  margin-bottom: 10px;
}

.page-blog-zx8801-win-beginners-guide__game-title a {
  color: inherit;
  text-decoration: none;
}

.page-blog-zx8801-win-beginners-guide__game-title a:hover {
  text-decoration: underline;
}

.page-blog-zx8801-win-beginners-guide__game-description {
  font-size: 0.95rem;
  color: var(--zx8801-text-secondary);
}

/* FAQ Section */
.page-blog-zx8801-win-beginners-guide__faq-list {
  margin-top: 30px;
}

.page-blog-zx8801-win-beginners-guide__faq-item {
  background-color: var(--zx8801-card-bg);
  border: 1px solid var(--zx8801-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-zx8801-win-beginners-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--zx8801-text-main);
  cursor: pointer;
  background-color: var(--zx8801-deep-green); /* Slightly darker for question header */
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-blog-zx8801-win-beginners-guide__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details/summary */
}

.page-blog-zx8801-win-beginners-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--zx8801-gold-color);
}

.page-blog-zx8801-win-beginners-guide__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--zx8801-text-secondary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog-zx8801-win-beginners-guide__faq-item[open] .page-blog-zx8801-win-beginners-guide__faq-answer {
  max-height: 500px; /* Adjust as needed for content length */
  padding-top: 15px;
}

.page-blog-zx8801-win-beginners-guide__faq-item[open] .page-blog-zx8801-win-beginners-guide__faq-toggle {
  content: '−';
}

/* Conclusion Section */
.page-blog-zx8801-win-beginners-guide__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Links */
.page-blog-zx8801-win-beginners-guide a {
  color: var(--zx8801-primary-color);
  text-decoration: underline;
}

.page-blog-zx8801-win-beginners-guide a:hover {
  color: var(--zx8801-gold-color);
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-zx8801-win-beginners-guide__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-zx8801-win-beginners-guide__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
}