.page-blog-ok22-platform-security-and-promotion-terms {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for dark backgrounds */
  background-color: var(--background); /* Overall page background */
  overflow-x: hidden; /* Prevent horizontal scroll on desktop */
}

.page-blog-ok22-platform-security-and-promotion-terms__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-ok22-platform-security-and-promotion-terms__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding for hero */
  padding-bottom: 60px;
  background: var(--deep-green); /* Use a brand color for the section background */
  color: var(--text-main);
  text-align: center;
}

.page-blog-ok22-platform-security-and-promotion-terms__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Adjust based on hero image size */
  margin-bottom: 30px;
}

.page-blog-ok22-platform-security-and-promotion-terms__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-ok22-platform-security-and-promotion-terms__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-blog-ok22-platform-security-and-promotion-terms__main-title {
  font-size: clamp(2em, 5vw, 3.2em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-blog-ok22-platform-security-and-promotion-terms__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

/* Introduction Section */
.page-blog-ok22-platform-security-and-promotion-terms__introduction-section {
  padding: 60px 0;
  background-color: #ffffff; /* Explicitly white background for light sections */
}

.page-blog-ok22-platform-security-and-promotion-terms__section-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  font-weight: 700;
  color: var(--gold); /* Use gold for titles */
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-ok22-platform-security-and-promotion-terms__subsection-title {
  font-size: clamp(1.4em, 3vw, 2em);
  font-weight: 600;
  color: var(--glow); /* Use glow for sub-titles */
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-blog-ok22-platform-security-and-promotion-terms__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  color: #333333; /* Ensuring dark text on light background for readability */
}

/* Security Section */
.page-blog-ok22-platform-security-and-promotion-terms__security-section {
  padding: 60px 0;
  background-color: var(--card-bg); /* Darker background for this section */
  color: var(--text-main);
}

.page-blog-ok22-platform-security-and-promotion-terms__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-ok22-platform-security-and-promotion-terms__feature-card {
  background-color: var(--deep-green); /* Slightly lighter dark for cards */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-ok22-platform-security-and-promotion-terms__feature-icon {
  width: 100%;
  max-width: 200px; /* Ensure minimum size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-ok22-platform-security-and-promotion-terms__feature-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold);
}

.page-blog-ok22-platform-security-and-promotion-terms__feature-description {
  font-size: 0.95em;
  color: var(--text-secondary);
}

/* Promotions Section */
.page-blog-ok22-platform-security-and-promotion-terms__promotions-section {
  padding: 60px 0;
  background-color: #ffffff; /* Explicitly white background for light sections */
}

.page-blog-ok22-platform-security-and-promotion-terms__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-blog-ok22-platform-security-and-promotion-terms__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #333333; /* Ensuring dark text on light background for readability */
}

.page-blog-ok22-platform-security-and-promotion-terms__list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: var(--glow);
}

.page-blog-ok22-platform-security-and-promotion-terms__list li strong {
  color: #333333;
}

.page-blog-ok22-platform-security-and-promotion-terms__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-blog-ok22-platform-security-and-promotion-terms__card {
  background-color: #f8f8f8; /* A very light grey for cards on white background */
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-blog-ok22-platform-security-and-promotion-terms__card-title {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--glow);
}

.page-blog-ok22-platform-security-and-promotion-terms__card-text {
  font-size: 0.9em;
  color: #333333;
}

/* Responsible Gaming Section */
.page-blog-ok22-platform-security-and-promotion-terms__responsible-gaming-section {
  padding: 60px 0;
  background-color: var(--deep-green);
  color: var(--text-main);
  text-align: center;
}

.page-blog-ok22-platform-security-and-promotion-terms__responsible-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-ok22-platform-security-and-promotion-terms__responsible-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-ok22-platform-security-and-promotion-terms__responsible-icon {
  width: 100%;
  max-width: 180px; /* Adjusted for card context */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

/* FAQ Section */
.page-blog-ok22-platform-security-and-promotion-terms__faq-section {
  padding: 60px 0;
  background-color: #ffffff; /* Explicitly white background for light sections */
}

.page-blog-ok22-platform-security-and-promotion-terms__faq-list {
  margin-top: 40px;
}

.page-blog-ok22-platform-security-and-promotion-terms__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-ok22-platform-security-and-promotion-terms__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1em;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  list-style: none; /* Hide default marker */
  outline: none;
}

.page-blog-ok22-platform-security-and-promotion-terms__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for Webkit browsers */
}

.page-blog-ok22-platform-security-and-promotion-terms__faq-qtext {
  flex-grow: 1;
  color: var(--gold);
}

.page-blog-ok22-platform-security-and-promotion-terms__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--glow);
  margin-left: 15px;
}

.page-blog-ok22-platform-security-and-promotion-terms__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 0.95em;
  color: #333333;
}

