
    /* General styling for the page */
.page-g-cam-67 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
  padding-top: 10px; /* Small padding for aesthetic spacing below potential fixed header */
}

.page-g-cam-67__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-g-cam-67__section {
  padding: 60px 0;
  text-align: center;
}

.page-g-cam-67__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-g-cam-67__section-title {
  font-size: 2.5em;
  color: #212529;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-g-cam-67__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #dc3545; /* Red accent */
  border-radius: 2px;
}

.page-g-cam-67__highlight {
  color: #dc3545;
  font-weight: bold;
}

/* Hero Section */
.page-g-cam-67__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  background-color: #343a40; /* Dark background for hero */
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-g-cam-67__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-g-cam-67__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay */
}

.page-g-cam-67__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.page-g-cam-67__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff; /* Ensure contrast */
}

.page-g-cam-67__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e9ecef; /* Ensure contrast */
}

.page-g-cam-67__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-g-cam-67__primary-button,
.page-g-cam-67__secondary-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1em;
  border: none;
}

.page-g-cam-67__primary-button {
  background-color: #dc3545; /* Red */
  color: #fff;
}

.page-g-cam-67__primary-button:hover {
  background-color: #c82333; /* Darker red */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-g-cam-67__secondary-button {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-g-cam-67__secondary-button:hover {
  background-color: #fff;
  color: #343a40;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* About Section */
.page-g-cam-67__about-section p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1.1em;
  color: #495057;
}

.page-g-cam-67__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  box-sizing: border-box; /* Ensure padding/border is included in width */
}

/* Features Section */
.page-g-cam-67__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  box-sizing: border-box; /* For the ul container */
}

.page-g-cam-67__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box; /* Crucial for list item width */
}

.page-g-cam-67__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-g-cam-67__feature-icon {
  width: 120px; /* Min size 200x200, so this will be scaled down */
  height: auto;
  margin-bottom: 20px;
  max-width: 100%;
  border-radius: 5px;
  box-sizing: border-box;
}

.page-g-cam-67__feature-heading {
  font-size: 1.5em;
  color: #dc3545;
  margin-bottom: 15px;
}

.page-g-cam-67__feature-item p {
  color: #6c757d;
  font-size: 1em;
}

/* How-to-play Section */
.page-g-cam-67__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  box-sizing: border-box; /* For the container */
}

.page-g-cam-67__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  box-sizing: border-box; /* Crucial for step item width */
}

.page-g-cam-67__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #dc3545;
  color: #fff;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-g-cam-67__step-title {
  font-size: 1.4em;
  color: #212529;
  margin-bottom: 10px;
}

.page-g-cam-67__step-description {
  color: #6c757d;
}

/* FAQ Section */
.page-g-cam-67__faq-container {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-g-cam-67__faq-item {
  background-color: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  box-sizing: border-box; /* For the faq item */
}

.page-g-cam-67__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #f1f1f1;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.page-g-cam-67__faq-question:hover {
  background-color: #e5e5e5;
}

.page-g-cam-67__faq-question-title {
  font-size: 1.2em;
  color: #212529;
  margin: 0;
  pointer-events: none; /* Prevent blocking click event on parent */
}

.page-g-cam-67__faq-toggle {
  font-size: 1.8em;
  color: #dc3545;
  font-weight: bold;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent blocking click event on parent */
}

.page-g-cam-67__faq-item.active .page-g-cam-67__faq-toggle {
  transform: rotate(45deg); /* Change + to X-like, or simply rotate to - */
}

.page-g-cam-67__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  color: #495057;
}

.page-g-cam-67__faq-item.active .page-g-cam-67__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-g-cam-67__faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* Call to Action Section */
.page-g-cam-67__cta-section {
  background-color: #343a40;
  color: #fff;
  padding: 80px 20px;
}

.page-g-cam-67__cta-section .page-g-cam-67__section-title {
  color: #fff;
}

.page-g-cam-67__cta-section .page-g-cam-67__section-title::after {
  background-color: #fff;
}

.page-g-cam-67__cta-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1em;
  color: #e9ecef;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-g-cam-67__hero-title {
    font-size: 3em;
  }
  .page-g-cam-67__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-g-cam-67__hero-section {
    padding: 60px 15px 30px;
  }
  .page-g-cam-67__hero-title {
    font-size: 2.5em;
  }
  .page-g-cam-67__hero-description {
    font-size: 1em;
  }
  .page-g-cam-67__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-g-cam-67__primary-button,
  .page-g-cam-67__secondary-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-g-cam-67__section {
    padding: 40px 0;
  }

  .page-g-cam-67__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-g-cam-67__content-wrapper {
    padding: 15px;
  }

  /* List items responsive */
  .page-g-cam-67__feature-list,
  .page-g-cam-67__steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .page-g-cam-67__feature-item,
  .page-g-cam-67__step-item,
  .page-g-cam-67__faq-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 20px !important; /* Adjust padding for smaller screens */
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important; /* For long keywords */
  }

  .page-g-cam-67__feature-icon {
    width: 100px; /* Adjust size for mobile if needed, still > 200px original */
  }

  .page-g-cam-67__faq-question {
    padding: 15px 20px;
  }

  .page-g-cam-67__faq-question-title {
    font-size: 1.1em;
  }

  .page-g-cam-67__faq-toggle {
    font-size: 1.5em;
  }

  .page-g-cam-67__faq-answer {
    padding: 15px 20px !important;
  }

  .page-g-cam-67__content-image {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-g-cam-67__hero-title {
    font-size: 2em;
  }
  .page-g-cam-67__section-title {
    font-size: 1.5em;
  }
}

/* Ensure image responsiveness */
.page-g-cam-67 img {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

.page-g-cam-67__hero-image-wrapper,
.page-g-cam-67__content-image {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
  