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

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

.page-blog-67win-game-strategy {
  color: var(--67win-text-main); /* Body background is dark #08160F, so text is light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-67win-game-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-67win-game-strategy__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 675px; /* Fixed height for desktop to maintain aspect ratio */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-67win-game-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-67win-game-strategy__hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  padding: 30px 20px;
  width: 100%;
  box-sizing: border-box;
  z-index: 1;
}

.page-blog-67win-game-strategy__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  color: var(--67win-glow-color);
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-67win-game-strategy__description {
  font-size: 1.1rem;
  color: var(--67win-text-main);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-blog-67win-game-strategy__cta-button {
  display: inline-block;
  background: var(--67win-button-gradient);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
  border: none;
}

.page-blog-67win-game-strategy__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-67win-game-strategy__section {
  padding: 60px 20px;
  box-sizing: border-box;
}

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

.page-blog-67win-game-strategy__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--67win-gold-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-67win-game-strategy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--67win-primary-color);
  border-radius: 2px;
}

.page-blog-67win-game-strategy__text-block {
  font-size: 1.05rem;
  color: var(--67win-text-secondary);
  margin-bottom: 25px;
  text-align: justify;
}

.page-blog-67win-game-strategy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--67win-border-color);
}

.page-blog-67win-game-strategy__highlight {
  color: var(--67win-glow-color);
  font-weight: bold;
}

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

.page-blog-67win-game-strategy__card {
  background: var(--67win-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--67win-border-color);
  color: var(--67win-text-main);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-67win-game-strategy__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-67win-game-strategy__card-image {
  max-width: 100%;
  height: 200px; /* Fixed height for card images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--67win-deep-green-color);
}

.page-blog-67win-game-strategy__card-title {
  font-size: 1.5rem;
  color: var(--67win-glow-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog-67win-game-strategy__card-text {
  font-size: 0.95rem;
  color: var(--67win-text-secondary);
  margin-bottom: 25px;
  flex-grow: 1;
  text-align: justify;
}

.page-blog-67win-game-strategy__card-button {
  display: inline-block;
  background: var(--67win-button-gradient);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  width: fit-content;
  margin: 0 auto;
}

.page-blog-67win-game-strategy__card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

.page-blog-67win-game-strategy__promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-67win-game-strategy__cta-section {
  background: var(--67win-deep-green-color);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--67win-border-color);
}

.page-blog-67win-game-strategy__cta-text {
  font-size: 1.3rem;
  color: var(--67win-text-main);
  margin-bottom: 30px;
  font-weight: bold;
}

.page-blog-67win-game-strategy__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2rem;
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.5);
}

.page-blog-67win-game-strategy__cta-button--large:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(42, 209, 111, 0.7);
}

.page-blog-67win-game-strategy__faq-list {
  margin-top: 40px;
  border-top: 1px solid var(--67win-divider-color);
}

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

.page-blog-67win-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--67win-glow-color);
  cursor: pointer;
  background: var(--67win-deep-green-color);
  border-bottom: 1px solid transparent; /* default */
  transition: background-color 0.3s ease;
  list-style: none; /* Remove default marker for details */
}

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

.page-blog-67win-game-strategy__faq-question:hover {
  background-color: var(--67win-primary-color);
}

.page-blog-67win-game-strategy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-67win-game-strategy__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--67win-text-secondary);
  line-height: 1.7;
  /* For details tag, browser handles open/close */
}

.page-blog-67win-game-strategy__faq-item[open] .page-blog-67win-game-strategy__faq-question {
  border-bottom: 1px solid var(--67win-border-color);
  background-color: var(--67win-primary-color);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-67win-game-strategy__hero-image-wrapper {
    height: 500px;
  }
  .page-blog-67win-game-strategy__hero-content {
    padding: 25px 20px;
  }
  .page-blog-67win-game-strategy__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog-67win-game-strategy__section {
    padding: 40px 15px;
  }
  .page-blog-67win-game-strategy__card-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-blog-67win-game-strategy__hero-image-wrapper {
    height: 400px;
  }
  .page-blog-67win-game-strategy__hero-content {
    padding: 20px 15px;
  }
  .page-blog-67win-game-strategy__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-blog-67win-game-strategy__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-blog-67win-game-strategy__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-blog-67win-game-strategy__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-blog-67win-game-strategy__text-block {
    font-size: 0.95rem;
  }
  .page-blog-67win-game-strategy__grid,
  .page-blog-67win-game-strategy__promotion-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-blog-67win-game-strategy__card {
    padding: 25px;
  }
  .page-blog-67win-game-strategy__card-image {
    height: 160px;
  }
  .page-blog-67win-game-strategy__card-title {
    font-size: 1.3rem;
  }
  .page-blog-67win-game-strategy__card-text {
    font-size: 0.9rem;
  }
  .page-blog-67win-game-strategy__cta-section {
    padding: 30px;
    margin-top: 40px;
  }
  .page-blog-67win-game-strategy__cta-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  .page-blog-67win-game-strategy__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  .page-blog-67win-game-strategy__faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }
  .page-blog-67win-game-strategy__faq-answer {
    padding: 0 20px 18px;
    font-size: 0.95rem;
  }

  /* Mobile responsive for images */
  .page-blog-67win-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile responsive for containers */
  .page-blog-67win-game-strategy__section,
  .page-blog-67win-game-strategy__container,
  .page-blog-67win-game-strategy__card,
  .page-blog-67win-game-strategy__hero-section,
  .page-blog-67win-game-strategy__hero-image-wrapper,
  .page-blog-67win-game-strategy__hero-content,
  .page-blog-67win-game-strategy__grid,
  .page-blog-67win-game-strategy__promotion-cards,
  .page-blog-67win-game-strategy__cta-section,
  .page-blog-67win-game-strategy__faq-list,
  .page-blog-67win-game-strategy__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Mobile responsive for buttons */
  .page-blog-67win-game-strategy__cta-button,
  .page-blog-67win-game-strategy__card-button,
  .page-blog-67win-game-strategy__cta-button--large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Ensure flex containers wrap */
  .page-blog-67win-game-strategy__promotion-cards {
    flex-direction: column !important;
    gap: 15px;
  }
  .page-blog-67win-game-strategy__cta-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-67win-game-strategy__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-blog-67win-game-strategy__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}