/* style/blog-safe-gaming-with-dt68-code.css */

/* Base styles for the page content, ensuring contrast with dark body background */
.page-blog-safe-gaming-with-dt68-code {
  color: #F2FFF6; /* Text Main */
  background-color: transparent; /* Body background is handled by shared.css var(--bg-color) */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-safe-gaming-with-dt68-code__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  overflow: hidden;
}

.page-blog-safe-gaming-with-dt68-code__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3; /* Subtle overlay for text readability */
}

.page-blog-safe-gaming-with-dt68-code__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border-radius: 10px;
}

.page-blog-safe-gaming-with-dt68-code__main-title {
  color: #F2FFF6; /* Text Main */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-safe-gaming-with-dt68-code__hero-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-safe-gaming-with-dt68-code__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-safe-gaming-with-dt68-code__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  border: none;
}

.page-blog-safe-gaming-with-dt68-code__btn-primary:hover {
  opacity: 0.9;
}

.page-blog-safe-gaming-with-dt68-code__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* Brighter green for contrast */
  border: 2px solid #2AD16F;
}

.page-blog-safe-gaming-with-dt68-code__btn-secondary:hover {
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
}

.page-blog-safe-gaming-with-dt68-code__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-safe-gaming-with-dt68-code__article-section {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-safe-gaming-with-dt68-code__section-title {
  color: #57E38D; /* Glow */
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-safe-gaming-with-dt68-code__sub-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.5em;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-safe-gaming-with-dt68-code__paragraph {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-blog-safe-gaming-with-dt68-code__paragraph strong {
  color: #F2FFF6; /* Emphasize keywords */
}

.page-blog-safe-gaming-with-dt68-code__article-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-safe-gaming-with-dt68-code__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* FAQ Section */
.page-blog-safe-gaming-with-dt68-code__faq-list {
  margin-top: 30px;
}

.page-blog-safe-gaming-with-dt68-code__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-safe-gaming-with-dt68-code__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #13994A; /* Slightly lighter green for contrast */
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-safe-gaming-with-dt68-code__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-safe-gaming-with-dt68-code__faq-question:hover {
  background-color: #2AD16F;
}

.page-blog-safe-gaming-with-dt68-code__faq-qtext {
  flex-grow: 1;
}

.page-blog-safe-gaming-with-dt68-code__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-safe-gaming-with-dt68-code__faq-answer {
  padding: 0 25px 18px 25px;
  color: #A7D9B8; /* Text Secondary */
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-safe-gaming-with-dt68-code__faq-answer p {
  margin-bottom: 0; /* Remove default paragraph margin */
  color: #A7D9B8;
}

.page-blog-safe-gaming-with-dt68-code__conclusion-section {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-safe-gaming-with-dt68-code__hero-content {
    padding: 15px;
  }
  .page-blog-safe-gaming-with-dt68-code__main-title {
    font-size: 2.5em;
  }
  .page-blog-safe-gaming-with-dt68-code__section-title {
    font-size: 1.8em;
  }
  .page-blog-safe-gaming-with-dt68-code__sub-title {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-blog-safe-gaming-with-dt68-code {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-safe-gaming-with-dt68-code__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-safe-gaming-with-dt68-code__main-title {
    font-size: 2em;
  }

  .page-blog-safe-gaming-with-dt68-code__hero-description {
    font-size: 1em;
  }

  .page-blog-safe-gaming-with-dt68-code__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-safe-gaming-with-dt68-code__button-group {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-safe-gaming-with-dt68-code__content-area {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  .page-blog-safe-gaming-with-dt68-code__article-section {
    padding: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-safe-gaming-with-dt68-code__section-title {
    font-size: 1.5em;
  }

  .page-blog-safe-gaming-with-dt68-code__sub-title {
    font-size: 1.2em;
  }

  .page-blog-safe-gaming-with-dt68-code img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-safe-gaming-with-dt68-code__faq-question {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  .page-blog-safe-gaming-with-dt68-code__faq-answer {
    padding: 0 20px 15px 20px;
  }
}