/* style/blog-5fit-latest-link-exclusive-promotions.css */

/* Custom Colors */
:root {
  --page-bg-color: #08160F;
  --card-bg-color: #11271B;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-blog-5fit-latest-link-exclusive-promotions {
  background-color: var(--page-bg-color);
  color: var(--text-main-color);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-blog-5fit-latest-link-exclusive-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-5fit-latest-link-exclusive-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
  overflow: hidden;
}

.page-blog-5fit-latest-link-exclusive-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-5fit-latest-link-exclusive-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-blog-5fit-latest-link-exclusive-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border-radius: 10px;
}

.page-blog-5fit-latest-link-exclusive-promotions__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main-color);
  margin-bottom: 20px;
}

.page-blog-5fit-latest-link-exclusive-promotions__intro-text {
  font-size: 1.1em;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

.page-blog-5fit-latest-link-exclusive-promotions__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-5fit-latest-link-exclusive-promotions__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
}

.page-blog-5fit-latest-link-exclusive-promotions__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-5fit-latest-link-exclusive-promotions__btn-secondary {
  background: var(--card-bg-color);
  color: var(--glow-color);
  border: 1px solid var(--glow-color);
}

.page-blog-5fit-latest-link-exclusive-promotions__btn-secondary:hover {
  background: var(--glow-color);
  color: var(--card-bg-color);
}

.page-blog-5fit-latest-link-exclusive-promotions__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-5fit-latest-link-exclusive-promotions__section:last-of-type {
  border-bottom: none;
}

.page-blog-5fit-latest-link-exclusive-promotions__section-title {
  font-size: 2.2em;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-blog-5fit-latest-link-exclusive-promotions__subsection-title {
  font-size: 1.6em;
  color: var(--text-main-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

.page-blog-5fit-latest-link-exclusive-promotions__text-block {
  font-size: 1em;
  color: var(--text-secondary-color);
  margin-bottom: 20px;
}

.page-blog-5fit-latest-link-exclusive-promotions__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-5fit-latest-link-exclusive-promotions__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--text-main-color);
}

.page-blog-5fit-latest-link-exclusive-promotions__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--glow-color);
  font-weight: bold;
}

.page-blog-5fit-latest-link-exclusive-promotions__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-blog-5fit-latest-link-exclusive-promotions__text-content {
  flex: 1;
}

.page-blog-5fit-latest-link-exclusive-promotions__image-wrapper {
  flex: 1;
  min-width: 200px; /* Minimum size for content images */
}

.page-blog-5fit-latest-link-exclusive-promotions__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-5fit-latest-link-exclusive-promotions__image-wrapper--full-width {
  flex: none;
  width: 100%;
  margin-top: 40px;
  text-align: center;
}

.page-blog-5fit-latest-link-exclusive-promotions__promotions-grid,
.page-blog-5fit-latest-link-exclusive-promotions__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-5fit-latest-link-exclusive-promotions__card {
  background-color: var(--card-bg-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--text-main-color);
  transition: transform 0.3s ease;
  min-height: 200px; /* Ensure card has minimum height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-5fit-latest-link-exclusive-promotions__card:hover {
  transform: translateY(-5px);
}

.page-blog-5fit-latest-link-exclusive-promotions__card-title {
  font-size: 1.4em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-5fit-latest-link-exclusive-promotions__card-text {
  font-size: 0.95em;
  color: var(--text-secondary-color);
  margin-bottom: 20px;
}

.page-blog-5fit-latest-link-exclusive-promotions__btn-text-link {
  color: var(--glow-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page-blog-5fit-latest-link-exclusive-promotions__btn-text-link:hover {
  color: var(--gold-color);
  text-decoration: underline;
}

.page-blog-5fit-latest-link-exclusive-promotions__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog-5fit-latest-link-exclusive-promotions__feature-item {
  background-color: var(--card-bg-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-5fit-latest-link-exclusive-promotions__feature-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-5fit-latest-link-exclusive-promotions__feature-description {
  color: var(--text-secondary-color);
}

.page-blog-5fit-latest-link-exclusive-promotions__faq-list {
  margin-top: 40px;
}

.page-blog-5fit-latest-link-exclusive-promotions__faq-item {
  background-color: var(--card-bg-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color);
}

.page-blog-5fit-latest-link-exclusive-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--deep-green-color);
  color: var(--text-main-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-5fit-latest-link-exclusive-promotions__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details/summary */
}

.page-blog-5fit-latest-link-exclusive-promotions__faq-question:hover {
  background-color: var(--divider-color);
}

.page-blog-5fit-latest-link-exclusive-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--gold-color);
}

.page-blog-5fit-latest-link-exclusive-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: var(--text-secondary-color);
  line-height: 1.6;
}

.page-blog-5fit-latest-link-exclusive-promotions__faq-item[open] .page-blog-5fit-latest-link-exclusive-promotions__faq-question {
  background-color: var(--divider-color);
}

.page-blog-5fit-latest-link-exclusive-promotions__button-group {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-blog-5fit-latest-link-exclusive-promotions {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 10px !important; /* body handles --header-offset */
  }

  .page-blog-5fit-latest-link-exclusive-promotions__container,
  .page-blog-5fit-latest-link-exclusive-promotions__section,
  .page-blog-5fit-latest-link-exclusive-promotions__card,
  .page-blog-5fit-latest-link-exclusive-promotions__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }

  .page-blog-5fit-latest-link-exclusive-promotions__hero-section {
    padding: 40px 0;
  }

  .page-blog-5fit-latest-link-exclusive-promotions__main-title {
    font-size: 1.8em;
  }

  .page-blog-5fit-latest-link-exclusive-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-5fit-latest-link-exclusive-promotions__subsection-title {
    font-size: 1.4em;
  }

  .page-blog-5fit-latest-link-exclusive-promotions__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-blog-5fit-latest-link-exclusive-promotions__image-wrapper {
    order: -1; /* Image first on mobile */
  }

  .page-blog-5fit-latest-link-exclusive-promotions__content-image,
  .page-blog-5fit-latest-link-exclusive-promotions__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-5fit-latest-link-exclusive-promotions__cta-button,
  .page-blog-5fit-latest-link-exclusive-promotions__btn-primary,
  .page-blog-5fit-latest-link-exclusive-promotions__btn-secondary,
  .page-blog-5fit-latest-link-exclusive-promotions a[class*="button"],
  .page-blog-5fit-latest-link-exclusive-promotions 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 !important;
    padding-right: 15px !important;
  }

  .page-blog-5fit-latest-link-exclusive-promotions__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-5fit-latest-link-exclusive-promotions__promotions-grid,
  .page-blog-5fit-latest-link-exclusive-promotions__game-categories,
  .page-blog-5fit-latest-link-exclusive-promotions__feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-5fit-latest-link-exclusive-promotions__card {
    padding: 20px;
  }
}