/* Call to Action Section */
.page-blog-ok22-platform-security-and-promotion-terms__cta-section {
  padding: 60px 0;
  background-color: var(--deep-green);
  color: var(--text-main);
  text-align: center;
}

/* Buttons */
.page-blog-ok22-platform-security-and-promotion-terms__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-ok22-platform-security-and-promotion-terms__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-ok22-platform-security-and-promotion-terms__cta-button--secondary {
  background: #ffffff;
  color: var(--main-color); /* Use main color for text */
  border: 2px solid var(--main-color);
  margin-top: 20px;
}

.page-blog-ok22-platform-security-and-promotion-terms__cta-button--secondary:hover {
  background: var(--main-color);
  color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .page-blog-ok22-platform-security-and-promotion-terms {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-ok22-platform-security-and-promotion-terms__container {
    padding: 0 15px;
  }

  .page-blog-ok22-platform-security-and-promotion-terms__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important; /* Ensure small top padding */
  }

  .page-blog-ok22-platform-security-and-promotion-terms__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-blog-ok22-platform-security-and-promotion-terms__description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-blog-ok22-platform-security-and-promotion-terms__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 30px;
  }

  .page-blog-ok22-platform-security-and-promotion-terms__subsection-title {
    font-size: clamp(1.2em, 5vw, 1.6em);
  }

  /* Images responsiveness */
  .page-blog-ok22-platform-security-and-promotion-terms img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-ok22-platform-security-and-promotion-terms__hero-image-wrapper,
  .page-blog-ok22-platform-security-and-promotion-terms__feature-grid,
  .page-blog-ok22-platform-security-and-promotion-terms__card-grid,
  .page-blog-ok22-platform-security-and-promotion-terms__responsible-features,
  .page-blog-ok22-platform-security-and-promotion-terms__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0; /* Handled by container */
    padding-right: 0; /* Handled by container */
    overflow-x: hidden;
  }
  
  .page-blog-ok22-platform-security-and-promotion-terms__feature-card,
  .page-blog-ok22-platform-security-and-promotion-terms__responsible-card,
  .page-blog-ok22-platform-security-and-promotion-terms__card {
    padding: 20px;
  }

  /* Buttons responsiveness */
  .page-blog-ok22-platform-security-and-promotion-terms__cta-button,
  .page-blog-ok22-platform-security-and-promotion-terms__cta-button--secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  
  /* Button groups for mobile */
  .page-blog-ok22-platform-security-and-promotion-terms__cta-buttons,
  .page-blog-ok22-platform-security-and-promotion-terms__button-group {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Spacing between buttons */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px; /* Add padding to contain buttons */
  }

  .page-blog-ok22-platform-security-and-promotion-terms__cta-button--secondary {
    margin-top: 0; /* Reset margin for vertical stacking */
  }

  .page-blog-ok22-platform-security-and-promotion-terms__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-ok22-platform-security-and-promotion-terms__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

/* Color Contrast Fixes (if needed, based on background) */
.page-blog-ok22-platform-security-and-promotion-terms__dark-bg {
  color: var(--text-main); /* #F2FFF6 */
}

.page-blog-ok22-platform-security-and-promotion-terms__light-bg {
  color: #333333; /* Ensuring dark text on light background for readability */
}
.page-blog-ok22-platform-security-and-promotion-terms__introduction-section .page-blog-ok22-platform-security-and-promotion-terms__text-block,
.page-blog-ok22-platform-security-and-promotion-terms__promotions-section .page-blog-ok22-platform-security-and-promotion-terms__text-block,
.page-blog-ok22-platform-security-and-promotion-terms__promotions-section .page-blog-ok22-platform-security-and-promotion-terms__list li,
.page-blog-ok22-platform-security-and-promotion-terms__faq-section .page-blog-ok22-platform-security-and-promotion-terms__faq-answer p {
    color: #333333; /* Ensuring dark text on light background for readability */
}
/* Adjust background to white for these sections if needed for contrast */
.page-blog-ok22-platform-security-and-promotion-terms__introduction-section,
.page-blog-ok22-platform-security-and-promotion-terms__promotions-section,
.page-blog-ok22-platform-security-and-promotion-terms__faq-section {
    background-color: #ffffff; /* Explicitly white background for light sections */
}

/* Card background for light sections */
.page-blog-ok22-platform-security-and-promotion-terms__promotions-section .page-blog-ok22-platform-security-and-promotion-terms__card,
.page-blog-ok22-platform-security-and-promotion-terms__faq-section .page-blog-ok22-platform-security-and-promotion-terms__faq-item {
  background-color: #f8f8f8; /* A very light grey for cards on white background */
  border: 1px solid #e0e0e0;
}
.page-blog-ok22-platform-security-and-promotion-terms__promotions-section .page-blog-ok22-platform-security-and-promotion-terms__card-text {
  color: #333333;
}