.page--g {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page--g section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page--g section:nth-of-type(even) {
  background-color: #f2f2f2;
}

.page--g h1, .page--g h2, .page--g h3, .page--g h4 {
  color: #8B0000; /* Deep Red for headings */
  margin-bottom: 20px;
  font-weight: bold;
}

.page--g h1 {
  font-size: 3.2em;
  text-align: center;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page--g h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #8B0000;
}

.page--g h3 {
  font-size: 1.8em;
  color: #8B0000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page--g p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page--g ol, .page--g ul {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page--g ol li, .page--g ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444;
}

.page--g ol li h3 {
    margin-top: 0;
    margin-bottom: 5px;
    color: #8B0000;
}

.page--g .cta-button {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page--g .cta-button.primary {
  background: linear-gradient(135deg, #FFD700, #DAA520); /* Gold gradient */
  color: #8B0000; /* Deep Red text for contrast */
  border: 2px solid #DAA520;
}

.page--g .cta-button.primary:hover {
  background: linear-gradient(135deg, #DAA520, #FFD700);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page--g .cta-button.secondary {
  background-color: #8B0000; /* Deep Red */
  color: #FFD700; /* Gold text for contrast */
  border: 2px solid #8B0000;
}

.page--g .cta-button.secondary:hover {
  background-color: #A52A2A;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page--g .cta-button.small {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 10px;
}

.page--g .cta-button.large {
    padding: 18px 45px;
    font-size: 1.3em;
    margin-top: 30px;
}

/* 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: 80px 20px;
  background: #333;
  overflow: hidden;
}

.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%;
  color: #fff;
}

.page--g .hero-content h1 {
  margin-top: 0;
  color: #FFD700;
  font-size: 3.5em;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}

.page--g .hero-content p {
  font-size: 1.3em;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page--g .hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Game Types Grid */
.page--g .game-types-grid, .page--g .benefits-grid, .page--g .tournament-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page--g .game-card, .page--g .benefit-item, .page--g .tournament-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g .game-card:hover, .page--g .benefit-item:hover, .page--g .tournament-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page--g .game-card img, .page--g .benefit-item img, .page--g .tournament-card img {
  width: 100%;
  height: 250px; /* Ensure images are not too small */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page--g .game-card h3, .page--g .benefit-item h3, .page--g .tournament-card h3 {
  font-size: 1.5em;
  color: #8B0000;
  margin: 0 15px 10px 15px;
}

.page--g .game-card p, .page--g .benefit-item p, .page--g .tournament-card p {
  font-size: 1em;
  color: #555;
  padding: 0 15px;
}

/* Promotion List */
.page--g .promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page--g .promo-list li {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page--g .promo-list li h4 {
  color: #8B0000;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page--g .promo-list li p {
  font-size: 1.1em;
  color: #555;
}

/* FAQ Section */
.page--g .faq-list {
  margin-top: 40px;
}

.page--g .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}

.page--g .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page--g .faq-question:hover {
  background: #f5f5f5;
}

.page--g .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #8B0000;
}

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

.page--g .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #f9f9f9;
  color: #555;
}

.page--g .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px;
  border-top: 1px solid #eee;
}

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

/* Bottom CTA */
.page--g .section-cta-bottom {
  background: linear-gradient(135deg, #8B0000, #A52A2A); /* Deep Red gradient */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.page--g .section-cta-bottom h2 {
  color: #FFD700;
  font-size: 2.8em;
  margin-bottom: 25px;
}

.page--g .section-cta-bottom p {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page--g .section-cta-bottom .cta-button {
  background: linear-gradient(135deg, #FFD700, #DAA520);
  color: #8B0000;
  border: none;
}

.page--g .section-cta-bottom .cta-button:hover {
  background: linear-gradient(135deg, #DAA520, #FFD700);
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page--g h1 {
    font-size: 2.8em;
  }
  .page--g h2 {
    font-size: 2em;
  }
  .page--g h3 {
    font-size: 1.6em;
  }
  .page--g .hero-content p {
    font-size: 1.1em;
  }
  .page--g .cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page--g .game-types-grid, .page--g .benefits-grid, .page--g .tournament-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page--g section {
    padding: 40px 0;
  }
  .page--g h1 {
    font-size: 2.5em;
  }
  .page--g h2 {
    font-size: 1.8em;
  }
  .page--g h3 {
    font-size: 1.4em;
  }
  .page--g .hero-content h1 {
    font-size: 2.8em;
  }
  .page--g .hero-content p {
    font-size: 1em;
  }
  .page--g .hero-ctas {
    flex-direction: column;
    gap: 15px;
  }
  .page--g .cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page--g .game-types-grid, .page--g .benefits-grid, .page--g .tournament-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page--g .game-card img, .page--g .benefit-item img, .page--g .tournament-card img {
    height: 200px;
  }
  .page--g .faq-question {
    padding: 15px;
  }
  .page--g .faq-question h3 {
    font-size: 1.1em;
  }
  .page--g .faq-toggle {
    font-size: 20px;
  }
  .page--g .section-cta-bottom h2 {
    font-size: 2em;
  }
  .page--g .section-cta-bottom p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page--g h1 {
    font-size: 2em;
  }
  .page--g h2 {
    font-size: 1.6em;
  }
  .page--g h3 {
    font-size: 1.2em;
  }
  .page--g .hero-content h1 {
    font-size: 2.2em;
  }
  .page--g .hero-ctas {
    gap: 10px;
  }
  .page--g .cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page--g .section-cta-bottom h2 {
    font-size: 1.8em;
  }
}