/* style/blog-32win11-game-portal-introduction.css */

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

.page-blog-32win11-game-portal-introduction {
  font-family: 'Arial', sans-serif;
  color: var(--text-main-color); /* Default text color for the page */
  background-color: var(--background-color); /* Body background from shared.css, this is for consistency */
}

.page-blog-32win11-game-portal-introduction__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, then generous bottom padding */
  background-color: var(--card-bg-color); /* Dark background for hero section */
  overflow: hidden;
}

.page-blog-32win11-game-portal-introduction__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-blog-32win11-game-portal-introduction__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-blog-32win11-game-portal-introduction__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
  color: var(--text-main-color);
  margin-top: -100px; /* Pull content slightly over the image for visual flow, but not overlay */
}

.page-blog-32win11-game-portal-introduction__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main-color);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-blog-32win11-game-portal-introduction__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

.page-blog-32win11-game-portal-introduction__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-32win11-game-portal-introduction__btn-primary,
.page-blog-32win11-game-portal-introduction__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-32win11-game-portal-introduction__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-32win11-game-portal-introduction__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-32win11-game-portal-introduction__btn-secondary {
  background: transparent;
  color: var(--text-main-color);
  border: 2px solid var(--primary-color);
}

.page-blog-32win11-game-portal-introduction__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-32win11-game-portal-introduction__content-section {
  padding: 60px 0;
}

.page-blog-32win11-game-portal-introduction__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-32win11-game-portal-introduction__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--text-main-color);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-blog-32win11-game-portal-introduction__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-blog-32win11-game-portal-introduction p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-secondary-color);
}

.page-blog-32win11-game-portal-introduction__dark-bg {
  background-color: var(--background-color);
  color: var(--text-main-color);
}

.page-blog-32win11-game-portal-introduction__light-bg {
  background-color: #11271B; /* Using card-bg for contrast against main background */
  color: var(--text-main-color);
}

.page-blog-32win11-game-portal-introduction__text-main {
  color: var(--text-main-color);
}

.page-blog-32win11-game-portal-introduction__text-secondary {
  color: var(--text-secondary-color);
}

.page-blog-32win11-game-portal-introduction__image-container {
  margin: 30px 0;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-32win11-game-portal-introduction__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog-32win11-game-portal-introduction__cta-buttons--centered {
  margin-top: 40px;
}

.page-blog-32win11-game-portal-introduction__faq-section {
  padding: 60px 0;
  background-color: var(--card-bg-color);
}

.page-blog-32win11-game-portal-introduction__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.page-blog-32win11-game-portal-introduction__faq-item {
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.page-blog-32win11-game-portal-introduction__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-main-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-32win11-game-portal-introduction__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-32win11-game-portal-introduction__faq-question:hover {
  background-color: var(--deep-green-color);
}

.page-blog-32win11-game-portal-introduction__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--primary-color);
}

.page-blog-32win11-game-portal-introduction__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
}

.page-blog-32win11-game-portal-introduction__faq-item[open] .page-blog-32win11-game-portal-introduction__faq-question {
  background-color: var(--deep-green-color);
}

.page-blog-32win11-game-portal-introduction__conclusion-section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--background-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-32win11-game-portal-introduction__hero-content {
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .page-blog-32win11-game-portal-introduction__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-32win11-game-portal-introduction__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }

  .page-blog-32win11-game-portal-introduction__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-32win11-game-portal-introduction__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-blog-32win11-game-portal-introduction__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-blog-32win11-game-portal-introduction__btn-primary,
  .page-blog-32win11-game-portal-introduction__btn-secondary,
  .page-blog-32win11-game-portal-introduction a[class*="button"],
  .page-blog-32win11-game-portal-introduction a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 0.95rem;
  }

  .page-blog-32win11-game-portal-introduction__content-section,
  .page-blog-32win11-game-portal-introduction__faq-section,
  .page-blog-32win11-game-portal-introduction__conclusion-section {
    padding: 40px 0;
  }

  .page-blog-32win11-game-portal-introduction__content-area {
    padding: 0 15px;
  }

  .page-blog-32win11-game-portal-introduction__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-blog-32win11-game-portal-introduction__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-32win11-game-portal-introduction p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  /* Mobile image responsiveness */
  .page-blog-32win11-game-portal-introduction img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-32win11-game-portal-introduction__hero-image-wrapper,
  .page-blog-32win11-game-portal-introduction__image-container,
  .page-blog-32win11-game-portal-introduction__section,
  .page-blog-32win11-game-portal-introduction__card,
  .page-blog-32win11-game-portal-introduction__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-32win11-game-portal-introduction__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-32win11-game-portal-introduction__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-blog-32win11-game-portal-introduction__cta-buttons.page-blog-32win11-game-portal-introduction__cta-buttons--centered {
    padding: 0;
  }
}