.page-resources-da-gacam67-gameplay-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background from shared.css */
}

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

.page-resources-da-gacam67-gameplay-guide__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #26A9E0; /* Primary brand color for hero background */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-resources-da-gacam67-gameplay-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-resources-da-gacam67-gameplay-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-da-gacam67-gameplay-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-da-gacam67-gameplay-guide__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-da-gacam67-gameplay-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-resources-da-gacam67-gameplay-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for better text contrast */
}

.page-resources-da-gacam67-gameplay-guide__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
  padding-top: 40px;
}

.page-resources-da-gacam67-gameplay-guide__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-da-gacam67-gameplay-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-da-gacam67-gameplay-guide__dark-bg {
  background-color: var(--black-color); /* Inherit from shared.css, typically dark */
  color: #ffffff;
  padding: 60px 0;
}

.page-resources-da-gacam67-gameplay-guide__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text on light background */
  padding: 60px 0;
}

.page-resources-da-gacam67-gameplay-guide__light-bg .page-resources-da-gacam67-gameplay-guide__section-title,
.page-resources-da-gacam67-gameplay-guide__light-bg .page-resources-da-gacam67-gameplay-guide__sub-title {
  color: #26A9E0;
}

.page-resources-da-gacam67-gameplay-guide__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 30px;
  background-color: #000;
  border-radius: 10px;
}

.page-resources-da-gacam67-gameplay-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.page-resources-da-gacam67-gameplay-guide__list,
.page-resources-da-gacam67-gameplay-guide__numbered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #ffffff; /* Default for dark bg */
}

.page-resources-da-gacam67-gameplay-guide__light-bg .page-resources-da-gacam67-gameplay-guide__list,
.page-resources-da-gacam67-gameplay-guide__light-bg .page-resources-da-gacam67-gameplay-guide__numbered-list {
  color: #333333;
}

.page-resources-da-gacam67-gameplay-guide__list-item {
  margin-bottom: 10px;
}

.page-resources-da-gacam67-gameplay-guide__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-resources-da-gacam67-gameplay-guide__card {
  background-color: #f8f8f8;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-da-gacam67-gameplay-guide__dark-bg .page-resources-da-gacam67-gameplay-guide__card {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.page-resources-da-gacam67-gameplay-guide__dark-bg .page-resources-da-gacam67-gameplay-guide__card-title {
  color: #26A9E0;
}

.page-resources-da-gacam67-gameplay-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.page-resources-da-gacam67-gameplay-guide__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-da-gacam67-gameplay-guide__card-text {
  font-size: 1em;
  line-height: 1.6;
}

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

.page-resources-da-gacam67-gameplay-guide__cta-buttons--center {
  text-align: center;
  margin-top: 40px;
}

.page-resources-da-gacam67-gameplay-guide__btn-primary,
.page-resources-da-gacam67-gameplay-guide__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;
  cursor: pointer;
}

.page-resources-da-gacam67-gameplay-guide__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-da-gacam67-gameplay-guide__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
  transform: translateY(-2px);
}

.page-resources-da-gacam67-gameplay-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-da-gacam67-gameplay-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
}

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

.page-resources-da-gacam67-gameplay-guide__dark-bg .page-resources-da-gacam67-gameplay-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.page-resources-da-gacam67-gameplay-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  transition: background-color 0.3s ease;
}

.page-resources-da-gacam67-gameplay-guide__faq-question:hover {
  background-color: #e9f5ff;
}

.page-resources-da-gacam67-gameplay-guide__dark-bg .page-resources-da-gacam67-gameplay-guide__faq-question {
  color: #ffffff;
}

.page-resources-da-gacam67-gameplay-guide__dark-bg .page-resources-da-gacam67-gameplay-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-da-gacam67-gameplay-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-da-gacam67-gameplay-guide__faq-item.active .page-resources-da-gacam67-gameplay-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-da-gacam67-gameplay-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1.1em;
}

.page-resources-da-gacam67-gameplay-guide__faq-item.active .page-resources-da-gacam67-gameplay-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px 20px 20px; /* Adjust padding for expanded state */
}

.page-resources-da-gacam67-gameplay-guide__faq-answer p {
  margin-bottom: 10px;
  color: #333333; /* Dark text for answer content */
}