/* style/mcw-67-game-strategies.css */
.page-mcw-67-game-strategies {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: transparent; /* inherited from shared.css body */
}

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

.page-mcw-67-game-strategies__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px);
  text-align: center;
  overflow: hidden;
  color: #ffffff;
}

.page-mcw-67-game-strategies__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-mcw-67-game-strategies__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.page-mcw-67-game-strategies__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(26, 35, 126, 0.7); /* Main color with transparency */
  border-radius: 10px;
}

.page-mcw-67-game-strategies__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  line-height: 1.2;
}

.page-mcw-67-game-strategies__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-mcw-67-game-strategies__btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Accent color for primary button */
  color: #1A237E; /* Main color for text on accent button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-mcw-67-game-strategies__btn-primary:hover {
  background-color: #e0b800;
  transform: translateY(-2px);
}

.page-mcw-67-game-strategies__btn-primary--center {
  display: block;
  margin: 40px auto 0 auto;
  width: fit-content;
}

.page-mcw-67-game-strategies__btn-secondary {
  display: inline-block;
  background-color: #1A237E; /* Main color for secondary button */
  color: #FFD700; /* Accent color for text on main button */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #FFD700; /* Accent border */
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.page-mcw-67-game-strategies__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
  transform: translateY(-2px);
}

.page-mcw-67-game-strategies__section {
  padding: 60px 0;
}

.page-mcw-67-game-strategies__section--general {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
}

.page-mcw-67-game-strategies__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700; /* Accent color for section titles */
}

.page-mcw-67-game-strategies__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: justify;
}

.page-mcw-67-game-strategies__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-mcw-67-game-strategies__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-mcw-67-game-strategies__inline-link:hover {
  text-decoration: underline;
}

.page-mcw-67-game-strategies__image-text-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-mcw-67-game-strategies__image-wrapper {
  flex: 1;
}

.page-mcw-67-game-strategies__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-mcw-67-game-strategies__text-content {
  flex: 1;
  text-align: left;
}

.page-mcw-67-game-strategies__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-mcw-67-game-strategies__dark-bg {
  background-color: #1A237E; /* Main brand color for dark sections */
  color: #ffffff;
}

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

.page-mcw-67-game-strategies__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
}

.page-mcw-67-game-strategies__card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-mcw-67-game-strategies__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-mcw-67-game-strategies__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-mcw-67-game-strategies__card-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-mcw-67-game-strategies__section--responsible-gambling {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background */
}

.page-mcw-67-game-strategies__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-mcw-67-game-strategies__faq-item {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-mcw-67-game-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #1A237E; /* Main color for question background */
  transition: background-color 0.3s ease;
}

.page-mcw-67-game-strategies__faq-question:hover {
  background-color: #2c389f;
}

.page-mcw-67-game-strategies__faq-title {
  font-size: 1.2em;
  color: #FFD700;
  margin: 0;
}

.page-mcw-67-game-strategies__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-mcw-67-game-strategies__faq-item.active .page-mcw-67-game-strategies__faq-toggle {
  transform: rotate(45deg);
}

.page-mcw-67-game-strategies__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05); /* Lighter background for answer */
}

.page-mcw-67-game-strategies__faq-item.active .page-mcw-67-game-strategies__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-mcw-67-game-strategies__faq-answer .page-mcw-67-game-strategies__paragraph {
  margin-bottom: 0;
}

.page-mcw-67-game-strategies__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #FFD700; /* Accent color for CTA section background */
  color: #1A237E;
}

.page-mcw-67-game-strategies__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #1A237E; /* Main color for text on accent background */
}

.page-mcw-67-game-strategies__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #1A237E;
}

.page-mcw-67-game-strategies__cta-section .page-mcw-67-game-strategies__btn-primary {
  background-color: #1A237E;
  color: #FFD700;
}

.page-mcw-67-game-strategies__cta-section .page-mcw-67-game-strategies__btn-primary:hover {
  background-color: #0d145c;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-mcw-67-game-strategies__hero-title {
    font-size: 3em;
  }

  .page-mcw-67-game-strategies__section-title {
    font-size: 2em;
  }

  .page-mcw-67-game-strategies__image-text-grid {
    flex-direction: column;
    text-align: center;
  }

  .page-mcw-67-game-strategies__text-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-mcw-67-game-strategies__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-mcw-67-game-strategies__hero-title {
    font-size: 2.5em;
  }

  .page-mcw-67-game-strategies__hero-description {
    font-size: 1em;
  }

  .page-mcw-67-game-strategies__btn-primary,
  .page-mcw-67-game-strategies__btn-secondary {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-mcw-67-game-strategies__section {
    padding: 40px 0;
  }

  .page-mcw-67-game-strategies__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-mcw-67-game-strategies__paragraph {
    font-size: 0.95em;
  }

  .page-mcw-67-game-strategies__sub-title {
    font-size: 1.5em;
  }

  .page-mcw-67-game-strategies__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-mcw-67-game-strategies__card {
    padding: 20px;
  }

  .page-mcw-67-game-strategies__card-image {
    height: 180px;
  }

  .page-mcw-67-game-strategies__faq-question {
    padding: 15px;
  }

  .page-mcw-67-game-strategies__faq-title {
    font-size: 1.1em;
  }

  .page-mcw-67-game-strategies__faq-answer {
    padding: 15px;
  }

  .page-mcw-67-game-strategies__cta-section {
    padding: 60px 0;
  }

  .page-mcw-67-game-strategies__cta-title {
    font-size: 2em;
  }

  .page-mcw-67-game-strategies__cta-description {
    font-size: 1em;
  }

  /* Mobile image responsiveness */
  .page-mcw-67-game-strategies img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-mcw-67-game-strategies__hero-image-wrapper,
  .page-mcw-67-game-strategies__image-wrapper,
  .page-mcw-67-game-strategies__card-image,
  .page-mcw-67-game-strategies__content-image {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Mobile button responsiveness */
  .page-mcw-67-game-strategies__btn-primary,
  .page-mcw-67-game-strategies__btn-secondary,
  .page-mcw-67-game-strategies a[class*="button"],
  .page-mcw-67-game-strategies 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-mcw-67-game-strategies__cta-buttons,
  .page-mcw-67-game-strategies__button-group,
  .page-mcw-67-game-strategies__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-mcw-67-game-strategies__cta-buttons {
    display: flex;
    flex-direction: column; 
  }

  .page-mcw-67-game-strategies__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}