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

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

.page--g-section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page--g-section-title {
  font-size: 36px;
  color: #DC143C;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  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-paragraph {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

/* 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: linear-gradient(135deg, #2c3e50, #1a252f); /* Dark background for contrast */
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.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: 40px;
}

.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.3);
}

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

.page--g-main-heading {
  font-size: 52px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main heading */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page--g-hero-text {
  font-size: 22px;
  margin-bottom: 40px;
  color: #e0e0e0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page--g-cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #DC143C; /* Deep Red for CTA */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 22px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(220, 20, 60, 0.4);
  text-transform: uppercase;
}

.page--g-cta-button:hover {
  background: #ff4d6e;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(220, 20, 60, 0.6);
}

/* Intro Section */
.page--g-intro .page--g-paragraph {
  font-size: 18px;
  color: #444;
  line-height: 1.8;
}

.page--g-link-button {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  padding: 12px 30px;
  background: #FFD700;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 3px 8px rgba(255, 215, 0, 0.3);
}

.page--g-link-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(255, 215, 0, 0.5);
}

/* Why Choose Section */
.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-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g-feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page--g-feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page--g-feature-title {
  font-size: 24px;
  color: #DC143C;
  margin-bottom: 15px;
  font-weight: bold;
}

.page--g-feature-item p {
  font-size: 16px;
  color: #666666;
}

/* Game Types & Promotions Cards */
.page--g-game-cards-grid,
.page--g-promo-cards-grid,
.page--g-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page--g-game-card:hover,
.page--g-promo-card:hover,
.page--g-news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page--g-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eeeeee;
}

.page--g-card-title {
  font-size: 22px;
  color: #DC143C;
  margin: 20px 20px 10px;
  font-weight: bold;
}

.page--g-card-title a.page--g-card-link {
  color: #DC143C;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page--g-card-title a.page--g-card-link:hover {
  color: #FFD700;
}

.page--g-card-description {
  font-size: 16px;
  color: #666666;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page--g-card-button {
  display: inline-block;
  padding: 10px 20px;
  background: #FFD700;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.page--g-card-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* How To Bet Section */
.page--g-steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page--g-steps-list li {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-left: 5px solid #DC143C;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g-steps-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page--g-step-title {
  font-size: 22px;
  color: #DC143C;
  margin-bottom: 10px;
  font-weight: bold;
}

.page--g-steps-list p {
  font-size: 16px;
  color: #555555;
}

/* Tips Section */
.page--g-tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page--g-tips-list li {
  background-color: #fefefe;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-top: 5px solid #FFD700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g-tips-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page--g-tip-title {
  font-size: 20px;
  color: #333333;
  margin-bottom: 10px;
  font-weight: bold;
}

.page--g-tips-list p {
  font-size: 16px;
  color: #555555;
}

/* Safety & Support Section */
.page--g-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page--g-info-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g-info-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page--g-info-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page--g-info-title {
  font-size: 24px;
  color: #DC143C;
  margin-bottom: 15px;
  font-weight: bold;
}

.page--g-info-item p {
  font-size: 16px;
  color: #666666;
}

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

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #FFD700;
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
  background: #e6c200;
}

.faq-question h3 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: #1a1a1a;
}

.faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #1a1a1a;
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
  color: #444;
}

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

.faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page--g-main-heading {
    font-size: 44px;
  }

  .page--g-hero-text {
    font-size: 20px;
  }

  .page--g-section-title {
    font-size: 32px;
  }

  .page--g-paragraph {
    font-size: 17px;
  }

  .page--g-features-grid,
  .page--g-game-cards-grid,
  .page--g-promo-cards-grid,
  .page--g-news-grid,
  .page--g-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .page--g-hero-section {
    padding: 60px 15px;
  }

  .page--g-main-heading {
    font-size: 36px;
  }

  .page--g-hero-text {
    font-size: 18px;
  }

  .page--g-cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }

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

  .page--g-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page--g-paragraph {
    font-size: 16px;
    margin-bottom: 20px;
  }

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

  .page--g-feature-icon,
  .page--g-info-icon {
    width: 80px;
    height: 80px;
  }

  .page--g-feature-title,
  .page--g-card-title,
  .page--g-info-title {
    font-size: 20px;
  }

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

  .page--g-steps-list li {
    padding: 20px;
  }

  .page--g-step-title {
    font-size: 18px;
  }

  .page--g-tips-list {
    grid-template-columns: 1fr;
  }

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

  .faq-question h3 {
    font-size: 18px;
  }

  .faq-toggle {
    font-size: 24px;
  }

  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page--g-hero-section {
    padding: 40px 10px;
  }

  .page--g-main-heading {
    font-size: 30px;
  }

  .page--g-hero-text {
    font-size: 16px;
  }

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

  .page--g-section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .page--g-paragraph {
    font-size: 15px;
  }

  .page--g-features-grid,
  .page--g-game-cards-grid,
  .page--g-promo-cards-grid,
  .page--g-news-grid,
  .page--g-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page--g-card-image {
    height: 160px;
  }

  .page--g-card-title {
    font-size: 18px;
  }

  .page--g-card-description {
    font-size: 14px;
  }

  .page--g-card-button {
    padding: 8px 15px;
    font-size: 14px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

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