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

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

.page-blog-m98-win-game-strategy {
  background-color: var(--m98-win-background);
  color: var(--m98-win-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-blog-m98-win-game-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  background-color: var(--m98-win-deep-green);
}

.page-blog-m98-win-game-strategy__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for aesthetic */
  overflow: hidden;
}

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

.page-blog-m98-win-game-strategy__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly with image for design */
  background: var(--m98-win-card-bg);
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--m98-win-border);
  z-index: 1;
}

.page-blog-m98-win-game-strategy__main-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--m98-win-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-blog-m98-win-game-strategy__description {
  font-size: 1.1rem;
  color: var(--m98-win-text-secondary);
  margin-bottom: 30px;
}

.page-blog-m98-win-game-strategy__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-m98-win-game-strategy__btn-primary,
.page-blog-m98-win-game-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-m98-win-game-strategy__btn-primary {
  background: var(--m98-win-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

.page-blog-m98-win-game-strategy__btn-secondary {
  background: transparent;
  color: var(--m98-win-text-main);
  border: 2px solid var(--m98-win-border);
}

.page-blog-m98-win-game-strategy__btn-secondary:hover {
  background: rgba(var(--m98-win-primary), 0.1);
  border-color: var(--m98-win-primary);
  color: var(--m98-win-primary);
}

/* General Section Styling */
.page-blog-m98-win-game-strategy__introduction-section,
.page-blog-m98-win-game-strategy__game-types-section,
.page-blog-m98-win-game-strategy__advanced-tips-section,
.page-blog-m98-win-game-strategy__promotions-section,
.page-blog-m98-win-game-strategy__faq-section,
.page-blog-m98-win-game-strategy__conclusion-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--m98-win-divider);
}

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

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

.page-blog-m98-win-game-strategy__paragraph {
  font-size: 1rem;
  color: var(--m98-win-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-m98-win-game-strategy__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-m98-win-game-strategy__content-image--centered {
  margin-left: auto;
  margin-right: auto;
}

/* Game Types Grid */
.page-blog-m98-win-game-strategy__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

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

.page-blog-m98-win-game-strategy__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-m98-win-game-strategy__card-title {
  font-size: 1.4rem;
  color: var(--m98-win-primary);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-m98-win-game-strategy__card-text {
  font-size: 0.95rem;
  color: var(--m98-win-text-secondary);
  margin-bottom: 20px;
}

.page-blog-m98-win-game-strategy__card-link {
  display: inline-block;
  color: var(--m98-win-gold);
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid var(--m98-win-gold);
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-blog-m98-win-game-strategy__card-link:hover {
  color: var(--m98-win-primary);
  border-color: var(--m98-win-primary);
}

/* List Styling */
.page-blog-m98-win-game-strategy__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-blog-m98-win-game-strategy__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: var(--m98-win-text-secondary);
  font-size: 1rem;
}

.page-blog-m98-win-game-strategy__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--m98-win-primary);
  font-weight: bold;
}

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

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

.page-blog-m98-win-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--m98-win-text-main);
  cursor: pointer;
  background-color: var(--m98-win-deep-green);
  border-bottom: 1px solid var(--m98-win-border);
}

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

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

.page-blog-m98-win-game-strategy__faq-question::marker {
  display: none;
}

.page-blog-m98-win-game-strategy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--m98-win-gold);
  transition: transform 0.3s ease;
}

.page-blog-m98-win-game-strategy__faq-item[open] .page-blog-m98-win-game-strategy__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-m98-win-game-strategy__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--m98-win-text-secondary);
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-m98-win-game-strategy__hero-content {
    margin-top: -60px;
    padding: 30px 20px;
  }

  .page-blog-m98-win-game-strategy__main-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .page-blog-m98-win-game-strategy__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  }

  .page-blog-m98-win-game-strategy__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-m98-win-game-strategy__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
  }

  .page-blog-m98-win-game-strategy__main-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

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

  .page-blog-m98-win-game-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-m98-win-game-strategy__btn-primary,
  .page-blog-m98-win-game-strategy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-m98-win-game-strategy__section-title {
    font-size: clamp(1.4rem, 4.5vw, 2rem);
    margin-bottom: 30px;
  }

  .page-blog-m98-win-game-strategy__introduction-section,
  .page-blog-m98-win-game-strategy__game-types-section,
  .page-blog-m98-win-game-strategy__advanced-tips-section,
  .page-blog-m98-win-game-strategy__promotions-section,
  .page-blog-m98-win-game-strategy__faq-section,
  .page-blog-m98-win-game-strategy__conclusion-section {
    padding: 40px 0;
  }

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

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

  .page-blog-m98-win-game-strategy__content-area,
  .page-blog-m98-win-game-strategy__card,
  .page-blog-m98-win-game-strategy__list,
  .page-blog-m98-win-game-strategy__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-m98-win-game-strategy__video-section {
    padding-top: 10px !important;
  }

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

  .page-blog-m98-win-game-strategy__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
}