.page-blog-security-tech-behind-exchange-games {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light body background */
  line-height: 1.6;
  background-color: #FFFFFF; /* Explicitly set for clarity, though body default is white */
}

.page-blog-security-tech-behind-exchange-games__hero-section {
  position: relative;
  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-color: #f0f8ff; /* Light blue background for hero */
  border-bottom: 5px solid #26A9E0;
}

.page-blog-security-tech-behind-exchange-games__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-blog-security-tech-behind-exchange-games__hero-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-security-tech-behind-exchange-games__hero-image-wrapper img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-blog-security-tech-behind-exchange-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.page-blog-security-tech-behind-exchange-games__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-security-tech-behind-exchange-games__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #555555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-security-tech-behind-exchange-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #26A9E0; /* Brand primary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(38, 169, 224, 0.4);
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-security-tech-behind-exchange-games__cta-button:hover {
  background: #1e87c8;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(38, 169, 224, 0.6);
}

.page-blog-security-tech-behind-exchange-games__cta-button--final {
  background: #EA7C07; /* Login button color for final CTA */
  box-shadow: 0 4px 15px rgba(234, 124, 7, 0.4);
}

.page-blog-security-tech-behind-exchange-games__cta-button--final:hover {
  background: #d47007;
  box-shadow: 0 6px 20px rgba(234, 124, 7, 0.6);
}

.page-blog-security-tech-behind-exchange-games__section {
  padding: 50px 20px;
  background-color: #ffffff;
}

.page-blog-security-tech-behind-exchange-games__section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page-blog-security-tech-behind-exchange-games__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-blog-security-tech-behind-exchange-games__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-security-tech-behind-exchange-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  border-radius: 2px;
}

.page-blog-security-tech-behind-exchange-games__sub-title {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-security-tech-behind-exchange-games__content-block p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #555555;
}

.page-blog-security-tech-behind-exchange-games__image-inline {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-security-tech-behind-exchange-games__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-security-tech-behind-exchange-games__feature-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-security-tech-behind-exchange-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-blog-security-tech-behind-exchange-games__feature-item img {
  max-width: 100%;
  height: auto;
  min-height: 200px; /* Ensure min size */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-security-tech-behind-exchange-games__feature-item .page-blog-security-tech-behind-exchange-games__sub-title {
  font-size: 1.3rem;
  margin-top: 0;
  color: #26A9E0;
}

.page-blog-security-tech-behind-exchange-games__feature-item p {
  font-size: 0.95rem;
  color: #666666;
}

.page-blog-security-tech-behind-exchange-games__checklist {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-security-tech-behind-exchange-games__list-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  position: relative;
  padding-left: 50px;
}

.page-blog-security-tech-behind-exchange-games__list-item::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 1.5rem;
  color: #26A9E0;
  font-weight: bold;
}

.page-blog-security-tech-behind-exchange-games__list-item .page-blog-security-tech-behind-exchange-games__sub-title {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 1.2rem;
  color: #26A9E0;
}

.page-blog-security-tech-behind-exchange-games__list-item p {
  font-size: 0.95rem;
  color: #666666;
}

/* FAQ Section */
details.page-blog-security-tech-behind-exchange-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

details.page-blog-security-tech-behind-exchange-games__faq-item summary.page-blog-security-tech-behind-exchange-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-blog-security-tech-behind-exchange-games__faq-item summary.page-blog-security-tech-behind-exchange-games__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog-security-tech-behind-exchange-games__faq-item summary.page-blog-security-tech-behind-exchange-games__faq-question:hover {
  background: #f5f5f5;
}

.page-blog-security-tech-behind-exchange-games__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}

.page-blog-security-tech-behind-exchange-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #26A9E0; /* Use brand color for toggle */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-blog-security-tech-behind-exchange-games__faq-item[open] .page-blog-security-tech-behind-exchange-games__faq-question {
  background-color: #eaf6ff; /* Lighter background when open */
}

details.page-blog-security-tech-behind-exchange-games__faq-item .page-blog-security-tech-behind-exchange-games__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  color: #555555;
  font-size: 1rem;
}

.page-blog-security-tech-behind-exchange-games__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

.page-blog-security-tech-behind-exchange-games__conclusion p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.page-blog-security-tech-behind-exchange-games__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-security-tech-behind-exchange-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-security-tech-behind-exchange-games__hero-image-wrapper img {
    border-radius: 8px;
  }

  .page-blog-security-tech-behind-exchange-games__main-title {
    font-size: 2rem;
  }

  .page-blog-security-tech-behind-exchange-games__subtitle {
    font-size: 1rem;
  }

  .page-blog-security-tech-behind-exchange-games__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-security-tech-behind-exchange-games__section {
    padding: 30px 15px;
  }

  .page-blog-security-tech-behind-exchange-games__container {
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-security-tech-behind-exchange-games__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-security-tech-behind-exchange-games__sub-title {
    font-size: 1.1rem;
    margin-top: 25px;
  }

  .page-blog-security-tech-behind-exchange-games__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-security-tech-behind-exchange-games__feature-item {
    padding: 20px;
  }

  .page-blog-security-tech-behind-exchange-games__feature-item img {
    min- /* Adjust min height for mobile */
  }

  .page-blog-security-tech-behind-exchange-games__list-item {
    padding: 15px 15px 15px 45px;
  }

  .page-blog-security-tech-behind-exchange-games__list-item::before {
    left: 15px;
    top: 15px;
    font-size: 1.2rem;
  }

  details.page-blog-security-tech-behind-exchange-games__faq-item summary.page-blog-security-tech-behind-exchange-games__faq-question {
    padding: 15px;
  }

  .page-blog-security-tech-behind-exchange-games__faq-qtext {
    font-size: 1rem;
  }

  details.page-blog-security-tech-behind-exchange-games__faq-item .page-blog-security-tech-behind-exchange-games__faq-answer {
    padding: 0 15px 15px;
  }

  /* Image responsiveness */
  .page-blog-security-tech-behind-exchange-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-security-tech-behind-exchange-games__section,
  .page-blog-security-tech-behind-exchange-games__card,
  .page-blog-security-tech-behind-exchange-games__container,
  .page-blog-security-tech-behind-exchange-games__cta-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}