.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__hero-section {
  background: linear-gradient(135deg, #FF4500, #1E90FF);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page--g__hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(45deg);
}

.page--g__hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(-30deg);
}

.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.3em;
  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: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px 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: #e63900;
  border-color: #e63900;
  transform: translateY(-3px);
}

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

.page--g__btn--secondary:hover {
  background-color: #1565b3;
  border-color: #1565b3;
  transform: translateY(-3px);
}

.page--g__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  box-shadow: none;
}

.page--g__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page--g__introduction-section, .page--g__features-section, .page--g__how-to-play-section, .page--g__tips-section, .page--g__faq-section, .page--g__final-cta-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page--g__introduction-section {
  background-color: #fdfdfd;
}

.page--g__section-title {
  font-size: 2.5em;
  color: #FF4500;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

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

.page--g__description {
  text-align: center;
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page--g__content-grid:nth-child(even) {
  flex-direction: row-reverse;
}

.page--g__text-content {
  flex: 1;
}

.page--g__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #555;
}

.page--g__text-content ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page--g__text-content li {
  margin-bottom: 10px;
  color: #555;
}

.page--g__image-container {
  flex: 1;
  text-align: center;
}

.page--g__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

.page--g__call-to-action {
  text-align: center;
  margin-top: 40px;
}

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

.page--g__feature-card {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FF4500;
}

.page--g__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page--g__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

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

.page--g__feature-card p {
  color: #666;
  font-size: 0.95em;
}

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

.page--g__step-card {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page--g__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1E90FF;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page--g__step-title {
  font-size: 1.4em;
  color: #FF4500;
  margin-bottom: 15px;
}

.page--g__step-card p {
  color: #666;
  margin-bottom: 20px;
}

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

.page--g__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.page--g__accordion-header {
  background-color: #FF4500;
  color: #fff;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page--g__accordion-header:hover {
  background-color: #e63900;
}

.page--g__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.page--g__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page--g__accordion-content {
  padding: 0 25px;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page--g__accordion-content p {
  padding: 15px 0;
  color: #555;
  font-size: 1em;
}

.page--g__final-cta-section {
  background: linear-gradient(to right, #FF4500, #FF7F50);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  margin-bottom: 0;
}

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

.page--g__final-cta-section .page--g__section-title::after {
  background-color: #fff;
}

.page--g__final-cta-section .page--g__description {
  color: #ffe0d6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page--g__hero-title {
    font-size: 2.8em;
  }
  .page--g__hero-description {
    font-size: 1.1em;
  }
  .page--g__content-grid {
    flex-direction: column;
  }
  .page--g__content-grid:nth-child(even) {
    flex-direction: column;
  }
  .page--g__image-container {
    order: -1;
    margin-bottom: 30px;
  }
  .page--g__section-title {
    font-size: 2em;
  }
  .page--g__features-grid, .page--g__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page--g__hero-title {
    font-size: 2.2em;
  }
  .page--g__hero-description {
    font-size: 1em;
  }
  .page--g__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page--g__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page--g__section-title {
    font-size: 1.8em;
  }
  .page--g__features-grid, .page--g__steps-grid {
    grid-template-columns: 1fr;
  }
  .page--g__feature-card, .page--g__step-card {
    margin: 0 10px;
  }
  .page--g__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page--g__hero-title {
    font-size: 1.8em;
  }
  .page--g__hero-description {
    font-size: 0.9em;
  }
  .page--g__btn {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page--g__section-title {
    font-size: 1.5em;
  }
  .page--g__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page--g__accordion-content p {
    padding: 10px 0;
  }
}