/* style/blog-haybet-latest-promotions-overview.css */

:root {
  --haybet-primary-color: #26A9E0;
  --haybet-secondary-color: #FFFFFF;
  --haybet-login-color: #EA7C07;
  --haybet-dark-background: #0a0a0a;
  --haybet-light-text: #ffffff;
  --haybet-dark-text: #333333;
  --haybet-border-color: rgba(255, 255, 255, 0.1);
}

.page-blog-haybet-latest-promotions-overview {
  color: var(--haybet-light-text); /* Body background is dark #0a0a0a, so text is light */
  background-color: var(--haybet-dark-background);
}

.page-blog-haybet-latest-promotions-overview__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body already handles padding-top from header */
  overflow: hidden;
}

.page-blog-haybet-latest-promotions-overview__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
}

.page-blog-haybet-latest-promotions-overview__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-haybet-latest-promotions-overview__hero-content {
  position: relative;
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: -150px; /* Overlap slightly for visual effect, but not covering the image fully */
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, var(--haybet-dark-background) 50%);
  color: var(--haybet-light-text);
}

.page-blog-haybet-latest-promotions-overview__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--haybet-secondary-color);
  margin-bottom: 15px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-haybet-latest-promotions-overview__lead-text {
  font-size: 1.15em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-blog-haybet-latest-promotions-overview__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-haybet-latest-promotions-overview__btn-primary,
.page-blog-haybet-latest-promotions-overview__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-haybet-latest-promotions-overview__btn-primary {
  background-color: var(--haybet-primary-color);
  color: var(--haybet-secondary-color);
  border: 2px solid var(--haybet-primary-color);
}

.page-blog-haybet-latest-promotions-overview__btn-primary:hover {
  background-color: darken(var(--haybet-primary-color), 10%);
  border-color: darken(var(--haybet-primary-color), 10%);
}

.page-blog-haybet-latest-promotions-overview__btn-secondary {
  background-color: transparent;
  color: var(--haybet-primary-color);
  border: 2px solid var(--haybet-primary-color);
}

.page-blog-haybet-latest-promotions-overview__btn-secondary:hover {
  background-color: var(--haybet-primary-color);
  color: var(--haybet-secondary-color);
}

.page-blog-haybet-latest-promotions-overview__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-haybet-latest-promotions-overview__section-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--haybet-primary-color);
}

.page-blog-haybet-latest-promotions-overview__intro-section,
.page-blog-haybet-latest-promotions-overview__promotions-types-section,
.page-blog-haybet-latest-promotions-overview__guide-section,
.page-blog-haybet-latest-promotions-overview__why-choose-section,
.page-blog-haybet-latest-promotions-overview__faq-section,
.page-blog-haybet-latest-promotions-overview__cta-final-section {
  padding: 60px 0;
}

.page-blog-haybet-latest-promotions-overview__text-block {
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.page-blog-haybet-latest-promotions-overview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-haybet-latest-promotions-overview__promotion-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for dark background */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--haybet-border-color);
}

.page-blog-haybet-latest-promotions-overview__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-haybet-latest-promotions-overview__card-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--haybet-secondary-color);
}

.page-blog-haybet-latest-promotions-overview__card-text {
  font-size: 0.95em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-haybet-latest-promotions-overview__card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--haybet-primary-color);
  color: var(--haybet-secondary-color);
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-haybet-latest-promotions-overview__card-button:hover {
  background-color: darken(var(--haybet-primary-color), 10%);
}

.page-blog-haybet-latest-promotions-overview__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-blog-haybet-latest-promotions-overview__step-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--haybet-border-color);
}

.page-blog-haybet-latest-promotions-overview__step-title {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--haybet-primary-color);
}

.page-blog-haybet-latest-promotions-overview__step-text {
  font-size: 0.95em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.page-blog-haybet-latest-promotions-overview__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-blog-haybet-latest-promotions-overview__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-blog-haybet-latest-promotions-overview__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--haybet-border-color);
}

.page-blog-haybet-latest-promotions-overview__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: contain; /* Ensure icons are contained if they are smaller */
}

.page-blog-haybet-latest-promotions-overview__feature-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--haybet-secondary-color);
}

.page-blog-haybet-latest-promotions-overview__feature-text {
  font-size: 0.95em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.page-blog-haybet-latest-promotions-overview__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-haybet-latest-promotions-overview__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid var(--haybet-border-color);
  overflow: hidden;
}

.page-blog-haybet-latest-promotions-overview__faq-item summary {
  list-style: none;
}

.page-blog-haybet-latest-promotions-overview__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-haybet-latest-promotions-overview__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  color: var(--haybet-secondary-color);
  background-color: rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease;
}

.page-blog-haybet-latest-promotions-overview__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-blog-haybet-latest-promotions-overview__faq-qtext {
  flex-grow: 1;
  font-size: 1.1em;
}

.page-blog-haybet-latest-promotions-overview__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--haybet-primary-color);
}

