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

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

.page--g h1, .page--g h2, .page--g h3 {
  color: #0A2463;
  font-weight: bold;
  margin-bottom: 20px;
}

.page--g h1 {
  font-size: 2.8em;
  text-align: center;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page--g h3 {
  font-size: 1.6em;
  color: #0A2463;
}

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

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

/* 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: linear-gradient(135deg, #0A2463, #3a5c92);
  color: #ffffff;
}

.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: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page--g .hero-content h1 {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 3.2em;
  line-height: 1.2;
}

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

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

.page--g .cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page--g .cta-button.primary {
  background: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page--g .cta-button.primary:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page--g .cta-button.secondary:hover {
  background: #1a3e7a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Why Choose Section */
.page--g .section-why-choose {
  background-color: #f8f8f8;
  padding: 80px 0;
}

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

.page--g .feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700;
}

.page--g .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page--g .feature-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page--g .feature-item h3 {
  color: #0A2463;
  font-size: 1.5em;
  margin-bottom: 15px;
}

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

/* Game Types Section */
.page--g .section-game-types {
  background-color: #ffffff;
  padding: 80px 0;
}

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

.page--g .game-card {
  background: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page--g .game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.page--g .game-card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page--g .game-card h3 {
  padding: 20px 25px 10px;
  font-size: 1.4em;
  color: #0A2463;
}

.page--g .game-card h3 a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page--g .game-card p {
  padding: 0 25px 20px;
  color: #666666;
  font-size: 0.95em;
}

.page--g .btn-read-more {
  display: block;
  width: calc(100% - 50px);
  margin: 0 25px 25px;
  padding: 12px 20px;
  background: #FFD700;
  color: #0A2463;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page--g .btn-read-more:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

/* How To Bet Section */
.page--g .section-how-to-bet {
  background-color: #f8f8f8;
  padding: 80px 0;
}

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

.page--g .step-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-bottom: 5px solid #0A2463;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page--g .step-number {
  width: 60px;
  height: 60px;
  background-color: #0A2463;
  color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 20px;
  border: 3px solid #FFD700;
}

.page--g .step-item h3 {
  color: #0A2463;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page--g .step-item p {
  color: #555555;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page--g .btn-action {
  display: inline-block;
  padding: 12px 25px;
  background: #FFD700;
  color: #0A2463;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page--g .btn-action:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

/* Betting Tips Section */
.page--g .section-betting-tips {
  background-color: #ffffff;
  padding: 80px 0;
}

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

.page--g .tips-list li {
  background: #fdfdfd;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #FFD700;
}

.page--g .tips-list li h3 {
  color: #0A2463;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page--g .tips-list li p {
  color: #666666;
}

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

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

.page--g .promo-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #0A2463;
}

.page--g .promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.page--g .promo-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page--g .promo-card h3 {
  padding: 20px 25px 10px;
  font-size: 1.4em;
  color: #0A2463;
}

.page--g .promo-card h3 a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page--g .promo-card p {
  padding: 0 25px 20px;
  color: #666666;
  font-size: 0.95em;
}

.page--g .btn-view-promo {
  display: block;
  width: calc(100% - 50px);
  margin: 0 25px 25px;
  padding: 12px 20px;
  background: #0A2463;
  color: #FFD700;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page--g .btn-view-promo:hover {
  background: #1a3e7a;
  transform: translateY(-2px);
}

/* Support Section */
.page--g .section-support {
  background-color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page--g .support-info {
  margin-top: 40px;
  background: #fdfdfd;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #e0e0e0;
}

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

.page--g .support-info ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page--g .support-info li {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #555555;
}

.page--g .support-info li a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page--g .support-info li a:hover {
  color: #FFD700;
  text-decoration: underline;
}

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

.page--g .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page--g .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  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: #0A2463;
}

.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);
  color: #0A2463;
}

.page--g .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
  border-radius: 0 0 8px 8px;
}

.page--g .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page--g h1 {
    font-size: 2.5em;
  }
  .page--g h2 {
    font-size: 2em;
  }
  .page--g h3 {
    font-size: 1.4em;
  }
  .page--g .hero-content h1 {
    font-size: 2.8em;
  }
  .page--g .features-grid, .page--g .game-cards-grid, .page--g .steps-list, .page--g .promo-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page--g .feature-icon {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .page--g section {
    padding: 40px 0;
  }
  .page--g h1 {
    font-size: 2em;
  }
  .page--g h2 {
    font-size: 1.8em;
  }
  .page--g h3 {
    font-size: 1.3em;
  }
  .page--g .hero-section {
    padding: 40px 15px;
  }
  .page--g .hero-content h1 {
    font-size: 2.2em;
  }
  .page--g .hero-content p {
    font-size: 1em;
  }
  .page--g .hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page--g .cta-button {
    width: 80%;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page--g .feature-item {
    padding: 25px;
  }
  .page--g .game-card h3, .page--g .promo-card h3 {
    font-size: 1.3em;
  }
  .page--g .step-item {
    padding: 25px;
  }
  .page--g .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page--g .tips-list li {
    padding: 25px;
  }
  .page--g .faq-question {
    padding: 15px 20px;
  }
  .page--g .faq-question h3 {
    font-size: 1.1em;
  }
  .page--g .faq-toggle {
    font-size: 20px;
  }
  .page--g .faq-answer {
    padding: 0 20px;
  }
  .page--g .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page--g h1 {
    font-size: 1.8em;
  }
  .page--g .hero-content h1 {
    font-size: 1.8em;
  }
  .page--g .cta-button {
    width: 100%;
  }
  .page--g .feature-icon {
    width: 100px;
    height: 100px;
  }
  .page--g .game-cards-grid, .page--g .promo-cards-grid {
    grid-template-columns: 1fr;
  }
}