.page-resources-how-to-choose-your-game {
  font-family: Arial, sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-resources-how-to-choose-your-game__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-how-to-choose-your-game__section-title {
  font-size: 2.5em;
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-how-to-choose-your-game__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-how-to-choose-your-game__btn-primary,
.page-resources-how-to-choose-your-game__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-resources-how-to-choose-your-game__btn-primary {
  background: #017439;
  color: #ffffff;
  border: 2px solid transparent;
}

.page-resources-how-to-choose-our-game__btn-primary:hover {
  background: #005f2e;
}

.page-resources-how-to-choose-your-game__btn-secondary {
  background: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-resources-how-to-choose-our-game__btn-secondary:hover {
  background: #e0e0e0;
}

/* Hero Section */
.page-resources-how-to-choose-your-game__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Apply header offset */
}

.page-resources-how-to-choose-your-game__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-resources-how-to-choose-your-game__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.page-resources-how-to-choose-your-game__hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
}

.page-resources-how-to-choose-your-game__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFFFFF;
}

.page-resources-how-to-choose-your-game__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Intro Section */
.page-resources-how-to-choose-your-game__intro-section {
  padding: 60px 0;
}

.page-resources-how-to-choose-your-game__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin-top: 40px;
  border-radius: 8px;
}

.page-resources-how-to-choose-your-game__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-resources-how-to-choose-your-game__video-caption {
  text-align: center;
  margin-top: 15px;
  font-style: italic;
  color: #555555;
}

/* Features Section (Dark Background) */
.page-resources-how-to-choose-your-game__dark-bg {
  background: #017439;
  color: #ffffff;
  padding: 60px 0;
}

.page-resources-how-to-choose-your-game__dark-bg .page-resources-how-to-choose-your-game__section-title {
  color: #ffffff;
}

.page-resources-how-to-choose-your-game__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-choose-your-game__feature-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-choose-your-game__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: bold;
}

.page-resources-how-to-choose-your-game__feature-card p {
  color: #f0f0f0;
}

/* Games Showcase */
.page-resources-how-to-choose-your-game__light-bg {
  background: #ffffff;
  color: #333333;
  padding: 60px 0;
}

.page-resources-how-to-choose-your-game__light-bg .page-resources-how-to-choose-your-game__section-title {
  color: #017439;
}

.page-resources-how-to-choose-your-game__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-choose-your-game__game-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-resources-how-to-choose-your-game__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-resources-how-to-choose-your-game__game-card .page-resources-how-to-choose-your-game__card-title {
  color: #017439;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-resources-how-to-choose-your-game__game-card p {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Tips Section */
.page-resources-how-to-choose-your-game__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-choose-your-game__tip-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #333333;
}

.page-resources-how-to-choose-your-game__tip-card .page-resources-how-to-choose-your-game__card-title {
  color: #017439;
}

.page-resources-how-to-choose-your-game__cta-block {
  text-align: center;
  margin-top: 50px;
}

/* Security Section */
.page-resources-how-to-choose-your-game__security-section {
  padding: 60px 0;
}

.page-resources-how-to-choose-your-game__security-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-resources-how-to-choose-your-game__security-image {
  max-width: 45%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-resources-how-to-choose-your-game__security-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.page-resources-how-to-choose-your-game__security-list li {
  background: #f9f9f9;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #017439;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  color: #333333;
}

.page-resources-how-to-choose-your-game__list-item-title {
  color: #017439;
  font-size: 1.1em;
  display: block;
  margin-bottom: 5px;
}

/* FAQ Section */
.page-resources-how-to-choose-your-game__faq-section {
  padding: 60px 0;
}

.page-resources-how-to-choose-your-game__faq-list {
  margin-top: 40px;
}

.page-resources-how-to-choose-your-game__faq-item {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
}

.page-resources-how-to-choose-your-game__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #ffffff;
  user-select: none;
  list-style: none;
}

