/* style/blog-latest-promotions-and-game-guide.css */

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

.page-blog-latest-promotions-and-game-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-text-main); /* Default text color for dark background */
  background-color: var(--page-background-color);
}

.page-blog-latest-promotions-and-game-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-latest-promotions-and-game-guide__section-title {
  font-size: 2.5em;
  color: var(--page-text-main);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-latest-promotions-and-game-guide__section-description {
  font-size: 1.1em;
  color: var(--page-text-secondary);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-latest-promotions-and-game-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--page-background-color);
  overflow: hidden;
}

.page-blog-latest-promotions-and-game-guide__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 40px;
}

.page-blog-latest-promotions-and-game-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog-latest-promotions-and-game-guide__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative; /* Ensure content is above image if z-index is used, but not overlapping */
  z-index: 2;
}

.page-blog-latest-promotions-and-game-guide__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
  color: var(--page-text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -1px;
}

.page-blog-latest-promotions-and-game-guide__hero-description {
  font-size: 1.15em;
  color: var(--page-text-secondary);
  margin-bottom: 30px;
}

.page-blog-latest-promotions-and-game-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-latest-promotions-and-game-guide__btn-primary,
.page-blog-latest-promotions-and-game-guide__btn-secondary,
.page-blog-latest-promotions-and-game-guide__card-button {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word;
}

