/* style/-g.css */
.page--g {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light gray for general text on dark background */
  background-color: #1a1a1a; /* Dark background */
}

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

.page--g__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page--g__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #cccccc; /* Lighter gray for descriptions */
}

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

.page--g__btn--primary {
  background-color: #FFD700; /* Gold background */
  color: #8B0000; /* Dark red text for contrast */
  border: 2px solid #FFD700;
}

.page--g__btn--primary:hover {
  background-color: #e0b800;
  color: #6a0000;
  border-color: #e0b800;
}

.page--g__btn--secondary {
  background-color: #8B0000; /* Dark red background */
  color: #FFD700; /* Gold text for contrast */
  border: 2px solid #8B0000;
}

.page--g__btn--secondary:hover {
  background-color: #6a0000;
  color: #e0b800;
  border-color: #6a0000;
}

.page--g__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Hero Section */
.page--g__hero-section {
  background: linear-gradient(135deg, #8B0000 0%, #3a0000 100%);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page--g__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page--g__hero-subtitle {
  font-size: 1.4em;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page--g__hero-section .page--g__btn {
  margin-top: 20px;
}

.page--g__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Why Choose Us Section */
.page--g__why-choose-us {
  padding: 80px 0;
  background-color: #2c0000; /* Darker red variant */
}

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

.page--g__feature-item {
  background-color: #440000; /* Even darker red */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page--g__feature-item:hover {
  transform: translateY(-10px);
}

.page--g__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  /* No filter to change color */
}

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

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

/* How To Play Section */
.page--g__how-to-play {
  padding: 80px 0;
  background-color: #1a1a1a;
}

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

.page--g__step-item {
  background-color: #333333;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page--g__step-number {
  font-size: 3em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
}

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

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

.page--g__step-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page--g__step-description a:hover {
  text-decoration: underline;
}

/* Game Types Section */
.page--g__game-types {
  padding: 80px 0;
  background-color: #2c0000;
}

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

.page--g__type-item {
  background-color: #440000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page--g__type-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  /* No filter to change color */
}

.page--g__type-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page--g__type-description {
  font-size: 1em;
  color: #cccccc;
  padding: 0 20px 20px;
}

/* Promotions Section */
.page--g__promotions {
  padding: 80px 0;
  background-color: #1a1a1a;
}

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

.page--g__promo-item {
  background-color: #333333;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page--g__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  /* No filter to change color */
}

.page--g__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page--g__promo-description {
  font-size: 1em;
  color: #cccccc;
  padding: 0 20px 20px;
}

.page--g__promo-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page--g__promo-description a:hover {
  text-decoration: underline;
}

/* App Download Section */
.page--g__app-download {
  padding: 80px 0;
  background-color: #8B0000; /* Auxiliary color as background */
  color: #fff;
}

.page--g__app-download .page--g__section-title,
.page--g__app-download .page--g__section-description {
  color: #FFD700;
}

.page--g__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}

.page--g__app-image {
  max-width: 350px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  /* No filter to change color */
}

.page--g__app-info {
  text-align: left;
  max-width: 500px;
}

.page--g__app-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page--g__app-features li {
  font-size: 1.2em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #fff;
}

.page--g__app-features li .page--g__icon {
  margin-right: 15px;
  color: #FFD700;
  font-size: 1.5em;
}

.page--g__btn--download {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

.page--g__btn--download:hover {
  background-color: #e0b800;
  color: #6a0000;
  border-color: #e0b800;
}

/* FAQ Section */
.page--g__faq {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page--g__faq-items {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page--g__faq-item {
  background-color: #333333;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.page--g__faq-answer {
  font-size: 1em;
  color: #cccccc;
  display: none; /* Initially hidden */
}

.page--g__faq-item.active .page--g__faq-answer {
  display: block; /* Show when active */
}

/* Call To Action Section */
.page--g__call-to-action {
  padding: 80px 0;
  background: linear-gradient(45deg, #8B0000, #FFD700);
  text-align: center;
}

.page--g__call-to-action .page--g__section-title,
.page--g__call-to-action .page--g__section-description {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page--g__call-to-action .page--g__btn {
  margin-top: 30px;
}

.page--g__call-to-action .page--g__section-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page--g__call-to-action .page--g__section-description a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page--g__hero-title {
    font-size: 2.8em;
  }
  .page--g__hero-subtitle {
    font-size: 1.2em;
  }
  .page--g__section-title {
    font-size: 2em;
  }
  .page--g__features-grid,
  .page--g__steps-grid,
  .page--g__types-grid,
  .page--g__promo-grid {
    grid-template-columns: 1fr;
  }
  .page--g__app-content {
    flex-direction: column;
  }
  .page--g__app-info {
    text-align: center;
  }
  .page--g__app-features li {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .page--g__hero-title {
    font-size: 2em;
  }
  .page--g__hero-subtitle {
    font-size: 1em;
  }
  .page--g__section-title {
    font-size: 1.8em;
  }
  .page--g__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page--g__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page--g__hero-section,
  .page--g__why-choose-us,
  .page--g__how-to-play,
  .page--g__game-types,
  .page--g__promotions,
  .page--g__app-download,
  .page--g__faq,
  .page--g__call-to-action {
    padding: 50px 0;
  }
}