.page-resources-78win-game-strategies {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default dark text for light body background */
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-resources-78win-game-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-78win-game-strategies__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #f8f8f8;
  text-align: center;
  padding-bottom: 60px;
}

.page-resources-78win-game-strategies__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-78win-game-strategies__main-title {
  font-size: 3.2em;
  color: #8B0000; /* Dark red for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-resources-78win-game-strategies__intro-text {
  font-size: 1.15em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-resources-78win-game-strategies__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-78win-game-strategies__btn-primary,
.page-resources-78win-game-strategies__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-78win-game-strategies__btn-primary {
  background-color: #FFD700; /* Gold primary button */
  color: #8B0000; /* Dark red text for contrast */
  border: 2px solid #FFD700;
}

.page-resources-78win-game-strategies__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-78win-game-strategies__btn-secondary {
  background-color: transparent;
  color: #8B0000; /* Dark red text */
  border: 2px solid #8B0000;
}

.page-resources-78win-game-strategies__btn-secondary:hover {
  background-color: #8B0000;
  color: #FFD700; /* Gold text on hover */
  transform: translateY(-2px);
}

.page-resources-78win-game-strategies__btn-center {
    margin-top: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-78win-game-strategies__btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-resources-78win-game-strategies__section {
  padding: 80px 0;
  text-align: center;
}

.page-resources-78win-game-strategies__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Dark red for section titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-78win-game-strategies__section-description {
  font-size: 1.1em;
  color: #555555;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-resources-78win-game-strategies__overview-games {
  background-color: #ffffff;
}

.page-resources-78win-game-strategies__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-78win-game-strategies__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-78win-game-strategies__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-78win-game-strategies__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-78win-game-strategies__game-card-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-resources-78win-game-strategies__game-card-title a {
  color: #8B0000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-78win-game-strategies__game-card-title a:hover {
  color: #FFD700;
}

.page-resources-78win-game-strategies__game-card-text {
  color: #666666;
  font-size: 0.95em;
}

.page-resources-78win-game-strategies__general-strategies {
  background-color: #f0f0f0;
}

.page-resources-78win-game-strategies__strategy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-78win-game-strategies__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 280px; /* Ensure cards have similar height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-78win-game-strategies__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-78win-game-strategies__card-title {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-78win-game-strategies__card-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
}

.page-resources-78win-game-strategies__specific-tips {
  background-color: #ffffff;
}

.page-resources-78win-game-strategies__game-tips-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.page-resources-78win-game-strategies__tip-item {
  background-color: #fefefe;
  border-left: 5px solid #FFD700;
  padding: 25px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}

.page-resources-78win-game-strategies__tip-title {
  font-size: 1.3em;
  color: #8B0000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-78win-game-strategies__responsible-gaming {
  background-color: #8B0000; /* Dark red background */
  color: #ffffff; /* White text for contrast */
}

.page-resources-78win-game-strategies__responsible-gaming .page-resources-78win-game-strategies__section-title,
.page-resources-78win-game-strategies__responsible-gaming .page-resources-78win-game-strategies__section-description {
  color: #ffffff;
}

.page-resources-78win-game-strategies__responsible-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-78win-game-strategies__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-78win-game-strategies__feature-title {
  font-size: 1.4em;
  color: #FFD700; /* Gold text for features */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-78win-game-strategies__feature-item p {
  color: #f0f0f0;
}

.page-resources-78win-game-strategies__faq-section {
  background-color: #f8f8f8;
}

.page-resources-78win-game-strategies__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-resources-78win-game-strategies__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-resources-78win-game-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #fefefe;
  transition: background-color 0.3s ease;
}

.page-resources-78win-game-strategies__faq-question:hover {
  background-color: #f0f0f0;
}

.page-resources-78win-game-strategies__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700; /* Gold toggle icon */
  transition: transform 0.3s ease;
}

.page-resources-78win-game-strategies__faq-item.active .page-resources-78win-game-strategies__faq-toggle {
  transform: rotate(45deg); /* Rotate to form an 'X' or '-' */
}

.page-resources-78win-game-strategies__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #666666;
  font-size: 1em;
}

.page-resources-78win-game-strategies__faq-item.active .page-resources-78win-game-strategies__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px 25px; /* Adjust padding for expanded state */
}

.page-resources-78win-game-strategies__cta-section {
  background-color: #FFD700; /* Gold background */
  color: #8B0000; /* Dark red text */
  padding: 60px 0;
}

.page-resources-78win-game-strategies__cta-section .page-resources-78win-game-strategies__section-title,
.page-resources-78win-game-strategies__cta-section .page-resources-78win-game-strategies__section-description {
  color: #8B0000;
}

/* Dark background for sections where needed */
.page-resources-78win-game-strategies__dark-section {
  background-color: #8B0000;
  color: #ffffff;
}
.page-resources-78win-game-strategies__dark-section .page-resources-78win-game-strategies__section-title {
    color: #FFD700;
}
.page-resources-78win-game-strategies__dark-section .page-resources-78win-game-strategies__section-description {
    color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-78win-game-strategies__main-title {
    font-size: 2.8em;
  }
  .page-resources-78win-game-strategies__section-title {
    font-size: 2em;
  }
  .page-resources-78win-game-strategies__intro-text,
  .page-resources-78win-game-strategies__section-description {
    font-size: 1.05em;
  }
}

@media (max-width: 768px) {
  .page-resources-78win-game-strategies {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-78win-game-strategies__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-78win-game-strategies__main-title {
    font-size: 2em;
  }

  .page-resources-78win-game-strategies__intro-text {
    font-size: 1em;
  }

  .page-resources-78win-game-strategies__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-78win-game-strategies__btn-primary,
  .page-resources-78win-game-strategies__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-78win-game-strategies__section {
    padding: 50px 0;
  }

  .page-resources-78win-game-strategies__section-title {
    font-size: 1.8em;
  }

  .page-resources-78win-game-strategies__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-resources-78win-game-strategies__game-grid,
  .page-resources-78win-game-strategies__strategy-cards,
  .page-resources-78win-game-strategies__responsible-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-78win-game-strategies__game-card,
  .page-resources-78win-game-strategies__card,
  .page-resources-78win-game-strategies__tip-item,
  .page-resources-78win-game-strategies__feature-item {
    padding: 20px;
    box-sizing: border-box !important;
  }

  .page-resources-78win-game-strategies__game-card-image,
  .page-resources-78win-game-strategies__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-78win-game-strategies__card {
    min-height: auto;
  }

  .page-resources-78win-game-strategies__faq-list {
    margin-top: 30px;
  }

  .page-resources-78win-game-strategies__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-resources-78win-game-strategies__faq-answer {
    padding: 0 20px;
  }

  .page-resources-78win-game-strategies__faq-item.active .page-resources-78win-game-strategies__faq-answer {
    padding: 10px 20px 20px 20px;
  }

  /* Ensure all image containers are responsive */
  .page-resources-78win-game-strategies__section,
  .page-resources-78win-game-strategies__card,
  .page-resources-78win-game-strategies__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-78win-game-strategies img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-resources-78win-game-strategies__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-78win-game-strategies video,
  .page-resources-78win-game-strategies__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-78win-game-strategies__video-section,
  .page-resources-78win-game-strategies__video-container,
  .page-resources-78win-game-strategies__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-resources-78win-game-strategies__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}