.page-blog-latest-promotions-and-game-guide__btn-primary {
  background: var(--page-button-gradient);
  color: #ffffff; /* White text for primary button */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-promotions-and-game-guide__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-blog-latest-promotions-and-game-guide__btn-secondary:hover {
  background-color: var(--page-primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-promotions-and-game-guide__about-section,
.page-blog-latest-promotions-and-game-guide__promotions-section,
.page-blog-latest-promotions-and-game-guide__blog-news-section,
.page-blog-latest-promotions-and-game-guide__responsible-gaming-section {
  padding: 80px 0;
  background-color: var(--page-background-color);
  color: var(--page-text-main);
}

.page-blog-latest-promotions-and-game-guide__dark-bg {
  background-color: var(--page-background-color);
  color: var(--page-text-main);
}

.page-blog-latest-promotions-and-game-guide__light-bg {
  background-color: #0d1a13; /* A slightly lighter dark background for contrast */
  color: var(--page-text-main);
}

.page-blog-latest-promotions-and-game-guide__about-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-blog-latest-promotions-and-game-guide__about-text {
  flex: 1;
}

.page-blog-latest-promotions-and-game-guide__about-text p {
  margin-bottom: 20px;
  color: var(--page-text-secondary);
  font-size: 1.05em;
}

.page-blog-latest-promotions-and-game-guide__about-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-blog-latest-promotions-and-game-guide__about-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog-latest-promotions-and-game-guide__games-section,
.page-blog-latest-promotions-and-game-guide__guides-section,
.page-blog-latest-promotions-and-game-guide__faq-section {
  padding: 80px 0;
  background-color: var(--page-background-color);
  color: var(--page-text-main);
}

.page-blog-latest-promotions-and-game-guide__games-grid,
.page-blog-latest-promotions-and-game-guide__promotions-grid,
.page-blog-latest-promotions-and-game-guide__guides-grid,
.page-blog-latest-promotions-and-game-guide__blog-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-latest-promotions-and-game-guide__game-card,
.page-blog-latest-promotions-and-game-guide__promo-card,
.page-blog-latest-promotions-and-game-guide__guide-card,
.page-blog-latest-promotions-and-game-guide__blog-news-card,
.page-blog-latest-promotions-and-game-guide__faq-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-latest-promotions-and-game-guide__game-card:hover,
.page-blog-latest-promotions-and-game-guide__promo-card:hover,
.page-blog-latest-promotions-and-game-guide__guide-card:hover,
.page-blog-latest-promotions-and-game-guide__blog-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-promotions-and-game-guide__game-image,
.page-blog-latest-promotions-and-game-guide__blog-news-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-latest-promotions-and-game-guide__game-title,
.page-blog-latest-promotions-and-game-guide__promo-title,
.page-blog-latest-promotions-and-game-guide__guide-title,
.page-blog-latest-promotions-and-game-guide__blog-news-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog-latest-promotions-and-game-guide__game-title a,
.page-blog-latest-promotions-and-game-guide__guide-title a,
.page-blog-latest-promotions-and-game-guide__blog-news-title a {
  color: var(--page-gold-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-latest-promotions-and-game-guide__game-title a:hover,
.page-blog-latest-promotions-and-game-guide__guide-title a:hover,
.page-blog-latest-promotions-and-game-guide__blog-news-title a:hover {
  color: var(--page-secondary-color);
}

.page-blog-latest-promotions-and-game-guide__game-description,
.page-blog-latest-promotions-and-game-guide__promo-description,
.page-blog-latest-promotions-and-game-guide__guide-description {
  font-size: 1em;
  color: var(--page-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-latest-promotions-and-game-guide__card-button {
  background: var(--page-button-gradient);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 5px;
  align-self: center;
}

.page-blog-latest-promotions-and-game-guide__card-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.page-blog-latest-promotions-and-game-guide__center-cta {
  text-align: center;
  margin-top: 50px;
}

.page-blog-latest-promotions-and-game-guide__blog-news-card {
  text-align: left;
}

.page-blog-latest-promotions-and-game-guide__blog-news-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog-latest-promotions-and-game-guide__blog-news-meta {
  font-size: 0.9em;
  color: var(--page-text-secondary);
  margin-bottom: 10px;
}

.page-blog-latest-promotions-and-game-guide__blog-news-excerpt {
  font-size: 1em;
  color: var(--page-text-secondary);
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-blog-latest-promotions-and-game-guide__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-blog-latest-promotions-and-game-guide__faq-item {
  text-align: left;
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 10px;
  overflow: hidden;
}

.page-blog-latest-promotions-and-game-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--page-text-main);
  transition: background-color 0.3s ease;
}

.page-blog-latest-promotions-and-game-guide__faq-item[open] .page-blog-latest-promotions-and-game-guide__faq-question {
  background-color: var(--page-deep-green-color);
}

.page-blog-latest-promotions-and-game-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-gold-color);
}

.page-blog-latest-promotions-and-game-guide__faq-answer {
  padding: 0 25px 20px;
  color: var(--page-text-secondary);
  font-size: 1em;
}

.page-blog-latest-promotions-and-game-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-latest-promotions-and-game-guide__faq-item summary {
  list-style: none;
}

/* Sticky CTA */
.page-blog-latest-promotions-and-game-guide__sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-blog-latest-promotions-and-game-guide__sticky-btn {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.page-blog-latest-promotions-and-game-guide__sticky-btn:hover {
  transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-blog-latest-promotions-and-game-guide__about-grid {
    flex-direction: column;
  }
}

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

  .page-blog-latest-promotions-and-game-guide__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-latest-promotions-and-game-guide__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-latest-promotions-and-game-guide__hero-description {
    font-size: 1em;
  }

  .page-blog-latest-promotions-and-game-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-latest-promotions-and-game-guide__btn-primary,
  .page-blog-latest-promotions-and-game-guide__btn-secondary,
  .page-blog-latest-promotions-and-game-guide__card-button {
    width: 100% !important;
    max-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-latest-promotions-and-game-guide__section-title {
    font-size: 2em;
  }

  .page-blog-latest-promotions-and-game-guide__section-description {
    font-size: 1em;
  }

  .page-blog-latest-promotions-and-game-guide__games-grid,
  .page-blog-latest-promotions-and-game-guide__promotions-grid,
  .page-blog-latest-promotions-and-game-guide__guides-grid,
  .page-blog-latest-promotions-and-game-guide__blog-news-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-latest-promotions-and-game-guide__game-card,
  .page-blog-latest-promotions-and-game-guide__promo-card,
  .page-blog-latest-promotions-and-game-guide__guide-card,
  .page-blog-latest-promotions-and-game-guide__blog-news-card,
  .page-blog-latest-promotions-and-game-guide__faq-item,
  .page-blog-latest-promotions-and-game-guide__container,
  .page-blog-latest-promotions-and-game-guide__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-latest-promotions-and-game-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-latest-promotions-and-game-guide video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-latest-promotions-and-game-guide__video-section,
  .page-blog-latest-promotions-and-game-guide__video-container,
  .page-blog-latest-promotions-and-game-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-latest-promotions-and-game-guide__sticky-cta {
    flex-direction: row;
    width: calc(100% - 40px);
    left: 20px;
    right: 20px;
    bottom: 15px;
    justify-content: space-around;
  }

  .page-blog-latest-promotions-and-game-guide__sticky-btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 0.9em;
  }
}