/* style/blog-why-win55-is-your-best-choice.css */

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

.page-blog-why-win55-is-your-best-choice {
  font-family: Arial, sans-serif;
  background-color: var(--win55-background); /* Body background is dark, use light text */
  color: var(--win55-text-main);
  line-height: 1.6;
}

.page-blog-why-win55-is-your-best-choice__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  overflow: hidden;
  background-color: var(--win55-deep-green);
}

.page-blog-why-win55-is-your-best-choice__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
  position: relative;
}

.page-blog-why-win55-is-your-best-choice__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text contrast, without changing color hue */
}

.page-blog-why-win55-is-your-best-choice__hero-content {
  max-width: 900px;
  margin-top: 40px;
  z-index: 10;
  padding: 0 20px;
}

.page-blog-why-win55-is-your-best-choice__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--win55-gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-why-win55-is-your-best-choice__intro-text {
  font-size: 1.1rem;
  color: var(--win55-text-secondary);
  margin-bottom: 30px;
}

.page-blog-why-win55-is-your-best-choice__cta-button {
  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-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-why-win55-is-your-best-choice__btn-primary {
  background: var(--win55-button-gradient);
  color: var(--win55-text-main);
  border: none;
}

.page-blog-why-win55-is-your-best-choice__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

.page-blog-why-win55-is-your-best-choice__btn-secondary {
  background-color: var(--win55-card-bg);
  color: var(--win55-primary-color);
  border: 2px solid var(--win55-primary-color);
}

.page-blog-why-win55-is-your-best-choice__btn-secondary:hover {
  background-color: var(--win55-primary-color);
  color: var(--win55-text-main);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-why-win55-is-your-best-choice__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  color: var(--win55-text-main);
}

.page-blog-why-win55-is-your-best-choice__dark-section {
  background-color: var(--win55-card-bg);
  padding: 60px 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 10px;
}

.page-blog-why-win55-is-your-best-choice__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--win55-gold-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-blog-why-win55-is-your-best-choice__paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--win55-text-secondary);
  text-align: justify;
}

.page-blog-why-win55-is-your-best-choice__feature-grid, 
.page-blog-why-win55-is-your-best-choice__promo-grid,
.page-blog-why-win55-is-your-best-choice__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-why-win55-is-your-best-choice__card {
  background-color: var(--win55-card-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--win55-border-color);
}

.page-blog-why-win55-is-your-best-choice__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-why-win55-is-your-best-choice__feature-title,
.page-blog-why-win55-is-your-best-choice__game-title,
.page-blog-why-win55-is-your-best-choice__promo-title,
.page-blog-why-win55-is-your-best-choice__guide-title {
  font-size: 1.6rem;
  color: var(--win55-gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-why-win55-is-your-best-choice__game-title a,
.page-blog-why-win55-is-your-best-choice__promo-title a,
.page-blog-why-win55-is-your-best-choice__guide-title a {
  color: var(--win55-gold-color);
  text-decoration: none;
}

.page-blog-why-win55-is-your-best-choice__game-title a:hover,
.page-blog-why-win55-is-your-best-choice__promo-title a:hover,
.page-blog-why-win55-is-your-best-choice__guide-title a:hover {
  text-decoration: underline;
}

.page-blog-why-win55-is-your-best-choice__feature-image,
.page-blog-why-win55-is-your-best-choice__promo-image,
.page-blog-why-win55-is-your-best-choice__game-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-why-win55-is-your-best-choice__feature-description,
.page-blog-why-win55-is-your-best-choice__game-description,
.page-blog-why-win55-is-your-best-choice__promo-description,
.page-blog-why-win55-is-your-best-choice__guide-description {
  font-size: 1rem;
  color: var(--win55-text-secondary);
  line-height: 1.6;
  text-align: justify;
}

.page-blog-why-win55-is-your-best-choice__game-showcase {
  margin-bottom: 40px;
  text-align: center;
}

.page-blog-why-win55-is-your-best-choice__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-blog-why-win55-is-your-best-choice__game-card {
  padding: 25px;
}

.page-blog-why-win55-is-your-best-choice__final-cta-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-blog-why-win55-is-your-best-choice__faq-list {
  margin-top: 40px;
}

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

.page-blog-why-win55-is-your-best-choice__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.15rem;
  border-bottom: 1px solid var(--win55-divider-color);
}

.page-blog-why-win55-is-your-best-choice__faq-question:hover {
  background-color: var(--win55-primary-color);
}

.page-blog-why-win55-is-your-best-choice__faq-qtext {
  flex-grow: 1;
  text-align: left;
}

.page-blog-why-win55-is-your-best-choice__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: var(--win55-gold-color);
}

