/* style/blog-how-to-get-exclusive-offers-pg66.css */

/* Base styles for the page content, ensuring contrast with dark body background */
.page-blog-how-to-get-exclusive-offers-pg66 {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Rely on body background from shared.css */
}

.page-blog-how-to-get-exclusive-offers-pg66 a {
  color: #26A9E0;
  text-decoration: none;
}

.page-blog-how-to-get-exclusive-offers-pg66 a:hover {
  text-decoration: underline;
}

.page-blog-how-to-get-exclusive-offers-pg66__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-get-exclusive-offers-pg66__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
}

.page-blog-how-to-get-exclusive-offers-pg66__video-wrapper {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 30px; /* Space between video and content */
}

.page-blog-how-to-get-exclusive-offers-pg66__hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.page-blog-how-to-get-exclusive-offers-pg66__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-get-exclusive-offers-pg66__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 15px;
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
}

.page-blog-how-to-get-exclusive-offers-pg66__hero-description {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-how-to-get-exclusive-offers-pg66__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-how-to-get-exclusive-offers-pg66__btn-primary,
.page-blog-how-to-get-exclusive-offers-pg66__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
  max-width: 100%;
}

.page-blog-how-to-get-exclusive-offers-pg66__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-how-to-get-exclusive-offers-pg66__btn-primary:hover {
  background-color: #1a7fb3;
  border-color: #1a7fb3;
}

.page-blog-how-to-get-exclusive-offers-pg66__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-how-to-get-exclusive-offers-pg66__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* General Section Styles */
.page-blog-how-to-get-exclusive-offers-pg66__section {
  padding: 60px 0;
}

.page-blog-how-to-get-exclusive-offers-pg66__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-how-to-get-exclusive-offers-pg66__introduction p {
  text-align: center;
  font-size: 1.1rem;
}

/* Content Grid */
.page-blog-how-to-get-exclusive-offers-pg66__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-how-to-get-exclusive-offers-pg66__card,
.page-blog-how-to-get-exclusive-offers-pg66__offer-card,
.page-blog-how-to-get-exclusive-offers-pg66__tip-card {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white for dark bg */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-blog-how-to-get-exclusive-offers-pg66__card-title,
.page-blog-how-to-get-exclusive-offers-pg66__offer-title,
.page-blog-how-to-get-exclusive-offers-pg66__tip-title,
.page-blog-how-to-get-exclusive-offers-pg66__game-title,
.page-blog-how-to-get-exclusive-offers-pg66__step-title,
.page-blog-how-to-get-exclusive-offers-pg66__security-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Step List */
.page-blog-how-to-get-exclusive-offers-pg66__step-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
}

.page-blog-how-to-get-exclusive-offers-pg66__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  padding-left: 80px;
  color: #ffffff;
}

.page-blog-how-to-get-exclusive-offers-pg66__step-item::before {
  counter-increment: step-counter;
  content: "0" counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #26A9E0;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.page-blog-how-to-get-exclusive-offers-pg66__step-item:nth-child(n+10)::before {
    content: counter(step-counter);
}

/* Game List */
.page-blog-how-to-get-exclusive-offers-pg66__game-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-blog-how-to-get-exclusive-offers-pg66__game-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  color: #f0f0f0;
}

.page-blog-how-to-get-exclusive-offers-pg66__game-item a {
    color: #26A9E0;
}

/* Security Features */
.page-blog-how-to-get-exclusive-offers-pg66__security-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-how-to-get-exclusive-offers-pg66__security-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: #f0f0f0;
}

/* FAQ Section */
.page-blog-how-to-get-exclusive-offers-pg66__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-get-exclusive-offers-pg66__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-how-to-get-exclusive-offers-pg66__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-blog-how-to-get-exclusive-offers-pg66__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-how-to-get-exclusive-offers-pg66__faq-question::marker {
    display: none;
}

.page-blog-how-to-get-exclusive-offers-pg66__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-how-to-get-exclusive-offers-pg66__faq-item[open] .page-blog-how-to-get-exclusive-offers-pg66__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

.page-blog-how-to-get-exclusive-offers-pg66__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #f0f0f0;
}

/* Images */
.page-blog-how-to-get-exclusive-offers-pg66__image-full-width {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-how-to-get-exclusive-offers-pg66__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-how-to-get-exclusive-offers-pg66__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .page-blog-how-to-get-exclusive-offers-pg66__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .page-blog-how-to-get-exclusive-offers-pg66__content-grid,
  .page-blog-how-to-get-exclusive-offers-pg66__game-list,
  .page-blog-how-to-get-exclusive-offers-pg66__security-features {
    grid-template-columns: 1fr;
  }

  .page-blog-how-to-get-exclusive-offers-pg66__step-item {
    padding-left: 60px;
  }

  .page-blog-how-to-get-exclusive-offers-pg66__step-item::before {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    left: 15px;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-get-exclusive-offers-pg66 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-get-exclusive-offers-pg66__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Mobile images */
  .page-blog-how-to-get-exclusive-offers-pg66 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  /* Mobile video */
  .page-blog-how-to-get-exclusive-offers-pg66 video,
  .page-blog-how-to-get-exclusive-offers-pg66__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-get-exclusive-offers-pg66__video-section,
  .page-blog-how-to-get-exclusive-offers-pg66__video-container,
  .page-blog-how-to-get-exclusive-offers-pg66__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-how-to-get-exclusive-offers-pg66__hero-section {
    padding-top: 10px !important;
  }

  /* Mobile buttons */
  .page-blog-how-to-get-exclusive-offers-pg66__cta-button,
  .page-blog-how-to-get-exclusive-offers-pg66__btn-primary,
  .page-blog-how-to-get-exclusive-offers-pg66__btn-secondary,
  .page-blog-how-to-get-exclusive-offers-pg66 a[class*="button"],
  .page-blog-how-to-get-exclusive-offers-pg66 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-how-to-get-exclusive-offers-pg66__cta-buttons,
  .page-blog-how-to-get-exclusive-offers-pg66__button-group,
  .page-blog-how-to-get-exclusive-offers-pg66__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
    overflow: hidden !important;
  }

  .page-blog-how-to-get-exclusive-offers-pg66__card,
  .page-blog-how-to-get-exclusive-offers-pg66__offer-card,
  .page-blog-how-to-get-exclusive-offers-pg66__tip-card {
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .page-blog-how-to-get-exclusive-offers-pg66__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-how-to-get-exclusive-offers-pg66__faq-answer {
    padding: 15px;
  }
}

/* Color contrast fixes for specific elements if needed */
.page-blog-how-to-get-exclusive-offers-pg66 p,
.page-blog-how-to-get-exclusive-offers-pg66 li {
  color: #f0f0f0; /* Ensure light text on dark background */
}