.page--g {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f5e6d0; /* Light text for dark background */
  background-color: #0A192F; /* Main dark blue background */
}

.page--g__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page--g__hero-section {
  background: linear-gradient(135deg, #0A192F, #1e3a60); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page--g__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold highlight */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page--g__hero-description {
  font-size: 1.3em;
  color: #f5e6d0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page--g__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  position: relative;
}

.page--g__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page--g__section-subtitle {
  font-size: 1.2em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 60px;
}

.page--g__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page--g__highlight {
  color: #FFD700;
}

.page--g__keyword {
  font-weight: bold;
  color: #FFD700; /* Ensure keywords stand out */
}

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

.page--g__btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark text for gold button */
  margin: 10px;
}

.page--g__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page--g__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin: 10px;
}

.page--g__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page--g__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 20px;
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page--g__btn-small:hover {
  background-color: #e6c200;
}

.page--g__link-inline {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
}

.page--g__link-inline:hover {
    color: #e6c200;
}

.page--g__intro-section, .page--g__why-new88-section, .page--g__how-to-play-section, .page--g__rules-tips-section, .page--g__faq-section, .page--g__cta-final-section {
  padding: 80px 0;
}

.page--g__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page--g__text-content {
  flex: 1;
  min-width: 300px;
}

.page--g__text-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #cccccc;
}

.page--g__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page--g__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page--g__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page--g__feature-card {
  background-color: #1a2a47; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page--g__feature-card:hover {
  transform: translateY(-10px);
  background-color: #2a3d5e;
}

.page--g__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: inline-block;
}

.page--g__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page--g__feature-description {
  color: #cccccc;
  font-size: 1em;
}

.page--g__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.page--g__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page--g__step-card {
  background-color: #1a2a47;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-top: 60px;
}

.page--g__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #0A192F;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #0A192F;
}

.page--g__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page--g__step-description {
  color: #cccccc;
  font-size: 1em;
}

.page--g__rules-tips-section .page--g__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.page--g__rules-tips-section .page--g__text-column {
    flex: 2;
    min-width: 300px;
}

.page--g__rules-tips-section .page--g__text-column ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page--g__rules-tips-section .page--g__text-column ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    color: #cccccc;
}

.page--g__rules-tips-section .page--g__text-column ul li::before {
    content: '★';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    top: 0;
}

.page--g__rules-tips-section .page--g__text-column ul li p {
    margin: 0;
    color: #cccccc;
}

.page--g__rules-tips-section .page--g__image-column {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.page--g__faq-items {
  margin-top: 50px;
}

.page--g__faq-item {
  background-color: #1a2a47;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page--g__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page--g__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page--g__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page--g__faq-answer {
  color: #cccccc;
  font-size: 1em;
  margin-top: 15px;
  display: none; /* Hidden by default */
}

.page--g__faq-answer.active {
    display: block;
}

.page--g__cta-final-section {
  background: linear-gradient(90deg, #0A192F, #1e3a60);
  text-align: center;
  padding: 80px 0;
}

.page--g__cta-final-section .page--g__section-title {
  color: #FFD700;
  margin-bottom: 20px;
  padding-top: 0;
}

.page--g__cta-final-section .page--g__section-title::after {
    display: none;
}

.page--g__cta-final-section .page--g__section-subtitle {
  color: #f5e6d0;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page--g__hero-title {
    font-size: 2.8em;
  }
  .page--g__section-title {
    font-size: 2.2em;
  }
  .page--g__content-grid, .page--g__rules-tips-section .page--g__content-wrapper {
    flex-direction: column;
  }
  .page--g__text-content, .page--g__image-wrapper, .page--g__rules-tips-section .page--g__text-column, .page--g__rules-tips-section .page--g__image-column {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page--g__hero-section {
    padding: 60px 0;
  }
  .page--g__hero-title {
    font-size: 2.2em;
  }
  .page--g__hero-description {
    font-size: 1.1em;
  }
  .page--g__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page--g__section-subtitle {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page--g__intro-section, .page--g__why-new88-section, .page--g__how-to-play-section, .page--g__rules-tips-section, .page--g__faq-section, .page--g__cta-final-section {
    padding: 60px 0;
  }
  .page--g__features-grid, .page--g__steps-grid {
    grid-template-columns: 1fr;
  }
  .page--g__feature-card, .page--g__step-card, .page--g__faq-item {
    padding: 25px;
  }
  .page--g__step-number {
    top: -20px;
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page--g__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page--g__hero-title {
    font-size: 1.8em;
  }
  .page--g__section-title {
    font-size: 1.5em;
  }
  .page--g__btn {
    padding: 12px 20px;
    font-size: 1em;
    margin: 5px;
  }
  .page--g__sub-title {
    font-size: 1.5em;
  }
  .page--g__rules-tips-section .page--g__text-column ul li {
    padding-left: 25px;
  }
  .page--g__rules-tips-section .page--g__text-column ul li::before {
    font-size: 1em;
  }
}