/* style/blog-22win-game-strategy.css */

/* Base styles for the page content, ensuring contrast with dark body background */
.page-blog-22win-game-strategy {
  background-color: var(--background-color, #08160F); /* Fallback to custom background if --background-color is not set */
  color: #F2FFF6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-22win-game-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-22win-game-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08160F; /* Background color for the hero section */
  text-align: center;
}

.page-blog-22win-game-strategy__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image wrapper */
  margin-bottom: 30px; /* Space between image and content */
}

.page-blog-22win-game-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-blog-22win-game-strategy__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-22win-game-strategy__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-22win-game-strategy__description {
  font-size: 1.2rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* CTA Buttons */
.page-blog-22win-game-strategy__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-blog-22win-game-strategy__cta-buttons--center {
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-22win-game-strategy__btn-primary,
.page-blog-22win-game-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-blog-22win-game-strategy__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-22win-game-strategy__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-22win-game-strategy__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* A lighter green from gradient */
  border: 2px solid #2E7A4E; /* Border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-22win-game-strategy__btn-secondary:hover {
  background: #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
}

/* Content Sections */
.page-blog-22win-game-strategy__content-area {
  padding: 60px 0;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-22win-game-strategy__dark-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-blog-22win-game-strategy__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-blog-22win-game-strategy__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #2AD16F; /* A lighter green from gradient */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-22win-game-strategy p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-22win-game-strategy strong {
  color: #F2FFF6; /* Text Main */
}

.page-blog-22win-game-strategy__image-full {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

/* List styles */
.page-blog-22win-game-strategy__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-blog-22win-game-strategy__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-22win-game-strategy__list li::before {
  content: "✅"; /* Checkmark icon */
  position: absolute;
  left: 0;
  top: 0;
  color: #2AD16F; /* A lighter green from gradient */
}

/* FAQ Section */
.page-blog-22win-game-strategy__faq-list {
  margin-top: 40px;
}

.page-blog-22win-game-strategy__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-22win-game-strategy__faq-item summary {
  list-style: none; /* Hide default marker */
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-22win-game-strategy__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-blog-22win-game-strategy__faq-qtext {
  flex-grow: 1;
}

.page-blog-22win-game-strategy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

.page-blog-22win-game-strategy__faq-item[open] .page-blog-22win-game-strategy__faq-toggle {
  content: "−"; /* Change to minus when open */
}

.page-blog-22win-game-strategy__faq-answer {
  padding: 20px;
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #2E7A4E; /* Border */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-22win-game-strategy__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Small top padding for mobile */
  }

  .page-blog-22win-game-strategy__main-title {
    font-size: 2rem;
  }

  .page-blog-22win-game-strategy__description {
    font-size: 1rem;
  }

  .page-blog-22win-game-strategy__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
  }

  .page-blog-22win-game-strategy__btn-primary,
  .page-blog-22win-game-strategy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-22win-game-strategy__content-area {
    padding: 40px 0;
  }

  .page-blog-22win-game-strategy__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-22win-game-strategy__section-title {
    font-size: 1.8rem;
  }

  .page-blog-22win-game-strategy__sub-title {
    font-size: 1.2rem;
  }

  .page-blog-22win-game-strategy p,
  .page-blog-22win-game-strategy__list li,
  .page-blog-22win-game-strategy__faq-answer {
    font-size: 1rem;
  }

  /* Images responsive */
  .page-blog-22win-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px; /* Enforce min size for content images */
    min-height: 200px; /* Enforce min size for content images */
  }

  /* FAQ responsive */
  .page-blog-22win-game-strategy__faq-item summary {
    font-size: 1rem;
    padding: 15px;
  }
}

/* Ensuring min-width/height for images in content areas */
.page-blog-22win-game-strategy__content-area img {
  min-width: 200px;
  min-height: 200px;
}

/* No CSS filters allowed */
.page-blog-22win-game-strategy img {
  filter: none !important;
}

/* Desktop video container width for flex (no video on this page, but keeping for general compliance) */
.page-blog-22win-game-strategy__video-container {
    width: 100%; /* Ensure it's 100% on desktop too */
}

/* Global image style for content areas, ensuring min size */
.page-blog-22win-game-strategy img:not(.page-blog-22win-game-strategy__hero-image) {
    min-width: 200px;
    min-height: 200px;
}

/* Specific mobile button container adjustments */
@media (max-width: 768px) {
  .page-blog-22win-game-strategy__cta-buttons,
  .page-blog-22win-game-strategy__button-group,
  .page-blog-22win-game-strategy__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-blog-22win-game-strategy__cta-buttons {
    display: flex;
    flex-direction: column; /* Mobile vertical stacking */
  }
}