.page-resources-666win-game-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark background */
  background-color: var(--dark-bg-1); /* Inherit from shared.css */
}

.page-resources-666win-game-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #017439; /* Brand primary color for hero */
  color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}

.page-resources-666win-game-strategy__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-resources-666win-game-strategy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFF00; /* Register and Login font color for emphasis */
}

.page-resources-666win-game-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #ffffff;
}

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

.page-resources-666win-game-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
  filter: grayscale(50%); /* Allowed for decorative effect, not color change */
}

.page-resources-666win-game-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-666win-game-strategy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--dark-bg-1);
  color: #ffffff;
}

.page-resources-666win-game-strategy__section-title {
  font-size: 2.5em;
  color: #017439; /* Brand primary color for titles */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-resources-666win-game-strategy__paragraph {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-align: justify;
}

.page-resources-666win-game-strategy__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px 0;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-666win-game-strategy__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-resources-666win-game-strategy__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(1, 116, 57, 0.5);
}

.page-resources-666win-game-strategy__card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-666win-game-strategy__card-title {
  font-size: 1.8em;
  color: #FFFF00; /* Yellow for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-666win-game-strategy__card-title a {
  color: #FFFF00;
  text-decoration: none;
}

.page-resources-666win-game-strategy__card-title a:hover {
  text-decoration: underline;
}

.page-resources-666win-game-strategy__card-text {
  color: #e0e0e0;
  font-size: 1em;
}

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

.page-resources-666win-game-strategy__card-button {
  margin-top: 20px;
  display: inline-block;
}

.page-resources-666win-game-strategy__faq-container {
  margin-top: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
}

.page-resources-666win-game-strategy__faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
}

.page-resources-666win-game-strategy__faq-item:last-child {
  border-bottom: none;
}

.page-resources-666win-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.3em;
  color: #ffffff;
  font-weight: bold;
  padding: 10px 0;
}

.page-resources-666win-game-strategy__faq-question:hover {
  color: #FFFF00; /* Yellow on hover */
}

.page-resources-666win-game-strategy__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #017439; /* Brand primary for toggle */
}

.page-resources-666win-game-strategy__faq-item.active .page-resources-666win-game-strategy__faq-toggle {
  transform: rotate(45deg);
  color: #FFFF00; /* Yellow when active */
}

.page-resources-666win-game-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
}

.page-resources-666win-game-strategy__faq-item.active .page-resources-666win-game-strategy__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px;
}

.page-resources-666win-game-strategy__faq-answer p {
  margin: 0;
  color: #e0e0e0;
}

.page-resources-666win-game-strategy__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
}

.page-resources-666win-game-strategy__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFF00; /* Yellow for CTA title */
  font-weight: bold;
}

.page-resources-666win-game-strategy__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #ffffff;
}

.page-resources-666win-game-strategy__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-666win-game-strategy__btn-primary:hover {
  background-color: #a00606;
  transform: translateY(-3px);
}

.page-resources-666win-game-strategy__btn-secondary {
  background-color: transparent;
  color: #FFFF00; /* Register/Login font color */
  padding: 15px 30px;
  border: 2px solid #FFFF00;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  display: inline-block;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-666win-game-strategy__btn-secondary:hover {
  background-color: #FFFF00;
  color: #017439;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-666win-game-strategy__hero-title {
    font-size: 2.8em;
  }
  .page-resources-666win-game-strategy__section-title {
    font-size: 2.2em;
  }
  .page-resources-666win-game-strategy__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-resources-666win-game-strategy__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-666win-game-strategy__hero-title {
    font-size: 2em;
  }
  .page-resources-666win-game-strategy__hero-description {
    font-size: 1em;
  }
  .page-resources-666win-game-strategy__content-area {
    padding: 40px 15px;
  }
  .page-resources-666win-game-strategy__section-title {
    font-size: 1.8em;
  }
  .page-resources-666win-game-strategy__paragraph {
    font-size: 0.95em;
  }
  .page-resources-666win-game-strategy__game-cards,
  .page-resources-666win-game-strategy__info-blocks {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-666win-game-strategy__card-title {
    font-size: 1.5em;
  }
  .page-resources-666win-game-strategy__faq-question {
    font-size: 1.1em;
  }
  .page-resources-666win-game-strategy__cta-section {
    padding: 60px 15px;
  }
  .page-resources-666win-game-strategy__cta-title {
    font-size: 2em;
  }
  .page-resources-666win-game-strategy__cta-description {
    font-size: 1.1em;
  }
  .page-resources-666win-game-strategy__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-666win-game-strategy__btn-primary,
  .page-resources-666win-game-strategy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* Mobile image and video responsiveness */
  .page-resources-666win-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-resources-666win-game-strategy video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-resources-666win-game-strategy__hero-image-wrapper,
  .page-resources-666win-game-strategy__content-area,
  .page-resources-666win-game-strategy__game-cards,
  .page-resources-666win-game-strategy__info-blocks,
  .page-resources-666win-game-strategy__faq-container,
  .page-resources-666win-game-strategy__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  .page-resources-666win-game-strategy__card {
    padding: 20px;
  }
}