/* style/blog-win55-game-strategy.css */
:root {
  --win55-green-main: #11A84E;
  --win55-green-aux: #22C768;
  --win55-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --win55-card-bg: #11271B;
  --win55-bg: #08160F;
  --win55-text-main: #F2FFF6;
  --win55-text-secondary: #A7D9B8;
  --win55-border: #2E7A4E;
  --win55-glow: #57E38D;
  --win55-gold: #F2C14E;
  --win55-divider: #1E3A2A;
  --win55-deep-green: #0A4B2C;
}

.page-blog-win55-game-strategy {
  background-color: var(--win55-bg); /* Dark background from custom colors */
  color: var(--win55-text-main); /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-win55-game-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
}

.page-blog-win55-game-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-blog-win55-game-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-win55-game-strategy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
  margin-top: 100px; /* Adjust if needed to push content down from header */
}

.page-blog-win55-game-strategy__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--win55-gold);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-blog-win55-game-strategy__hero-description {
  font-size: 1.15rem;
  color: var(--win55-text-main);
  margin-bottom: 30px;
}

.page-blog-win55-game-strategy__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-win55-game-strategy__btn-primary,
.page-blog-win55-game-strategy__btn-secondary,
.page-blog-win55-game-strategy a[class*="button"],
.page-blog-win55-game-strategy a[class*="btn"] {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-win55-game-strategy__btn-primary {
  background: var(--win55-button-gradient);
  color: var(--win55-text-main);
  border: 2px solid transparent;
}

.page-blog-win55-game-strategy__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-blog-win55-game-strategy__btn-secondary {
  background-color: transparent;
  color: var(--win55-gold);
  border: 2px solid var(--win55-gold);
}

.page-blog-win55-game-strategy__btn-secondary:hover {
  background-color: var(--win55-gold);
  color: var(--win55-bg);
  transform: translateY(-2px);
}

.page-blog-win55-game-strategy__section {
  padding: 60px 20px;
  background-color: var(--win55-bg);
}

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

.page-blog-win55-game-strategy__section-title {
  font-size: 2.5rem;
  color: var(--win55-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-win55-game-strategy__text-block {
  font-size: 1.1rem;
  color: var(--win55-text-main);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-win55-game-strategy__text-block strong {
  color: var(--win55-gold);
}

.page-blog-win55-game-strategy__introduction p:last-of-type {
  margin-bottom: 0;
}

.page-blog-win55-game-strategy__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-win55-game-strategy__feature-card {
  background-color: var(--win55-card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--win55-border);
}

.page-blog-win55-game-strategy__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%;
  display: block;
}

.page-blog-win55-game-strategy__feature-title {
  font-size: 1.6rem;
  color: var(--win55-gold);
  margin-bottom: 15px;
}

.page-blog-win55-game-strategy__feature-description {
  color: var(--win55-text-secondary);
  font-size: 1rem;
}

.page-blog-win55-game-strategy__strategy-item {
  background-color: var(--win55-card-bg);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 25px;
  border: 1px solid var(--win55-border);
}

.page-blog-win55-game-strategy__strategy-title {
  font-size: 1.8rem;
  color: var(--win55-green-aux);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-win55-game-strategy__strategy-list {
  list-style-type: disc;
  margin-left: 25px;
  color: var(--win55-text-main);
}

.page-blog-win55-game-strategy__strategy-list li {
  margin-bottom: 10px;
  color: var(--win55-text-main);
}

.page-blog-win55-game-strategy__strategy-list li strong {
  color: var(--win55-gold);
}

.page-blog-win55-game-strategy__image-center {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.page-blog-win55-game-strategy__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-win55-game-strategy__game-card {
  background-color: var(--win55-card-bg);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--win55-border);
  display: flex;
  flex-direction: column;
}

.page-blog-win55-game-strategy__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  max-width: 100%;
  display: block;
}

.page-blog-win55-game-strategy__game-title {
  font-size: 1.5rem;
  color: var(--win55-gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-win55-game-strategy__game-description {
  color: var(--win55-text-secondary);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 15px;
}

.page-blog-win55-game-strategy__btn-text {
  color: var(--win55-green-aux);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog-win55-game-strategy__btn-text:hover {
  color: var(--win55-gold);
  text-decoration: underline;
}

.page-blog-win55-game-strategy__list-bullet {
  list-style-type: disc;
  margin-left: 25px;
  color: var(--win55-text-main);
  margin-bottom: 20px;
}

.page-blog-win55-game-strategy__list-bullet li {
  margin-bottom: 10px;
  color: var(--win55-text-main);
}

.page-blog-win55-game-strategy__faq-list {
  margin-top: 30px;
}

.page-blog-win55-game-strategy__faq-item {
  background-color: var(--win55-card-bg);
  border: 1px solid var(--win55-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

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

.page-blog-win55-game-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-win55-game-strategy__faq-question:hover {
  background-color: var(--win55-green-main);
}

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

.page-blog-win55-game-strategy__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: var(--win55-gold);
}

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

.page-blog-win55-game-strategy__faq-item[open] .page-blog-win55-game-strategy__faq-answer {
  max-height: 500px; /* Arbitrary large value to allow content to expand */
  padding-top: 15px;
}

.page-blog-win55-game-strategy__faq-item[open] .page-blog-win55-game-strategy__faq-toggle {
  content: '−';
}

.page-blog-win55-game-strategy__faq-answer p {
  margin-bottom: 10px;
  color: var(--win55-text-secondary);
}

.page-blog-win55-game-strategy__faq-answer a {
  color: var(--win55-green-aux);
  text-decoration: underline;
}

.page-blog-win55-game-strategy__faq-answer a:hover {
  color: var(--win55-gold);
}

.page-blog-win55-game-strategy__cta-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-blog-win55-game-strategy__cta-section .page-blog-win55-game-strategy__section-title {
  color: var(--win55-gold);
}

.page-blog-win55-game-strategy__cta-section .page-blog-win55-game-strategy__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.page-blog-win55-game-strategy__text-link {
  color: var(--win55-green-aux);
  text-decoration: underline;
}

.page-blog-win55-game-strategy__text-link:hover {
  color: var(--win55-gold);
}

.page-blog-win55-game-strategy__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-win55-game-strategy__hero-content {
    margin-top: 80px;
  }

  .page-blog-win55-game-strategy__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-win55-game-strategy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-win55-game-strategy__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-win55-game-strategy__hero-content {
    margin-top: 60px;
    padding: 30px 15px;
  }

  .page-blog-win55-game-strategy__hero-title {
    font-size: 2.2rem;
  }

  .page-blog-win55-game-strategy__hero-description {
    font-size: 1rem;
  }

  .page-blog-win55-game-strategy__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-win55-game-strategy__btn-primary,
  .page-blog-win55-game-strategy__btn-secondary,
  .page-blog-win55-game-strategy a[class*="button"],
  .page-blog-win55-game-strategy a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-win55-game-strategy__cta-buttons,
  .page-blog-win55-game-strategy__button-group,
  .page-blog-win55-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-win55-game-strategy__section {
    padding: 40px 15px;
  }

  .page-blog-win55-game-strategy__container {
    padding-left: 0;
    padding-right: 0;
  }

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

  .page-blog-win55-game-strategy__text-block {
    font-size: 1rem;
  }

  .page-blog-win55-game-strategy__feature-grid,
  .page-blog-win55-game-strategy__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-win55-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-win55-game-strategy__feature-image,
  .page-blog-win55-game-strategy__game-image,
  .page-blog-win55-game-strategy__image-center {
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-win55-game-strategy__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-win55-game-strategy__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-win55-game-strategy__hero-title {
    font-size: 1.8rem;
  }

  .page-blog-win55-game-strategy__section-title {
    font-size: 1.5rem;
  }

  .page-blog-win55-game-strategy__strategy-title {
    font-size: 1.4rem;
  }

  .page-blog-win55-game-strategy__faq-question {
    font-size: 0.95rem;
  }
}