/* style/-g.css */
.page--g {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

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

.page--g__hero-section {
  background: linear-gradient(135deg, #FF4500, #1E90FF);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.page--g__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page--g__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page--g__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page--g__btn--primary {
  background-color: #FF4500;
  color: #fff;
  border: 2px solid #FF4500;
}

.page--g__btn--primary:hover {
  background-color: #e63c00;
  border-color: #e63c00;
  transform: translateY(-2px);
}

.page--g__btn--secondary {
  background-color: #1E90FF;
  color: #fff;
  border: 2px solid #1E90FF;
}

.page--g__btn--secondary:hover {
  background-color: #1a7bdc;
  border-color: #1a7bdc;
  transform: translateY(-2px);
}

.page--g__btn--tertiary {
  background-color: #333;
  color: #fff;
  border: 2px solid #333;
}

.page--g__btn--tertiary:hover {
  background-color: #555;
  border-color: #555;
  transform: translateY(-2px);
}

.page--g__btn--outline {
  background-color: transparent;
  color: #FF4500;
  border: 2px solid #FF4500;
}

.page--g__btn--outline:hover {
  background-color: #FF4500;
  color: #fff;
  transform: translateY(-2px);
}

.page--g__section-title {
  font-size: 2.5em;
  color: #FF4500;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page--g__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

.page--g__features-section, .page--g__guide-section, .page--g__bet-types-section, .page--g__strategy-section, .page--g__promo-section, .page--g__app-section, .page--g__faq-section, .page--g__contact-section, .page--g__conclusion-section {
  padding: 60px 0;
}

.page--g__features-section {
  background-color: #fff;
}

.page--g__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page--g__feature-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.page--g__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page--g__feature-heading {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page--g__feature-text {
  font-size: 1em;
  color: #444;
}

.page--g__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

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

.page--g__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 5px solid #FF4500;
}

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

.page--g__step-heading {
  font-size: 1.6em;
  color: #FF4500;
  margin-bottom: 15px;
  font-weight: bold;
}

.page--g__step-text {
  font-size: 1em;
  color: #444;
  margin-bottom: 20px;
}

.page--g__bet-types-section {
  background-color: #f0f8ff;
}

.page--g__bet-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page--g__bet-list li {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #1E90FF;
}

.page--g__bet-heading {
  font-size: 1.4em;
  color: #1E90FF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page--g__bet-text {
  font-size: 1em;
  color: #444;
}

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

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

.page--g__strategy-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page--g__strategy-heading {
  font-size: 1.5em;
  color: #FF4500;
  margin-bottom: 15px;
  font-weight: bold;
}

.page--g__strategy-text {
  font-size: 1em;
  color: #444;
}

.page--g__promo-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.page--g__promo-list li {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FF4500;
  font-size: 1.1em;
  color: #333;
}

.page--g__promo-list li strong {
  color: #FF4500;
}

.page--g__app-section {
  background-color: #1E90FF;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page--g__app-section .page--g__section-title {
  color: #fff;
}

.page--g__app-section .page--g__section-description {
  color: #e0e0e0;
}

.page--g__app-benefits {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 30px auto;
  text-align: left;
}

.page--g__app-benefits li {
  font-size: 1.1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page--g__app-benefits li::before {
  content: '✔';
  color: #FF4500;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page--g__app-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.page--g__qr-code {
  width: 180px;
  height: 180px;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
}

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

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

.page--g__faq-item {
  background-color: #fff;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page--g__faq-question {
  font-size: 1.3em;
  color: #1E90FF;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page--g__faq-answer {
  font-size: 1em;
  color: #555;
  display: none; /* Hidden by default, toggled by JS */
}

.page--g__faq-question.active + .page--g__faq-answer {
  display: block;
}

.page--g__contact-section {
  background-color: #f0f8ff;
}

.page--g__contact-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 30px auto;
  text-align: center;
}

.page--g__contact-list li {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #333;
}

.page--g__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

.page--g__conclusion-text {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #333;
}

.page--g__conclusion-text a {
  color: #FF4500;
  text-decoration: none;
  font-weight: bold;
}

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

.page--g__copyright-section {
  background-color: #333;
  color: #ccc;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9em;
}

.page--g__copyright-text {
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page--g__hero-title {
    font-size: 2.5em;
  }

  .page--g__hero-description {
    font-size: 1em;
  }

  .page--g__hero-actions {
    flex-direction: column;
  }

  .page--g__btn {
    width: 80%;
  }

  .page--g__section-title {
    font-size: 2em;
  }

  .page--g__app-download {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page--g__hero-title {
    font-size: 2em;
  }

  .page--g__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page--g__section-title {
    font-size: 1.8em;
  }

  .page--g__feature-item, .page--g__step-item, .page--g__bet-list li, .page--g__strategy-item, .page--g__promo-list li, .page--g__faq-item {
    padding: 20px;
  }
}