/* style/blog-p888-latest-promotions.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-p888-latest-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Rely on body background from shared.css */
}

.page-blog-p888-latest-promotions a {
  color: #26A9E0;
  text-decoration: none;
}

.page-blog-p888-latest-promotions a:hover {
  text-decoration: underline;
}

/* Section spacing and general content area */
.page-blog-p888-latest-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-p888-latest-promotions__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-blog-p888-latest-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-p888-latest-promotions__text-block {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly visible background on dark theme */
}

.page-blog-p888-latest-promotions__text-block p,
.page-blog-p888-latest-promotions__text-block ul {
  margin-bottom: 15px;
}

.page-blog-p888-latest-promotions__text-block ul {
  list-style-type: disc;
  padding-left: 25px;
}

.page-blog-p888-latest-promotions__text-block li {
  margin-bottom: 8px;
}

/* Hero Section */
.page-blog-p888-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-p888-latest-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-blog-p888-latest-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  color: #ffffff;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
  border-radius: 10px;
}

.page-blog-p888-latest-promotions__main-title {
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  /* Avoid fixed large font-size, rely on weight/line-height for prominence */
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
}

.page-blog-p888-latest-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-p888-latest-promotions__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-blog-p888-latest-promotions__btn-primary,
.page-blog-p888-latest-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  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; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-p888-latest-promotions__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-p888-latest-promotions__btn-primary:hover {
  background-color: #1a7fb0;
  border-color: #1a7fb0;
}

.page-blog-p888-latest-promotions__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-p888-latest-promotions__btn-secondary:hover {
  background-color: #e0e0e0;
  color: #1a7fb0;
  border-color: #1a7fb0;
}

/* Image content styles */
.page-blog-p888-latest-promotions__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Promotion Types Section */
.page-blog-p888-latest-promotions__promotion-types-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Darker background for contrast */
  color: #ffffff;
}

.page-blog-p888-latest-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-p888-latest-promotions__promo-card {
  background-color: #282828; /* Light background on dark theme for cards */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-p888-latest-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-p888-latest-promotions__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-blog-p888-latest-promotions__promo-card p {
  font-size: 1em;
  color: #f0f0f0;
}

/* How to Claim Section */
.page-blog-p888-latest-promotions__how-to-claim-section {
  padding: 80px 0;
  background-color: #121212;
  color: #ffffff;
}

.page-blog-p888-latest-promotions__steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-p888-latest-promotions__step-item {
  background-color: #282828;
  color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-blog-p888-latest-promotions__step-title {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-p888-latest-promotions__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

/* Terms and Conditions Section */
.page-blog-p888-latest-promotions__terms-conditions-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

/* FAQ Section */
.page-blog-p888-latest-promotions__faq-section {
  padding: 80px 0;
  background-color: #121212;
  color: #ffffff;
}

.page-blog-p888-latest-promotions__faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-blog-p888-latest-promotions__faq-item {
  margin-bottom: 15px;
  background-color: #282828;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-p888-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #26A9E0;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-blog-p888-latest-promotions__faq-question:hover {
  background-color: #1a7fb0;
}

.page-blog-p888-latest-promotions__faq-qtext {
  flex-grow: 1;
  font-size: 1.1em;
}

.page-blog-p888-latest-promotions__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  line-height: 1;
}

.page-blog-p888-latest-promotions__faq-answer {
  padding: 20px;
  background-color: #333333;
  color: #f0f0f0;
  font-size: 1em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Conclusion Section */
.page-blog-p888-latest-promotions__conclusion-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
  text-align: center;
}

/* Floating Buttons */
.page-blog-p888-latest-promotions__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-blog-p888-latest-promotions__register-float-btn,
.page-blog-p888-latest-promotions__login-float-btn {
  display: block;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.page-blog-p888-latest-promotions__register-float-btn {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
}

.page-blog-p888-latest-promotions__register-float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-p888-latest-promotions__login-float-btn {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-p888-latest-promotions__login-float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-p888-latest-promotions__content-area {
    padding: 30px 15px;
  }
  .page-blog-p888-latest-promotions__hero-content {
    padding: 15px;
  }
  .page-blog-p888-latest-promotions__main-title {
    font-size: clamp(2em, 6vw, 3em);
  }
  .page-blog-p888-latest-promotions__section-title {
    font-size: 2em;
  }
  .page-blog-p888-latest-promotions__floating-buttons {
    bottom: 15px;
    right: 15px;
    flex-direction: row; /* Stack horizontally on smaller screens */
    gap: 8px;
  }
  .page-blog-p888-latest-promotions__register-float-btn,
  .page-blog-p888-latest-promotions__login-float-btn {
    padding: 10px 18px;
    font-size: 0.9em;
  }
}

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

  .page-blog-p888-latest-promotions__hero-section {
    min-height: 400px;
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  
  .page-blog-p888-latest-promotions__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-p888-latest-promotions__hero-description {
    font-size: 1em;
  }

  .page-blog-p888-latest-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-p888-latest-promotions__btn-primary,
  .page-blog-p888-latest-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }

  .page-blog-p888-latest-promotions__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .page-blog-p888-latest-promotions__section,
  .page-blog-p888-latest-promotions__card,
  .page-blog-p888-latest-promotions__container,
  .page-blog-p888-latest-promotions__promo-card,
  .page-blog-p888-latest-promotions__step-item,
  .page-blog-p888-latest-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-blog-p888-latest-promotions__promo-grid,
  .page-blog-p888-latest-promotions__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-blog-p888-latest-promotions__section-title {
    font-size: 1.8em;
  }

  .page-blog-p888-latest-promotions__floating-buttons {
    bottom: 10px;
    left: 10px;
    right: 10px;
    flex-direction: row; /* Keep horizontal for better use of space */
    justify-content: space-around;
    width: calc(100% - 20px);
  }

  .page-blog-p888-latest-promotions__register-float-btn,
  .page-blog-p888-latest-promotions__login-float-btn {
    flex: 1;
    max-width: 48%; /* Adjust for spacing */
    padding: 10px 10px;
    font-size: 0.85em;
  }
}

@media (max-width: 480px) {
  .page-blog-p888-latest-promotions__hero-section {
    min-height: 350px;
  }
  .page-blog-p888-latest-promotions__main-title {
    font-size: clamp(1.5em, 8vw, 2.2em);
  }
  .page-blog-p888-latest-promotions__floating-buttons {
    flex-direction: column; /* Stack vertically on very small screens */
    align-items: stretch;
  }
  .page-blog-p888-latest-promotions__register-float-btn,
  .page-blog-p888-latest-promotions__login-float-btn {
    max-width: 100%;
  }
}