/* style/resources-anti-cheat-mechanism-analysis.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #ffffff;
  --bg-dark: #26A9E0;
  --button-login: #EA7C07;
  --button-border-radius: 8px;
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 40px;
  --shadow-light: rgba(0, 0, 0, 0.1);
}

.page-resources-anti-cheat-mechanism-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light backgrounds */
  background-color: var(--bg-light);
}

.page-resources-anti-cheat-mechanism-analysis__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-resources-anti-cheat-mechanism-analysis__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-resources-anti-cheat-mechanism-analysis__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-resources-anti-cheat-mechanism-analysis__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.page-resources-anti-cheat-mechanism-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: var(--spacing-md);
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: var(--button-border-radius);
}

.page-resources-anti-cheat-mechanism-analysis__hero-title {
  font-size: 2.8em;
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
  color: var(--text-light);
}

.page-resources-anti-cheat-mechanism-analysis__hero-description {
  font-size: 1.2em;
  margin-bottom: var(--spacing-lg);
  color: var(--text-light);
}

.page-resources-anti-cheat-mechanism-analysis__btn-primary,
.page-resources-anti-cheat-mechanism-analysis__btn-secondary {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--button-border-radius);
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin: 0 var(--spacing-sm) var(--spacing-sm) 0;
  box-sizing: border-box;
  text-align: center;
}

.page-resources-anti-cheat-mechanism-analysis__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-resources-anti-cheat-mechanism-analysis__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-resources-anti-cheat-mechanism-analysis__btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-anti-cheat-mechanism-analysis__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-anti-cheat-mechanism-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-md);
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-resources-anti-cheat-mechanism-analysis__section-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.page-resources-anti-cheat-mechanism-analysis__paragraph {
  margin-bottom: var(--spacing-md);
  font-size: 1.1em;
  line-height: 1.7;
}

.page-resources-anti-cheat-mechanism-analysis__list {
  list-style-type: disc;
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-md);
}

.page-resources-anti-cheat-mechanism-analysis__list-item {
  margin-bottom: var(--spacing-sm);
  font-size: 1.1em;
}

.page-resources-anti-cheat-mechanism-analysis__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: var(--spacing-lg) auto;
  border-radius: var(--button-border-radius);
  box-shadow: 0 4px 15px var(--shadow-light);
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section Styling */
.page-resources-anti-cheat-mechanism-analysis__faq-container {
  margin-top: var(--spacing-lg);
}

.page-resources-anti-cheat-mechanism-analysis__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: var(--button-border-radius);
  margin-bottom: var(--spacing-sm);
  overflow: hidden;
}

.page-resources-anti-cheat-mechanism-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

.page-resources-anti-cheat-mechanism-analysis__faq-item[open] > .page-resources-anti-cheat-mechanism-analysis__faq-question {
  border-bottom: 1px solid transparent;
}

.page-resources-anti-cheat-mechanism-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-resources-anti-cheat-mechanism-analysis__faq-question::marker {
  display: none;
}

.page-resources-anti-cheat-mechanism-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: var(--spacing-sm);
}

.page-resources-anti-cheat-mechanism-analysis__faq-answer {
  padding: var(--spacing-md);
  font-size: 1.1em;
  color: var(--text-dark);
}

/* CTA Buttons Group */
.page-resources-anti-cheat-mechanism-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-anti-cheat-mechanism-analysis__hero-title {
    font-size: 2.2em;
  }

  .page-resources-anti-cheat-mechanism-analysis__hero-description {
    font-size: 1.1em;
  }

  .page-resources-anti-cheat-mechanism-analysis__section-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-resources-anti-cheat-mechanism-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-anti-cheat-mechanism-analysis__hero-section {
    min-height: 400px;
    padding: var(--spacing-md) var(--spacing-sm);
  }

  .page-resources-anti-cheat-mechanism-analysis__hero-content {
    padding: var(--spacing-sm);
  }

  .page-resources-anti-cheat-mechanism-analysis__hero-title {
    font-size: 1.8em;
  }

  .page-resources-anti-cheat-mechanism-analysis__hero-description {
    font-size: 1em;
  }

  .page-resources-anti-cheat-mechanism-analysis__section-title {
    font-size: 1.5em;
  }

  .page-resources-anti-cheat-mechanism-analysis__paragraph,
  .page-resources-anti-cheat-mechanism-analysis__list-item,
  .page-resources-anti-cheat-mechanism-analysis__faq-answer {
    font-size: 1em;
  }

  .page-resources-anti-cheat-mechanism-analysis__faq-question {
    font-size: 1.1em;
    padding: var(--spacing-sm);
  }

  .page-resources-anti-cheat-mechanism-analysis__cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
  }

  /* Mobile Images, Videos, Buttons Responsive Adaption */
  .page-resources-anti-cheat-mechanism-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-resources-anti-cheat-mechanism-analysis__section,
  .page-resources-anti-cheat-mechanism-analysis__card,
  .page-resources-anti-cheat-mechanism-analysis__container,
  .page-resources-anti-cheat-mechanism-analysis__hero-section,
  .page-resources-anti-cheat-mechanism-analysis__content-area,
  .page-resources-anti-cheat-mechanism-analysis__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
    overflow-x: hidden !important;
  }

  .page-resources-anti-cheat-mechanism-analysis__btn-primary,
  .page-resources-anti-cheat-mechanism-analysis__btn-secondary,
  .page-resources-anti-cheat-mechanism-analysis a[class*="button"],
  .page-resources-anti-cheat-mechanism-analysis 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: var(--spacing-sm);
    padding-right: var(--spacing-sm);
    margin: var(--spacing-sm) 0 !important;
  }

  .page-resources-anti-cheat-mechanism-analysis__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}

@media (max-width: 480px) {
  .page-resources-anti-cheat-mechanism-analysis__hero-title {
    font-size: 1.5em;
  }

  .page-resources-anti-cheat-mechanism-analysis__section-title {
    font-size: 1.3em;
  }

  .page-resources-anti-cheat-mechanism-analysis__hero-content {
    padding: var(--spacing-sm);
  }

  .page-resources-anti-cheat-mechanism-analysis__btn-primary,
  .page-resources-anti-cheat-mechanism-analysis__btn-secondary {
    font-size: 0.9em;
    padding: 10px 15px;
  }
}