/* style/blog-hdbet-popular-games-strategy.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-dark: #000000;
  --button-login-bg: #EA7C07;
}

.page-blog-hdbet-popular-games-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--background-dark); /* Ensure consistency with body background */
}

/* Hero Section */
.page-blog-hdbet-popular-games-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  background-color: var(--background-dark);
  overflow: hidden;
}

.page-blog-hdbet-popular-games-strategy__hero-image {
  width: 100%;
  height: auto;
  max-height: 675px; /* Max height for desktop hero */
  object-fit: cover;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.page-blog-hdbet-popular-games-strategy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-light);
  padding: 0 20px;
}

.page-blog-hdbet-popular-games-strategy__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary-color); /* Use brand color for main title */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-blog-hdbet-popular-games-strategy__intro-text {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-hdbet-popular-games-strategy__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%; /* Ensure button container is full width on desktop */
  max-width: 500px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-hdbet-popular-games-strategy__btn-primary,
.page-blog-hdbet-popular-games-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
  box-sizing: border-box;
  text-align: center;
}

.page-blog-hdbet-popular-games-strategy__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-blog-hdbet-popular-games-strategy__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-blog-hdbet-popular-games-strategy__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-hdbet-popular-games-strategy__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Content Area */
.page-blog-hdbet-popular-games-strategy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--secondary-color); /* Light background for content */
  color: var(--text-dark); /* Dark text for light background */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-hdbet-popular-games-strategy__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary-color);
  text-align: center;
}

.page-blog-hdbet-popular-games-strategy__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-blog-hdbet-popular-games-strategy p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-blog-hdbet-popular-games-strategy a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-blog-hdbet-popular-games-strategy a:hover {
  text-decoration: underline;
}

.page-blog-hdbet-popular-games-strategy__list,
.page-blog-hdbet-popular-games-strategy__numbered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-blog-hdbet-popular-games-strategy__numbered-list {
  list-style-type: decimal;
}

.page-blog-hdbet-popular-games-strategy__list-item {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.page-blog-hdbet-popular-games-strategy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-blog-hdbet-popular-games-strategy__faq-list {
  margin-top: 30px;
}

.page-blog-hdbet-popular-games-strategy__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-dark);
}

.page-blog-hdbet-popular-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  position: relative;
  list-style: none; /* For details summary */
}

.page-blog-hdbet-popular-games-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hdbet-popular-games-strategy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--primary-color);
}

.page-blog-hdbet-popular-games-strategy__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-hdbet-popular-games-strategy__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-hdbet-popular-games-strategy__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-blog-hdbet-popular-games-strategy__intro-text {
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
  }

  .page-blog-hdbet-popular-games-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-hdbet-popular-games-strategy__btn-primary,
  .page-blog-hdbet-popular-games-strategy__btn-secondary {
    width: 100% !important; /* Ensure buttons are full width on mobile */
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-hdbet-popular-games-strategy__content-area {
    padding: 30px 15px;
  }

  .page-blog-hdbet-popular-games-strategy__section-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
    margin-bottom: 25px;
  }

  .page-blog-hdbet-popular-games-strategy__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-hdbet-popular-games-strategy p,
  .page-blog-hdbet-popular-games-strategy__list-item {
    font-size: 1rem;
  }

  .page-blog-hdbet-popular-games-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-blog-hdbet-popular-games-strategy__hero-image {
    max-height: 300px;
  }

  .page-blog-hdbet-popular-games-strategy__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-hdbet-popular-games-strategy__faq-answer {
    padding: 0 20px 15px;
  }

  .page-blog-hdbet-popular-games-strategy__faq-toggle {
    font-size: 1.3rem;
  }

  /* Ensure all containers are full width on mobile */
  .page-blog-hdbet-popular-games-strategy__hero-section,
  .page-blog-hdbet-popular-games-strategy__content-area,
  .page-blog-hdbet-popular-games-strategy__cta-buttons,
  .page-blog-hdbet-popular-games-strategy__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-blog-hdbet-popular-games-strategy__content-area {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-hdbet-popular-games-strategy__hero-content {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Color contrast for dark background */
.page-blog-hdbet-popular-games-strategy__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-blog-hdbet-popular-games-strategy__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}