.page--g {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey text on dark backgrounds */
  line-height: 1.6;
  background-color: #1A1A1A;
}

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

.page--g h1, .page--g h2, .page--g h3 {
  color: #FFD700; /* Gold for headings */
  font-weight: bold;
  margin-bottom: 20px;
}

.page--g h1 {
  font-size: 2.8em;
  text-align: center;
}

.page--g h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page--g h3 {
  font-size: 1.6em;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page--g p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page--g a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page--g a:hover {
  color: #FFF;
}

.page--g .cta-button, .page--g .cta-button-secondary, .page--g .cta-button-small {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page--g .cta-button:hover, .page--g .cta-button-secondary:hover, .page--g .cta-button-small:hover {
  background: linear-gradient(90deg, #FFA500 0%, #FFD700 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page--g .cta-button-secondary {
  background: #1A1A1A;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page--g .cta-button-secondary:hover {
  background: #2A2A2A;
  color: #FFF;
  border-color: #FFF;
}

.page--g .cta-button-small {
  padding: 10px 25px;
  font-size: 16px;
  margin-top: 10px;
}

.page--g .center-button {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Hero Section */
.page--g .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Darker background for hero */
}

.page--g .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page--g .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page--g .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page--g .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

/* Section Intro */
.page--g .section-intro {
  padding: 60px 0;
  background-color: #2A2A2A;
}

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

.page--g .feature-item {
  background-color: #1A1A1A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g .feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page--g .feature-icon {
  width: 120px; /* Increased size for feature icons */
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6)); /* subtle glow */
}

.page--g .feature-item h3 {
  color: #FFD700;
  font-size: 1.4em;
}

.page--g .feature-item p {
  color: #B0B0B0;
}

/* Section Games */
.page--g .section-games {
  padding: 60px 0;
  background-color: #1A1A1A;
}

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

.page--g .game-card {
  background-color: #2A2A2A;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g .game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page--g .game-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

.page--g .game-card h3 {
  padding: 15px 20px 0;
  font-size: 1.5em;
}

.page--g .game-card h3 a {
  color: #FFD700;
}

.page--g .game-card p {
  padding: 0 20px 15px;
  color: #B0B0B0;
}

.page--g .game-card .read-more {
  display: block;
  text-align: center;
  padding: 10px 20px;
  background-color: #FFD700;
  color: #1A1A1A;
  font-weight: bold;
  border-radius: 0 0 10px 10px;
  transition: background-color 0.3s ease;
}

.page--g .game-card .read-more:hover {
  background-color: #FFA500;
  color: #FFF;
}

/* Section Guide */
.page--g .section-guide {
  padding: 60px 0;
  background-color: #2A2A2A;
}

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

.page--g .step-item {
  background-color: #1A1A1A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page--g .step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #1A1A1A;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #1A1A1A;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page--g .step-item h3 {
  margin-top: 25px;
  color: #FFD700;
  font-size: 1.5em;
}

.page--g .step-item p {
  color: #B0B0B0;
  flex-grow: 1;
}

/* Section Tips */
.page--g .section-tips {
  padding: 60px 0;
  background-color: #1A1A1A;
}

.page--g .section-tips ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page--g .section-tips ul li {
  background-color: #2A2A2A;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: #E0E0E0;
}

.page--g .section-tips ul li strong {
  color: #FFD700;
}

/* Section Promotions */
.page--g .section-promotions {
  padding: 60px 0;
  background-color: #2A2A2A;
}

.page--g .promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page--g .promo-card {
  background-color: #1A1A1A;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page--g .promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page--g .promo-card img {
  width: 100%;
  height: 200px; /* Consistent image height */
  object-fit: cover;
}

.page--g .promo-card h3 {
  padding: 15px 20px 0;
  font-size: 1.5em;
  color: #FFD700;
}

.page--g .promo-card p {
  padding: 0 20px 15px;
  color: #B0B0B0;
  flex-grow: 1;
}

.page--g .promo-card .cta-button-small {
  margin: 15px 20px 20px;
  width: calc(100% - 40px);
}

/* Section FAQ */
.page--g .section-faq {
  padding: 60px 0;
  background-color: #1A1A1A;
}

.page--g .faq-list {
  margin-top: 40px;
}

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

.page--g .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #2A2A2A;
  border: 1px solid #3A3A3A;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page--g .faq-question:hover {
  background-color: #3A3A3A;
  border-color: #FFD700;
}

.page--g .faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: #FFD700;
}

.page--g .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page--g .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page--g .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: #1A1A1A;
  border-top: 1px solid #3A3A3A;
  border-radius: 0 0 8px 8px;
}

.page--g .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page--g .faq-answer p {
  color: #B0B0B0;
  margin-bottom: 0;
}

/* Section Conclusion */
.page--g .section-conclusion {
  padding: 60px 0;
  text-align: center;
  background-color: #2A2A2A;
}

.page--g .section-conclusion p {
  max-width: 800px;
  margin: 0 auto 30px;
  color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page--g h1 {
    font-size: 2.4em;
  }

  .page--g h2 {
    font-size: 1.8em;
  }

  .page--g h3 {
    font-size: 1.4em;
  }

  .page--g .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page--g .intro-features, .page--g .game-cards, .page--g .guide-steps, .page--g .promotion-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page--g .feature-icon {
    width: 100px;
    height: 100px;
  }

  .page--g .game-card img {
    height: 200px;
  }

  .page--g .promo-card img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page--g h1 {
    font-size: 2em;
  }

  .page--g h2 {
    font-size: 1.6em;
  }

  .page--g h3 {
    font-size: 1.2em;
  }

  .page--g .hero-section {
    padding: 40px 15px;
  }

  .page--g .hero-image {
    margin-bottom: 20px;
  }

  .page--g .feature-item, .page--g .game-card, .page--g .step-item, .page--g .promo-card {
    padding: 25px;
  }

  .page--g .section-intro, .page--g .section-games, .page--g .section-guide, .page--g .section-tips, .page--g .section-promotions, .page--g .section-faq, .page--g .section-conclusion {
    padding: 40px 0;
  }

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

  .page--g .faq-question h3 {
    font-size: 1.1em;
  }

  .page--g .faq-toggle {
    font-size: 20px;
  }
}

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

  .page--g h2 {
    font-size: 1.4em;
  }

  .page--g .cta-button {
    padding: 10px 25px;
    font-size: 14px;
  }

  .page--g .intro-features, .page--g .game-cards, .page--g .guide-steps, .page--g .promotion-cards {
    grid-template-columns: 1fr;
  }

  .page--g .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
    top: -15px;
  }

  .page--g .faq-question {
    padding: 12px 15px;
  }

  .page--g .faq-question h3 {
    font-size: 1em;
  }

  .page--g .faq-toggle {
    font-size: 18px;
  }
}