/* style/blog-af888-slot-strategy.css */

/* Base styles for the page content, ensuring text contrast on dark body background */
.page-blog-af888-slot-strategy {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Main text color for dark background */
  background-color: #08160F; /* Overall page background */
}

/* Hero Section */
.page-blog-af888-slot-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px 20px; /* Small top padding, larger bottom padding */
  overflow: hidden;
}

.page-blog-af888-slot-strategy__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-blog-af888-slot-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-blog-af888-slot-strategy__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-blog-af888-slot-strategy__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6;
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  /* No fixed font-size for H1 in hero, use font-weight, line-height */
}

.page-blog-af888-slot-strategy__description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 30px;
}

/* CTA Button */
.page-blog-af888-slot-strategy__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-blog-af888-slot-strategy__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-blog-af888-slot-strategy__cta-button--large {
  padding: 18px 40px;
  font-size: 1.25rem;
}

/* Content Area */
.page-blog-af888-slot-strategy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #F2FFF6; /* Main text color */
  background-color: #08160F; /* Ensure background consistency */
}

.page-blog-af888-slot-strategy__section-intro,
.page-blog-af888-slot-strategy__section,
.page-blog-af888-slot-strategy__sub-section {
  margin-bottom: 40px;
}

.page-blog-af888-slot-strategy__section-title {
  font-size: 2.2rem;
  color: #F2C14E; /* Gold color for main section titles */
  margin-bottom: 25px;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-blog-af888-slot-strategy__sub-title {
  font-size: 1.7rem;
  color: #57E38D; /* Glow color for sub-titles */
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-af888-slot-strategy__text-block {
  font-size: 1rem;
  line-height: 1.7;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-blog-af888-slot-strategy__text-block strong {
  color: #F2C14E;
}

.page-blog-af888-slot-strategy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-blog-af888-slot-strategy__list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.page-blog-af888-slot-strategy__list li strong {
  color: #57E38D;
}

.page-blog-af888-slot-strategy__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

/* CTA Section within content */
.page-blog-af888-slot-strategy__cta-section {
  text-align: center;
  background-color: #11271B; /* Card BG color */
  padding: 40px 30px;
  border-radius: 15px;
  margin: 50px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-af888-slot-strategy__cta-text {
  font-size: 1.3rem;
  color: #F2FFF6;
  margin-bottom: 25px;
  font-weight: 600;
}

/* Divider */
.page-blog-af888-slot-strategy__divider {
  height: 2px;
  background: linear-gradient(to right, transparent, #1E3A2A, transparent);
  margin: 60px 0;
}

/* FAQ Section */
.page-blog-af888-slot-strategy__faq-list {
  margin-top: 30px;
}

.page-blog-af888-slot-strategy__faq-item {
  background-color: #11271B; /* Card BG color */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-blog-af888-slot-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #57E38D; /* Glow color */
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-blog-af888-slot-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-af888-slot-strategy__faq-item[open] .page-blog-af888-slot-strategy__faq-question {
  background-color: #13994A; /* Slightly darker green when open */
}

.page-blog-af888-slot-strategy__faq-qtext {
  flex-grow: 1;
}

.page-blog-af888-slot-strategy__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 15px;
  color: #F2FFF6;
}

.page-blog-af888-slot-strategy__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: #A7D9B8; /* Secondary text color */
  border-top: 1px solid #2E7A4E;
}

.page-blog-af888-slot-strategy__faq-answer p {
  margin-bottom: 10px;
}

.page-blog-af888-slot-strategy__faq-answer a {
  color: #F2C14E;
  text-decoration: underline;
}

.page-blog-af888-slot-strategy__faq-answer a:hover {
  color: #57E38D;
}

/* Conclusion Section */
.page-blog-af888-slot-strategy__conclusion {
  text-align: center;
  padding: 50px 20px;
  background-color: #11271B;
  border-radius: 15px;
  border: 1px solid #2E7A4E;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-af888-slot-strategy__main-title {
    font-size: 2.8rem;
  }

  .page-blog-af888-slot-strategy__section-title {
    font-size: 2rem;
  }

  .page-blog-af888-slot-strategy__sub-title {
    font-size: 1.5rem;
  }

  .page-blog-af888-slot-strategy__cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-blog-af888-slot-strategy__hero-section,
  .page-blog-af888-slot-strategy__content-area,
  .page-blog-af888-slot-strategy__cta-section,
  .page-blog-af888-slot-strategy__conclusion {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-af888-slot-strategy__hero-section {
    padding-top: 10px !important; /* Small top padding */
    padding-bottom: 40px !important;
  }

  .page-blog-af888-slot-strategy__main-title {
    font-size: 2.2rem; /* Adjusted for mobile */
    margin-bottom: 15px;
  }

  .page-blog-af888-slot-strategy__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-blog-af888-slot-strategy__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .page-blog-af888-slot-strategy__sub-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .page-blog-af888-slot-strategy__text-block,
  .page-blog-af888-slot-strategy__list li,
  .page-blog-af888-slot-strategy__faq-answer {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Image responsiveness */
  .page-blog-af888-slot-strategy__hero-image,
  .page-blog-af888-slot-strategy__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Button responsiveness */
  .page-blog-af888-slot-strategy__cta-button,
  .page-blog-af888-slot-strategy a[class*="button"],
  .page-blog-af888-slot-strategy 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-af888-slot-strategy__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-af888-slot-strategy__faq-toggle {
    font-size: 1.3rem;
  }
}

/* Color Contrast Fixes if needed */
.page-blog-af888-slot-strategy__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-blog-af888-slot-strategy p,
.page-blog-af888-slot-strategy li {
  color: #F2FFF6; /* Ensure default text color is light on dark background */
}

/* Ensure links have good contrast */
.page-blog-af888-slot-strategy a {
  color: #57E38D; /* Use glow color for general links */
}

.page-blog-af888-slot-strategy a:hover {
  color: #F2C14E;
}