.page-blog-haybet-latest-promotions-overview__faq-answer {
  padding: 15px 25px 20px;
  font-size: 0.95em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.page-blog-haybet-latest-promotions-overview__cta-final-section .page-blog-haybet-latest-promotions-overview__container {
  background-color: var(--haybet-primary-color);
  border-radius: 12px;
  text-align: center;
  padding: 50px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-blog-haybet-latest-promotions-overview__cta-final-section .page-blog-haybet-latest-promotions-overview__section-title {
  color: var(--haybet-secondary-color);
  margin-bottom: 20px;
}

.page-blog-haybet-latest-promotions-overview__cta-final-section .page-blog-haybet-latest-promotions-overview__text-block {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.page-blog-haybet-latest-promotions-overview__cta-final-section .page-blog-haybet-latest-promotions-overview__btn-primary {
  background-color: var(--haybet-secondary-color);
  color: var(--haybet-primary-color);
  border-color: var(--haybet-secondary-color);
}

.page-blog-haybet-latest-promotions-overview__cta-final-section .page-blog-haybet-latest-promotions-overview__btn-primary:hover {
  background-color: darken(var(--haybet-secondary-color), 10%);
  border-color: darken(var(--haybet-secondary-color), 10%);
}

.page-blog-haybet-latest-promotions-overview__cta-final-section .page-blog-haybet-latest-promotions-overview__btn-secondary {
  background-color: transparent;
  color: var(--haybet-secondary-color);
  border-color: var(--haybet-secondary-color);
}

.page-blog-haybet-latest-promotions-overview__cta-final-section .page-blog-haybet-latest-promotions-overview__btn-secondary:hover {
  background-color: var(--haybet-secondary-color);
  color: var(--haybet-primary-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-haybet-latest-promotions-overview__hero-content {
    margin-top: -100px;
  }
}

@media (max-width: 768px) {
  .page-blog-haybet-latest-promotions-overview {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-haybet-latest-promotions-overview__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-haybet-latest-promotions-overview__hero-content {
    margin-top: -80px;
    padding: 15px;
  }

  .page-blog-haybet-latest-promotions-overview__main-title {
    font-size: 1.8em;
  }

  .page-blog-haybet-latest-promotions-overview__lead-text {
    font-size: 1em;
  }

  .page-blog-haybet-latest-promotions-overview__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-haybet-latest-promotions-overview__btn-primary,
  .page-blog-haybet-latest-promotions-overview__btn-secondary,
  .page-blog-haybet-latest-promotions-overview__card-button,
  .page-blog-haybet-latest-promotions-overview a[class*="button"],
  .page-blog-haybet-latest-promotions-overview 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-haybet-latest-promotions-overview__container,
  .page-blog-haybet-latest-promotions-overview__promotion-card,
  .page-blog-haybet-latest-promotions-overview__step-item,
  .page-blog-haybet-latest-promotions-overview__feature-item,
  .page-blog-haybet-latest-promotions-overview__faq-item,
  .page-blog-haybet-latest-promotions-overview__cta-final-section .page-blog-haybet-latest-promotions-overview__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-haybet-latest-promotions-overview__section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }

  .page-blog-haybet-latest-promotions-overview__grid,
  .page-blog-haybet-latest-promotions-overview__guide-steps,
  .page-blog-haybet-latest-promotions-overview__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-haybet-latest-promotions-overview__card-image,
  .page-blog-haybet-latest-promotions-overview__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px;
    min-height: 200px;
  }

  .page-blog-haybet-latest-promotions-overview__intro-section,
  .page-blog-haybet-latest-promotions-overview__promotions-types-section,
  .page-blog-haybet-latest-promotions-overview__guide-section,
  .page-blog-haybet-latest-promotions-overview__why-choose-section,
  .page-blog-haybet-latest-promotions-overview__faq-section,
  .page-blog-haybet-latest-promotions-overview__cta-final-section {
    padding: 40px 0;
  }

  .page-blog-haybet-latest-promotions-overview__faq-question {
    padding: 15px 20px;
  }

  .page-blog-haybet-latest-promotions-overview__faq-qtext {
    font-size: 1em;
  }

  .page-blog-haybet-latest-promotions-overview__faq-answer {
    padding: 10px 20px 15px;
  }

  .page-blog-haybet-latest-promotions-overview__cta-final-section .page-blog-haybet-latest-promotions-overview__container {
    padding: 40px 20px;
  }

  .page-blog-haybet-latest-promotions-overview__cta-final-section .page-blog-haybet-latest-promotions-overview__cta-group {
    flex-direction: column;
  }
}

/* Ensure all content images in main area are at least 200px */
.page-blog-haybet-latest-promotions-overview img {
  min-width: 200px;
  min-height: 200px;
}

/* For images that are conceptually icons but must meet min size */
.page-blog-haybet-latest-promotions-overview__feature-icon {
  width: 200px; /* Enforce min size */
  height: 200px; /* Enforce min size */
  object-fit: contain; /* Adjust to fit content */
}