.page-resources-iwin-game-popular-games-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #000, so text should be light */
  background-color: #000; /* Assuming body background is black from shared.css */
}

.page-resources-iwin-game-popular-games-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-resources-iwin-game-popular-games-strategy__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-iwin-game-popular-games-strategy__dark-bg {
  background-color: #000000; /* Dark background from shared.css */
  color: #ffffff;
}

.page-resources-iwin-game-popular-games-strategy__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-resources-iwin-game-popular-games-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: var(--header-offset, 120px);
  min-height: 600px;
  text-align: center;
  background-color: #000000; /* Ensure dark background for hero */
  color: #ffffff;
  overflow: hidden;
}

.page-resources-iwin-game-popular-games-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-resources-iwin-game-popular-games-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-resources-iwin-game-popular-games-strategy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-resources-iwin-game-popular-games-strategy__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-iwin-game-popular-games-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-resources-iwin-game-popular-games-strategy__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #26A9E0;
}

.page-resources-iwin-game-popular-games-strategy__light-bg .page-resources-iwin-game-popular-games-strategy__section-title {
  color: #26A9E0;
}

.page-resources-iwin-game-popular-games-strategy__dark-bg .page-resources-iwin-game-popular-games-strategy__section-title {
  color: #ffffff;
}

.page-resources-iwin-game-popular-games-strategy__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-iwin-game-popular-games-strategy__light-bg .page-resources-iwin-game-popular-games-strategy__text-block {
  color: #333333;
}

.page-resources-iwin-game-popular-games-strategy__dark-bg .page-resources-iwin-game-popular-games-strategy__text-block {
  color: #f0f0f0;
}

.page-resources-iwin-game-popular-games-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-resources-iwin-game-popular-games-strategy__btn-primary,
.page-resources-iwin-game-popular-games-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-resources-iwin-game-popular-games-strategy__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-iwin-game-popular-games-strategy__btn-primary:hover {
  background-color: #1a7fb5;
  border-color: #1a7fb5;
}

.page-resources-iwin-game-popular-games-strategy__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-iwin-game-popular-games-strategy__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-iwin-game-popular-games-strategy__game-strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-resources-iwin-game-popular-games-strategy__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: #333333;
  display: flex;
  flex-direction: column;
}

.page-resources-iwin-game-popular-games-strategy__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-resources-iwin-game-popular-games-strategy__card-title {
  font-size: 1.5em;
  padding: 20px 20px 10px;
  color: #26A9E0;
}

.page-resources-iwin-game-popular-games-strategy__card-content {
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-resources-iwin-game-popular-games-strategy__card-content p {
  margin-bottom: 15px;
  color: #333333;
}

.page-resources-iwin-game-popular-games-strategy__list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
  color: #333333;
}

.page-resources-iwin-game-popular-games-strategy__list-item {
  margin-bottom: 10px;
}

.page-resources-iwin-game-popular-games-strategy__tip-item {
  background-color: #000000; /* Dark background from shared.css */
  color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-iwin-game-popular-games-strategy__light-bg .page-resources-iwin-game-popular-games-strategy__tip-item {
  background-color: #f8f8f8;
  color: #333333;
}

.page-resources-iwin-game-popular-games-strategy__tip-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-iwin-game-popular-games-strategy__tip-description {
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-resources-iwin-game-popular-games-strategy__light-bg .page-resources-iwin-game-popular-games-strategy__tip-description {
  color: #333333;
}

.page-resources-iwin-game-popular-games-strategy__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-iwin-game-popular-games-strategy__faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
  text-align: left;
}

.page-resources-iwin-game-popular-games-strategy__faq-item[open] {
  background-color: #262626;
}

.page-resources-iwin-game-popular-games-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #ffffff;
  transition: background-color 0.3s ease;
  position: relative;
  list-style: none;
}

.page-resources-iwin-game-popular-games-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-resources-iwin-game-popular-games-strategy__faq-question:hover {
  background-color: #26A9E0;
}

.page-resources-iwin-game-popular-games-strategy__faq-qtext {
  flex-grow: 1;
}

.page-resources-iwin-game-popular-games-strategy__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #26A9E0;
}

.page-resources-iwin-game-popular-games-strategy__faq-item[open] .page-resources-iwin-game-popular-games-strategy__faq-toggle {
  color: #ffffff;
}

.page-resources-iwin-game-popular-games-strategy__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-resources-iwin-game-popular-games-strategy__faq-answer p {
  margin-bottom: 10px;
}

.page-resources-iwin-game-popular-games-strategy__faq-answer a {
  color: #26A9E0;
  text-decoration: none;
}

.page-resources-iwin-game-popular-games-strategy__faq-answer a:hover {
  text-decoration: underline;
}

.page-resources-iwin-game-popular-games-strategy__cta-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-resources-iwin-game-popular-games-strategy__video-section {
  padding: 60px 0;
  background-color: #000000; /* Ensure dark background for video */
  color: #ffffff;
}

.page-resources-iwin-game-popular-games-strategy__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 20px;
  box-sizing: border-box;
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.page-resources-iwin-game-popular-games-strategy__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-resources-iwin-game-popular-games-strategy__video-caption {
  font-style: italic;
  color: #f0f0f0;
  margin-top: 10px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-resources-iwin-game-popular-games-strategy__hero-title {
    font-size: 3em;
  }
  .page-resources-iwin-game-popular-games-strategy__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-iwin-game-popular-games-strategy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-iwin-game-popular-games-strategy__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-iwin-game-popular-games-strategy__hero-title {
    font-size: 2.5em;
  }

  .page-resources-iwin-game-popular-games-strategy__hero-description {
    font-size: 1em;
  }

  .page-resources-iwin-game-popular-games-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-iwin-game-popular-games-strategy__btn-primary,
  .page-resources-iwin-game-popular-games-strategy__btn-secondary,
  .page-resources-iwin-game-popular-games-strategy a[class*="button"],
  .page-resources-iwin-game-popular-games-strategy 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-iwin-game-popular-games-strategy__cta-buttons {
    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-iwin-game-popular-games-strategy__section {
    padding: 40px 0;
  }

  .page-resources-iwin-game-popular-games-strategy__section-title {
    font-size: 1.8em;
  }

  .page-resources-iwin-game-popular-games-strategy__game-strategy-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-iwin-game-popular-games-strategy__card {
    margin-left: 15px;
    margin-right: 15px;
  }

  .page-resources-iwin-game-popular-games-strategy__card-image {
    height: 200px;
  }

  .page-resources-iwin-game-popular-games-strategy__tip-item,
  .page-resources-iwin-game-popular-games-strategy__faq-item {
    margin-left: 15px;
    margin-right: 15px;
    padding: 20px;
  }

  .page-resources-iwin-game-popular-games-strategy__tip-title {
    font-size: 1.5em;
  }

  .page-resources-iwin-game-popular-games-strategy__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-resources-iwin-game-popular-games-strategy__faq-answer {
    padding: 0 20px 15px;
    font-size: 1em;
  }

  .page-resources-iwin-game-popular-games-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-iwin-game-popular-games-strategy__section,
  .page-resources-iwin-game-popular-games-strategy__card,
  .page-resources-iwin-game-popular-games-strategy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-iwin-game-popular-games-strategy__video-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-iwin-game-popular-games-strategy video,
  .page-resources-iwin-game-popular-games-strategy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-iwin-game-popular-games-strategy__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}