/* style/resources-28bet-security-system-deep-dive.css */
.page-resources-28bet-security-system-deep-dive {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Body background from shared.css */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-28bet-security-system-deep-dive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Color Contrast Fixes based on body background #000000 (dark) */
.page-resources-28bet-security-system-deep-dive__dark-bg {
  background-color: #000000;
  color: #ffffff;
}

.page-resources-28bet-security-system-deep-dive__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-28bet-security-system-deep-dive__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 80px 20px;
  background-color: #000000;
  color: #ffffff;
}

.page-resources-28bet-security-system-deep-dive__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-28bet-security-system-deep-dive__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-resources-28bet-security-system-deep-dive__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-resources-28bet-security-system-deep-dive__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-resources-28bet-security-system-deep-dive__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-resources-28bet-security-system-deep-dive__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}

.page-resources-28bet-security-system-deep-dive__section {
  padding: 60px 0;
}

.page-resources-28bet-security-system-deep-dive__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: inherit;
  text-align: justify;
}

.page-resources-28bet-security-system-deep-dive__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: inherit;
}

.page-resources-28bet-security-system-deep-dive__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-28bet-security-system-deep-dive__card {
  background: rgba(255, 255, 255, 0.05); /* Slightly transparent white for dark background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-28bet-security-system-deep-dive__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-28bet-security-system-deep-dive__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-28bet-security-system-deep-dive__btn-primary:hover {
  background-color: #1a7fb3;
  transform: translateY(-2px);
}

.page-resources-28bet-security-system-deep-dive__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-28bet-security-system-deep-dive__feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #ffffff; /* Card background for light section */
  color: #333333;
  padding: 30px;
}

.page-resources-28bet-security-system-deep-dive__feature-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too wide in cards */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-resources-28bet-security-system-deep-dive__feature-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-28bet-security-system-deep-dive__feature-description {
  font-size: 1em;
  color: #333333;
  text-align: justify;
}

.page-resources-28bet-security-system-deep-dive__image-full-width {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-resources-28bet-security-system-deep-dive__faq-list {
  margin-top: 40px;
}

.page-resources-28bet-security-system-deep-dive__faq-item {
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  color: #333333;
}

.page-resources-28bet-security-system-deep-dive__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #26A9E0;
}

.page-resources-28bet-security-system-deep-dive__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-resources-28bet-security-system-deep-dive__faq-qtext {
  flex-grow: 1;
}

.page-resources-28bet-security-system-deep-dive__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-resources-28bet-security-system-deep-dive__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1.1em;
  color: #333333;
}

/* Ensure all content area images meet minimum size requirements */
.page-resources-28bet-security-system-deep-dive img {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-28bet-security-system-deep-dive__hero-title {
    font-size: 3em;
  }
  .page-resources-28bet-security-system-deep-dive__section-title {
    font-size: 2em;
  }
  .page-resources-28bet-security-system-deep-dive__hero-section {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-resources-28bet-security-system-deep-dive__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }
  .page-resources-28bet-security-system-deep-dive__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-resources-28bet-security-system-deep-dive__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-resources-28bet-security-system-deep-dive__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-28bet-security-system-deep-dive__paragraph,
  .page-resources-28bet-security-system-deep-dive__list-item,
  .page-resources-28bet-security-system-deep-dive__feature-description,
  .page-resources-28bet-security-system-deep-dive__faq-answer {
    font-size: 1em;
  }
  .page-resources-28bet-security-system-deep-dive__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-resources-28bet-security-system-deep-dive__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-28bet-security-system-deep-dive__container,
  .page-resources-28bet-security-system-deep-dive__section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Mobile image and video responsive */
  .page-resources-28bet-security-system-deep-dive img,
  .page-resources-28bet-security-system-deep-dive video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Image and video containers */
  .page-resources-28bet-security-system-deep-dive__hero-image-wrapper,
  .page-resources-28bet-security-system-deep-dive__image-full-width,
  .page-resources-28bet-security-system-deep-dive__feature-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-28bet-security-system-deep-dive__feature-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-resources-28bet-security-system-deep-dive__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}