
    /* General styles for the page */
.page-g-67 {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #1a1a1a; /* Dark background */
  line-height: 1.6;
  padding-top: 10px; /* Small padding top, assuming body already has offset */
}

/* Section styling */
.page-g-67__hero-section,
.page-g-67__features-section,
.page-g-67__how-to-play-section,
.page-g-67__promo-section,
.page-g-67__faq-section,
.page-g-67__cta-bottom {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-g-67__section-title {
  font-size: 2.5em;
  color: #ffd700; /* Gold accent color */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-g-67__section-title strong {
  color: #fff;
}

/* Hero Section */
.page-g-67__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
  border-bottom: 5px solid #ffd700;
  padding-top: 60px; /* Adjusted for visual balance */
}

.page-g-67__hero-content {
  max-width: 800px;
  margin-bottom: 30px;
}

.page-g-67__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}

.page-g-67__hero-title strong {
  color: #ffd700;
}

.page-g-67__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ccc;
}

.page-g-67__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-g-67__button {
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.page-g-67__button--primary {
  background-color: #ffd700;
  color: #1a1a1a;
}

.page-g-67__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-g-67__button--secondary {
  background-color: #333;
  color: #ffd700;
  border: 2px solid #ffd700;
}

.page-g-67__button--secondary:hover {
  background-color: #ffd700;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-g-67__hero-image-wrapper {
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-g-67__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Features Section */
.page-g-67__features-section {
  background-color: #222;
  border-radius: 10px;
  margin-top: 40px;
}

.page-g-67__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-g-67__feature-item {
  background-color: #2c2c2c;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-g-67__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-g-67__feature-icon {
  width: 200px; /* Minimum size requirement */
  height: auto;
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-g-67__feature-description {
  color: #ccc;
  font-size: 1em;
}

/* How To Play Section */
.page-g-67__how-to-play-section {
  background-color: #1a1a1a;
  padding-bottom: 60px;
}

.page-g-67__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-g-67__step-item {
  background-color: #2c2c2c;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
}

.page-g-67__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffd700;
  color: #1a1a1a;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  border: 3px solid #e6c200;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.page-g-67__step-description {
  color: #ccc;
}

.page-g-67__how-to-play-cta {
  text-align: center;
  margin-top: 40px;
}

/* Promo Section */
.page-g-67__promo-section {
  background-color: #222;
  border-radius: 10px;
  padding-bottom: 60px;
}

.page-g-67__promo-card {
  display: flex;
  flex-direction: column;
  background-color: #2c2c2c;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-g-67__promo-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  display: block;
}

.page-g-67__promo-content {
  padding: 30px;
  text-align: center;
}

.page-g-67__promo-title {
  font-size: 2em;
  color: #ffd700;
  margin-bottom: 15px;
}

.page-g-67__promo-description {
  color: #ccc;
  margin-bottom: 25px;
  font-size: 1.1em;
}

.page-g-67__promo-note {
  text-align: center;
  font-size: 0.9em;
  color: #888;
}

/* FAQ Section */
.page-g-67__faq-section {
  background-color: #1a1a1a;
  padding-bottom: 60px;
}

.page-g-67__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-g-67__faq-item {
  background-color: #2c2c2c;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-g-67__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #3a3a3a;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid #444;
}

.page-g-67__faq-question:hover {
  background-color: #4a4a4a;
}

.page-g-67__faq-question-text {
  font-size: 1.3em;
  color: #ffd700;
  margin: 0;
  pointer-events: none; /* Prevent h3 from blocking click event */
}

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

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

.page-g-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: #ccc;
}

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

.page-g-67__faq-answer p {
  margin: 0;
  padding-bottom: 10px; /* Adjust as needed for paragraph spacing */
}

/* Bottom CTA Section */
.page-g-67__cta-bottom {
  text-align: center;
  background-color: #222;
  border-top: 5px solid #ffd700;
}

.page-g-67__cta-description {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 30px;
}

.page-g-67__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Floating buttons */
.page-g-67__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000; /* Ensure it floats above other content */
}

.page-g-67__floating-button {
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-g-67__floating-button--register {
  background-color: #007bff; /* Blue for register */
  color: #fff;
}

.page-g-67__floating-button--register:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-g-67__floating-button--login {
  background-color: #28a745; /* Green for login */
  color: #fff;
}

.page-g-67__floating-button--login:hover {
  background-color: #1e7e34;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}


/* Responsive Design */
@media (max-width: 768px) {
  .page-g-67__hero-section,
  .page-g-67__features-section,
  .page-g-67__how-to-play-section,
  .page-g-67__promo-section,
  .page-g-67__faq-section,
  .page-g-67__cta-bottom {
    padding: 30px 15px;
  }

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

  .page-g-67__hero-title {
    font-size: 2.2em;
  }

  .page-g-67__hero-description {
    font-size: 1em;
  }

  .page-g-67__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-g-67__button {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* List items responsive for features grid */
  .page-g-67__features-grid {
    grid-template-columns: 1fr; /* Stack items */
    gap: 20px;
  }
  .page-g-67__feature-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 20px;
  }
  .page-g-67__feature-description,
  .page-g-67__step-description {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  /* List items responsive for steps grid */
  .page-g-67__steps-grid {
    grid-template-columns: 1fr; /* Stack items */
    gap: 20px;
  }
  .page-g-67__step-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 20px;
  }

  .page-g-67__promo-card {
    flex-direction: column;
  }

  .page-g-67__promo-title {
    font-size: 1.5em;
  }

  .page-g-67__promo-description {
    font-size: 0.95em;
  }

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

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

  .page-g-67__faq-answer {
    padding: 0 20px;
  }

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

  .page-g-67__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-g-67__floating-buttons {
    bottom: 15px;
    right: 15px;
  }

  .page-g-67__floating-button {
    padding: 10px 18px;
    font-size: 0.9em;
  }
}

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

  .page-g-67__section-title {
    font-size: 1.8em;
  }
}
  