.page-resources-g666-web-game-play-analysis {
  color: #ffffff; /* Body background is dark (#0a0a0a), so text is light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-resources-g666-web-game-play-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-g666-web-game-play-analysis__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  overflow: hidden;
  padding: 80px 20px;
}

.page-resources-g666-web-game-play-analysis__dark-bg {
  background: #0a0a0a; /* Ensure dark background for light text */
  color: #ffffff;
}

.page-resources-g666-web-game-play-analysis__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-resources-g666-web-game-play-analysis__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-g666-web-game-play-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-resources-g666-web-game-play-analysis__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-resources-g666-web-game-play-analysis__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-g666-web-game-play-analysis__btn-primary,
.page-resources-g666-web-game-play-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-resources-g666-web-game-play-analysis__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-resources-g666-web-game-play-analysis__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-resources-g666-web-game-play-analysis__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-resources-g666-web-game-play-analysis__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
}

.page-resources-g666-web-game-play-analysis__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-resources-g666-web-game-play-analysis__intro-section,
.page-resources-g666-web-game-play-analysis__how-to-play-section,
.page-resources-g666-web-game-play-analysis__security-section,
.page-resources-g666-web-game-play-analysis__promotions-section,
.page-resources-g666-web-game-play-analysis__cta-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-resources-g666-web-game-play-analysis__game-types-section,
.page-resources-g666-web-game-play-analysis__tips-section,
.page-resources-g666-web-game-play-analysis__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-resources-g666-web-game-play-analysis__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: justify;
  color: #f0f0f0;
}

.page-resources-g666-web-game-play-analysis__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-g666-web-game-play-analysis__game-grid,
.page-resources-g666-web-game-play-analysis__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-g666-web-game-play-analysis__game-card,
.page-resources-g666-web-game-play-analysis__step-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}

.page-resources-g666-web-game-play-analysis__game-card:hover,
.page-resources-g666-web-game-play-analysis__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-g666-web-game-play-analysis__card-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-g666-web-game-play-analysis__card-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-g666-web-game-play-analysis__card-description {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-g666-web-game-play-analysis__card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #EA7C07;
  color: #FFFFFF;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-g666-web-game-play-analysis__card-button:hover {
  background-color: #c96706;
}

.page-resources-g666-web-game-play-analysis__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-resources-g666-web-game-play-analysis__tips-list li {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #26A9E0;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-resources-g666-web-game-play-analysis__tips-list li strong {
  color: #26A9E0;
}

.page-resources-g666-web-game-play-analysis__video-section {
  padding: 80px 0;
  text-align: center;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-resources-g666-web-game-play-analysis__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-g666-web-game-play-analysis__video-wrapper .page-resources-g666-web-game-play-analysis__video,
.page-resources-g666-web-game-play-analysis__video-wrapper .page-resources-g666-web-game-play-analysis__video-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-g666-web-game-play-analysis__video-link-overlay {
  z-index: 10;
  cursor: pointer;
  background: transparent;
}

.page-resources-g666-web-game-play-analysis__faq-list {
  margin-top: 50px;
}

.page-resources-g666-web-game-play-analysis__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: #ffffff;
}

.page-resources-g666-web-game-play-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  background-color: #26A9E0;
  color: #FFFFFF;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-g666-web-game-play-analysis__faq-question h3 {
  margin: 0;
  color: #FFFFFF;
}

.page-resources-g666-web-game-play-analysis__faq-toggle {
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-resources-g666-web-game-play-analysis__faq-item.active .page-resources-g666-web-game-play-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-g666-web-game-play-analysis__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
  text-align: justify;
}

.page-resources-g666-web-game-play-analysis__faq-item.active .page-resources-g666-web-game-play-analysis__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px 30px;
}

.page-resources-g666-web-game-play-analysis__cta-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-resources-g666-web-game-play-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-g666-web-game-play-analysis__hero-title {
    font-size: 2.8em;
  }

  .page-resources-g666-web-game-play-analysis__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-g666-web-game-play-analysis {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-g666-web-game-play-analysis__hero-section {
    min-height: 450px;
    padding: 60px 15px;
  }

  .page-resources-g666-web-game-play-analysis__hero-title {
    font-size: 2.2em;
  }

  .page-resources-g666-web-game-play-analysis__hero-description {
    font-size: 1.1em;
  }

  .page-resources-g666-web-game-play-analysis__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-g666-web-game-play-analysis__btn-primary,
  .page-resources-g666-web-game-play-analysis__btn-secondary,
  .page-resources-g666-web-game-play-analysis a[class*="button"],
  .page-resources-g666-web-game-play-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: 15px;
    padding-right: 15px;
  }

  .page-resources-g666-web-game-play-analysis__cta-buttons,
  .page-resources-g666-web-game-play-analysis__button-group,
  .page-resources-g666-web-game-play-analysis__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-resources-g666-web-game-play-analysis__cta-buttons {
    flex-direction: column;
  }

  .page-resources-g666-web-game-play-analysis__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }

  .page-resources-g666-web-game-play-analysis__intro-section,
  .page-resources-g666-web-game-play-analysis__game-types-section,
  .page-resources-g666-web-game-play-analysis__how-to-play-section,
  .page-resources-g666-web-game-play-analysis__tips-section,
  .page-resources-g666-web-game-play-analysis__security-section,
  .page-resources-g666-web-game-play-analysis__video-section,
  .page-resources-g666-web-game-play-analysis__promotions-section,
  .page-resources-g666-web-game-play-analysis__faq-section,
  .page-resources-g666-web-game-play-analysis__cta-section {
    padding: 40px 0;
  }

  .page-resources-g666-web-game-play-analysis__container {
    padding: 0 15px;
  }

  .page-resources-g666-web-game-play-analysis img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-g666-web-game-play-analysis__section,
  .page-resources-g666-web-game-play-analysis__card,
  .page-resources-g666-web-game-play-analysis__container,
  .page-resources-g666-web-game-play-analysis__video-section,
  .page-resources-g666-web-game-play-analysis__video-container,
  .page-resources-g666-web-game-play-analysis__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-g666-web-game-play-analysis__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile video section padding */
  }

  .page-resources-g666-web-game-play-analysis__game-card,
  .page-resources-g666-web-game-play-analysis__step-card {
    padding: 20px;
  }

  .page-resources-g666-web-game-play-analysis__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-resources-g666-web-game-play-analysis__faq-answer {
    padding: 0 20px;
  }

  .page-resources-g666-web-game-play-analysis__faq-item.active .page-resources-g666-web-game-play-analysis__faq-answer {
    padding: 15px 20px;
  }

  /* Ensure content area images are not smaller than 200px (desktop) */
  .page-resources-g666-web-game-play-analysis__image-content,
  .page-resources-g666-web-game-play-analysis__card-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-resources-g666-web-game-play-analysis__hero-title {
    font-size: 1.8em;
  }

  .page-resources-g666-web-game-play-analysis__hero-description {
    font-size: 1em;
  }

  .page-resources-g666-web-game-play-analysis__section-title {
    font-size: 1.5em;
  }
}

/* Contrast Fixes */
.page-resources-g666-web-game-play-analysis__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-resources-g666-web-game-play-analysis__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}