.page-resources-gacam67-game-guide {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --button-register: #C30808;
  --button-login: #C30808;
  --bg-color: #FFFFFF;
  --font-color-register-login: #FFFF00;
  color: var(--text-color-light); /* Body background is dark, so main text should be light */
  background-color: var(--neon-dark-bg1, #0d0d0d); /* Use shared variable, fallback to dark grey */
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

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

.page-resources-gacam67-game-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-gacam67-game-guide__heading {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-resources-gacam67-game-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-light);
}

.page-resources-gacam67-game-guide a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-gacam67-game-guide a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.page-resources-gacam67-game-guide__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);
}

.page-resources-gacam67-game-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-gacam67-game-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  z-index: 2;
}

.page-resources-gacam67-game-guide__hero-content {
  position: relative;
  z-index: 3;
  color: var(--text-color-light);
  max-width: 800px;
  padding: 20px;
}

.page-resources-gacam67-game-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.page-resources-gacam67-game-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: var(--text-color-light);
}

.page-resources-gacam67-game-guide__hero-buttons,
.page-resources-gacam67-game-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-gacam67-game-guide__btn-primary,
.page-resources-gacam67-game-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-gacam67-game-guide__btn-primary {
  background-color: var(--button-register);
  color: var(--font-color-register-login);
}

.page-resources-gacam67-game-guide__btn-primary:hover {
  background-color: #a30606;
  transform: translateY(-3px);
}

.page-resources-gacam67-game-guide__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.page-resources-gacam67-game-guide__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Guide Steps */
.page-resources-gacam67-game-guide__guide-steps {
  background-color: var(--neon-dark-bg1, #0d0d0d);
}

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

.page-resources-gacam67-game-guide__step-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-resources-gacam67-game-guide__step-item:hover {
  transform: translateY(-5px);
}

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

.page-resources-gacam67-game-guide__step-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-gacam67-game-guide__step-description {
  font-size: 1em;
  color: var(--text-color-light);
}

/* Strategies */
.page-resources-gacam67-game-guide__strategies {
  background-color: var(--neon-dark-bg1, #0d0d0d);
}

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

.page-resources-gacam67-game-guide__strategy-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-resources-gacam67-game-guide__strategy-item:hover {
  transform: translateY(-5px);
}

.page-resources-gacam67-game-guide__strategy-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-gacam67-game-guide__strategy-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-gacam67-game-guide__strategy-description {
  font-size: 1em;
  color: var(--text-color-light);
}

/* Popular Games */
.page-resources-gacam67-game-guide__popular-games {
  background-color: var(--neon-dark-bg1, #0d0d0d);
}

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

.page-resources-gacam67-game-guide__game-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-resources-gacam67-game-guide__game-card:hover {
  transform: translateY(-5px);
}

.page-resources-gacam67-game-guide__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-resources-gacam67-game-guide__game-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-resources-gacam67-game-guide__game-title a {
  color: var(--primary-color);
}

.page-resources-gacam67-game-guide__game-title a:hover {
  color: var(--secondary-color);
}

.page-resources-gacam67-game-guide__game-description {
  font-size: 0.95em;
  color: var(--text-color-light);
}

/* Advantages */
.page-resources-gacam67-game-guide__advantages {
  background-color: var(--neon-dark-bg1, #0d0d0d);
}

.page-resources-gacam67-game-guide__advantage-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-gacam67-game-guide__advantage-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid var(--primary-color);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: var(--text-color-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-gacam67-game-guide__advantage-item strong {
  color: var(--primary-color);
}

/* Promotions */
.page-resources-gacam67-game-guide__promotions {
  background-color: var(--neon-dark-bg1, #0d0d0d);
}

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

.page-resources-gacam67-game-guide__promo-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-resources-gacam67-game-guide__promo-card:hover {
  transform: translateY(-5px);
}

.page-resources-gacam67-game-guide__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-resources-gacam67-game-guide__promo-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-resources-gacam67-game-guide__promo-description {
  font-size: 0.95em;
  color: var(--text-color-light);
}

.page-resources-gacam67-game-guide__promo-cta {
  margin-top: 40px;
}

/* FAQ Section */
.page-resources-gacam67-game-guide__faq {
  background-color: var(--neon-dark-bg1, #0d0d0d);
}

.page-resources-gacam67-game-guide__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-resources-gacam67-game-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-resources-gacam67-game-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-resources-gacam67-game-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-resources-gacam67-game-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-resources-gacam67-game-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--secondary-color);
}

.page-resources-gacam67-game-guide__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: var(--text-color-light);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-resources-gacam67-game-guide__faq-item[open] .page-resources-gacam67-game-guide__faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding-top: 10px;
}

/* Call to Action */
.page-resources-gacam67-game-guide__cta {
  background-color: var(--primary-color);
  padding: 80px 0;
}

.page-resources-gacam67-game-guide__cta .page-resources-gacam67-game-guide__heading,
.page-resources-gacam67-game-guide__cta .page-resources-gacam67-game-guide__paragraph {
  color: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-gacam67-game-guide__hero-title {
    font-size: 2.8em;
  }
  .page-resources-gacam67-game-guide__heading {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-gacam67-game-guide__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-gacam67-game-guide__hero-title {
    font-size: 2em;
  }
  .page-resources-gacam67-game-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-gacam67-game-guide__heading {
    font-size: 1.8em;
  }
  .page-resources-gacam67-game-guide__paragraph {
    font-size: 0.95em;
  }
  .page-resources-gacam67-game-guide__btn-primary,
  .page-resources-gacam67-game-guide__btn-secondary {
    font-size: 1em;
    padding: 12px 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-resources-gacam67-game-guide__hero-buttons,
  .page-resources-gacam67-game-guide__cta-buttons,
  .page-resources-gacam67-game-guide__promo-cta {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-resources-gacam67-game-guide__steps-grid,
  .page-resources-gacam67-game-guide__strategy-grid,
  .page-resources-gacam67-game-guide__games-grid,
  .page-resources-gacam67-game-guide__promo-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  .page-resources-gacam67-game-guide__section,
  .page-resources-gacam67-game-guide__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-gacam67-game-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-gacam67-game-guide__video-section,
  .page-resources-gacam67-game-guide__video-container,
  .page-resources-gacam67-game-guide__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-gacam67-game-guide video,
  .page-resources-gacam67-game-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  .page-resources-gacam67-game-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-gacam67-game-guide__heading {
    font-size: 1.5em;
  }
  .page-resources-gacam67-game-guide__btn-primary,
  .page-resources-gacam67-game-guide__btn-secondary {
    padding: 10px 15px;
  }
}