.page-resources-how-to-choose-your-game__faq-question::-webkit-details-marker {
  display: none;
}

.page-resources-how-to-choose-your-game__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #ffffff;
}

.page-resources-how-to-choose-your-game__faq-answer {
  padding: 0 20px 20px;
  color: #f0f0f0;
  font-size: 1em;
}

.page-resources-how-to-choose-your-game__faq-answer p {
  margin-top: 10px;
  margin-bottom: 0;
  color: #f0f0f0;
}

.page-resources-how-to-choose-your-game__faq-answer a {
  color: #FFFF00; /* Custom color for links in dark section */
  text-decoration: underline;
}

.page-resources-how-to-choose-your-game__faq-answer a:hover {
  color: #e0e0e0;
}

/* Conclusion Section */
.page-resources-how-to-choose-your-game__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-how-to-choose-your-game__conclusion-section .page-resources-how-to-choose-your-game__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.15em;
}

.page-resources-how-to-choose-your-game__conclusion-section a {
  color: #017439;
  font-weight: bold;
  text-decoration: underline;
}

.page-resources-how-to-choose-your-game__conclusion-section a:hover {
  color: #005f2e;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-how-to-choose-your-game__hero-title {
    font-size: 2.8em;
  }
  .page-resources-how-to-choose-your-game__hero-description {
    font-size: 1.1em;
  }
  .page-resources-how-to-choose-your-game__section-title {
    font-size: 2em;
  }
  .page-resources-how-to-choose-your-game__security-content {
    flex-direction: column;
  }
  .page-resources-how-to-choose-your-game__security-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-choose-your-game {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-how-to-choose-your-game__hero-section {
    height: 500px;
  }
  .page-resources-how-to-choose-your-game__hero-title {
    font-size: 2.2em;
  }
  .page-resources-how-to-choose-your-game__hero-description {
    font-size: 1em;
  }
  .page-resources-how-to-choose-your-game__section-title {
    font-size: 1.8em;
  }
  .page-resources-how-to-choose-your-game__feature-grid,
  .page-resources-how-to-choose-your-game__game-grid,
  .page-resources-how-to-choose-your-game__tips-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile image responsiveness */
  .page-resources-how-to-choose-your-game img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile video responsiveness */
  .page-resources-how-to-choose-your-game video,
  .page-resources-how-to-choose-your-game__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-how-to-choose-your-game__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile button responsiveness */
  .page-resources-how-to-choose-your-game__btn-primary,
  .page-resources-how-to-choose-your-game__btn-secondary,
  .page-resources-how-to-choose-your-game a[class*="button"],
  .page-resources-how-to-choose-your-game 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-how-to-choose-your-game__cta-block {
    display: flex;
    justify-content: center;
    padding: 0 15px;
  }

  /* General container padding for mobile */
  .page-resources-how-to-choose-your-game__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Specific section padding adjustment for mobile */
  .page-resources-how-to-choose-your-game__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-how-to-choose-your-game__intro-section,
  .page-resources-how-to-choose-your-game__features-section,
  .page-resources-how-to-choose-your-game__games-showcase,
  .page-resources-how-to-choose-your-game__tips-section,
  .page-resources-how-to-choose-your-game__security-section,
  .page-resources-how-to-choose-your-game__faq-section,
  .page-resources-how-to-choose-your-game__conclusion-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-resources-how-to-choose-your-game__feature-card,
  .page-resources-how-to-choose-your-game__game-card,
  .page-resources-how-to-choose-your-game__tip-card,
  .page-resources-how-to-choose-your-game__security-list li,
  .page-resources-how-to-choose-your-game__faq-item {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-choose-your-game__hero-title {
    font-size: 1.8em;
  }
  .page-resources-how-to-choose-your-game__hero-description {
    font-size: 0.9em;
  }
  .page-resources-how-to-choose-your-game__section-title {
    font-size: 1.5em;
  }
}