.page-blog-why-win55-is-your-best-choice__faq-item[open] > .page-blog-why-win55-is-your-best-choice__faq-question {
  border-bottom: 1px solid var(--win55-divider-color);
}

.page-blog-why-win55-is-your-best-choice__faq-answer {
  padding: 20px 25px;
  background-color: var(--win55-card-bg);
  color: var(--win55-text-secondary);
  font-size: 1rem;
  text-align: justify;
}

.page-blog-why-win55-is-your-best-choice__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-why-win55-is-your-best-choice__faq-item summary {
  list-style: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-why-win55-is-your-best-choice__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-why-win55-is-your-best-choice__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

  .page-blog-why-win55-is-your-best-choice__main-title {
    font-size: 2.2rem;
  }

  .page-blog-why-win55-is-your-best-choice__intro-text {
    font-size: 1rem;
  }

  .page-blog-why-win55-is-your-best-choice__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-why-win55-is-your-best-choice__content-area {
    padding: 40px 15px;
  }

  .page-blog-why-win55-is-your-best-choice__dark-section {
    padding: 40px 15px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .page-blog-why-win55-is-your-best-choice__section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .page-blog-why-win55-is-your-best-choice__paragraph {
    font-size: 0.95rem;
  }

  .page-blog-why-win55-is-your-best-choice__feature-grid, 
  .page-blog-why-win55-is-your-best-choice__promo-grid,
  .page-blog-why-win55-is-your-best-choice__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .page-blog-why-win55-is-your-best-choice__card {
    padding: 25px;
  }

  .page-blog-why-win55-is-your-best-choice__feature-title,
  .page-blog-why-win55-is-your-best-choice__game-title,
  .page-blog-why-win55-is-your-best-choice__promo-title,
  .page-blog-why-win55-is-your-best-choice__guide-title {
    font-size: 1.4rem;
  }

  .page-blog-why-win55-is-your-best-choice__feature-description,
  .page-blog-why-win55-is-your-best-choice__game-description,
  .page-blog-why-win55-is-your-best-choice__promo-description,
  .page-blog-why-win55-is-your-best-choice__guide-description {
    font-size: 0.9rem;
  }

  .page-blog-why-win55-is-your-best-choice__game-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-why-win55-is-your-best-choice__game-image {
    margin-bottom: 20px;
  }

  .page-blog-why-win55-is-your-best-choice__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-why-win55-is-your-best-choice__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  /* Mobile specific image handling */
  .page-blog-why-win55-is-your-best-choice img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-why-win55-is-your-best-choice__section,
  .page-blog-why-win55-is-your-best-choice__card,
  .page-blog-why-win55-is-your-best-choice__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-why-win55-is-your-best-choice__video-section {
    padding-top: 10px !important; /* body đã xử lý --header-offset */
  }
  
  /* Button group for multiple buttons */
  .page-blog-why-win55-is-your-best-choice__cta-buttons,
  .page-blog-why-win55-is-your-best-choice__button-group,
  .page-blog-why-win55-is-your-best-choice__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;
    display: flex;
    flex-direction: column;
  }
}