/* style/-g.css */
.page--g {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0;
  line-height: 1.6;
  background-color: #0d1a2d; /* Darker shade of main color for background */
}

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

.page--g .hero-section {
  background: linear-gradient(135deg, #1A2B4C, #0d1a2d);
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

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

.page--g .hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page--g .hero-actions .btn {
  margin: 0 10px;
}

.page--g .section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

.page--g .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page--g .about-cockfighting, .page--g game-features, .page--g how-to-play, .page--g promotions-cta, .page--g faq-section, .page--g final-cta {
  padding: 80px 0;
}

.page--g .about-cockfighting {
  background-color: #1A2B4C;
}

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

.page--g .content-grid .text-content {
  flex: 1;
}

.page--g .content-grid .text-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #c0c0c0;
}

.page--g .content-grid .image-wrapper {
  flex: 1;
  text-align: center;
}

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

.page--g .game-features {
  background-color: #0d1a2d;
}

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

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

.page--g .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.page--g .feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: none; /* Ensure no color filter */
}

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

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

.page--g .how-to-play {
  background-color: #1A2B4C;
}

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

.page--g .step-item {
  background-color: #0d1a2d;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-align: center;
}

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

.page--g .step-title {
  font-size: 1.4em;
  color: #fff;
  margin-bottom: 15px;
}

.page--g .step-item p {
  color: #c0c0c0;
  margin-bottom: 20px;
}

.page--g .promotions-cta {
  background-color: #0d1a2d;
  text-align: center;
}

.page--g .cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #c0c0c0;
}

.page--g .faq-section {
  background-color: #1A2B4C;
}

.page--g .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page--g .faq-item {
  background-color: #0d1a2d;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page--g .faq-question {
  font-size: 1.3em;
  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 {
  font-size: 1.1em;
  color: #c0c0c0;
  display: none;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 10px;
}

.page--g .faq-answer.active {
  display: block;
}

.page--g .final-cta {
  background-color: #0d1a2d;
  text-align: center;
  padding-bottom: 100px;
}

.page--g .cta-buttons .btn {
  margin: 0 10px;
}

/* Buttons */
.page--g .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page--g .btn-primary {
  background-color: #FFD700;
  color: #1A2B4C;
  border: 2px solid #FFD700;
}

.page--g .btn-primary:hover {
  background-color: #e5c400;
  transform: translateY(-2px);
}

.page--g .btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page--g .btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
  transform: translateY(-2px);
}

.page--g .btn-tertiary {
  background-color: #3a4f70;
  color: #fff;
  border: 2px solid #3a4f70;
}

.page--g .btn-tertiary:hover {
  background-color: #4a6187;
  transform: translateY(-2px);
}

.page--g .btn-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.3s ease;
}

.page--g .btn-link:hover {
  border-bottom-color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page--g .hero-title {
    font-size: 3em;
  }
  .page--g .section-title {
    font-size: 2em;
  }
  .page--g .content-grid {
    flex-direction: column;
  }
  .page--g .features-grid, .page--g .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page--g .hero-section {
    padding: 60px 0;
  }
  .page--g .hero-title {
    font-size: 2.5em;
  }
  .page--g .hero-subtitle {
    font-size: 1.1em;
  }
  .page--g .hero-actions .btn {
    display: block;
    margin: 15px auto;
  }
  .page--g .about-cockfighting, .page--g game-features, .page--g how-to-play, .page--g promotions-cta, .page--g faq-section, .page--g final-cta {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .page--g .hero-title {
    font-size: 2em;
  }
  .page--g .section-title {
    font-size: 1.8em;
  }
  .page--g .btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page--g .feature-item, .page--g .step-item, .page--g .faq-item {
    padding: 20px;
  }
  .page--g .feature-title, .page--g .step-title, .page--g .faq-question {
    font-size: 1.2em;
  }
  .page--g .cta-description {
    font-size: 1em;
  }
}