/* style/blog-okfun-win-slot-secrets.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-on-dark: #FFFFFF;
  --text-on-light: #333333;
  --dark-bg: #000000;
  --light-bg: #FFFFFF;
  --login-button-color: #EA7C07;
}

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-okfun-win-slot-secrets {
  font-family: 'Arial', sans-serif;
  color: var(--text-on-dark); /* Light text on dark body background */
  line-height: 1.6;
  background-color: var(--dark-bg); /* Ensure sections are dark or semi-transparent */
}

.page-blog-okfun-win-slot-secrets__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-okfun-win-slot-secrets__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(135deg, var(--primary-color), #1a7bb0);
  color: var(--text-on-dark);
  overflow: hidden;
}

.page-blog-okfun-win-slot-secrets__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-blog-okfun-win-slot-secrets__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Slightly transparent to allow text to stand out */
}

.page-blog-okfun-win-slot-secrets__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-blog-okfun-win-slot-secrets__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-on-dark);
}

.page-blog-okfun-win-slot-secrets__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: var(--text-on-dark);
}

.page-blog-okfun-win-slot-secrets__btn-primary,
.page-blog-okfun-win-slot-secrets__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-okfun-win-slot-secrets__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-on-dark);
  border: 2px solid var(--primary-color);
  margin-right: 15px;
}

.page-blog-okfun-win-slot-secrets__btn-primary:hover {
  background-color: #1a7bb0;
  border-color: #1a7bb0;
}

.page-blog-okfun-win-slot-secrets__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-okfun-win-slot-secrets__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-on-dark);
}

.page-blog-okfun-win-slot-secrets__content-area {
  padding: 60px 0;
  background-color: var(--dark-bg);
  color: var(--text-on-dark);
}

.page-blog-okfun-win-slot-secrets__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.page-blog-okfun-win-slot-secrets__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-blog-okfun-win-slot-secrets__text-block {
  margin-bottom: 20px;
  color: var(--text-on-dark);
  padding: 0 20px;
}

.page-blog-okfun-win-slot-secrets__image-text-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for content blocks */
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
}

.page-blog-okfun-win-slot-secrets__image-text-block--reverse {
  flex-direction: row-reverse;
}

.page-blog-okfun-win-slot-secrets__content-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.page-blog-okfun-win-slot-secrets__text-content {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  padding: 20px 30px;
  box-sizing: border-box;
  color: var(--text-on-dark);
}

.page-blog-okfun-win-slot-secrets__list {
  list-style: disc inside;
  margin-bottom: 30px;
  color: var(--text-on-dark);
  padding-left: 40px; /* Adjust padding for list items */
  padding-right: 20px;
}

.page-blog-okfun-win-slot-secrets__list-item {
  margin-bottom: 10px;
  color: var(--text-on-dark);
}

.page-blog-okfun-win-slot-secrets__cta-section {
  text-align: center;
  background-color: var(--primary-color);
  color: var(--text-on-dark);
  padding: 50px 20px;
  border-radius: 10px;
  margin: 50px auto;
  max-width: 900px;
}

.page-blog-okfun-win-slot-secrets__cta-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-on-dark);
}

.page-blog-okfun-win-slot-secrets__cta-text {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  margin-bottom: 30px;
  color: var(--text-on-dark);
}

.page-blog-okfun-win-slot-secrets__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.page-blog-okfun-win-slot-secrets__faq-list {
  margin-top: 40px;
  padding: 0 20px;
}

.page-blog-okfun-win-slot-secrets__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter background for FAQ items */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-on-dark);
}

.page-blog-okfun-win-slot-secrets__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-on-dark);
  background-color: rgba(255, 255, 255, 0.1); /* Slightly darker for question header */
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
}

.page-blog-okfun-win-slot-secrets__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-okfun-win-slot-secrets__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-blog-okfun-win-slot-secrets__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 10px;
}

.page-blog-okfun-win-slot-secrets__faq-answer {
  padding: 15px 20px;
  color: var(--text-on-dark);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-blog-okfun-win-slot-secrets__hero-content {
    padding: 15px;
  }

  .page-blog-okfun-win-slot-secrets__image-text-block {
    flex-direction: column;
    text-align: center;
  }

  .page-blog-okfun-win-slot-secrets__image-text-block--reverse {
    flex-direction: column;
  }

  .page-blog-okfun-win-slot-secrets__content-image {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .page-blog-okfun-win-slot-secrets__text-content {
    max-width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .page-blog-okfun-win-slot-secrets {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-okfun-win-slot-secrets__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-okfun-win-slot-secrets__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-okfun-win-slot-secrets__subtitle {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .page-blog-okfun-win-slot-secrets__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

  .page-blog-okfun-win-slot-secrets__sub-title {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }

  .page-blog-okfun-win-slot-secrets__text-block,
  .page-blog-okfun-win-slot-secrets__list,
  .page-blog-okfun-win-slot-secrets__list-item {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-okfun-win-slot-secrets__content-area {
    padding: 40px 0;
  }

  /* Mobile image responsiveness */
  .page-blog-okfun-win-slot-secrets img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-okfun-win-slot-secrets__hero-image-wrapper,
  .page-blog-okfun-win-slot-secrets__image-text-block,
  .page-blog-okfun-win-slot-secrets__cta-section,
  .page-blog-okfun-win-slot-secrets__faq-list,
  .page-blog-okfun-win-slot-secrets__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Mobile button responsiveness */
  .page-blog-okfun-win-slot-secrets__btn-primary,
  .page-blog-okfun-win-slot-secrets__btn-secondary,
  .page-blog-okfun-win-slot-secrets a[class*="button"],
  .page-blog-okfun-win-slot-secrets a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-right: 0 !important;
  }

  .page-blog-okfun-win-slot-secrets__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}