:root {
  --primary-color: #FFD700;
  --secondary-color: #DC143C;
  --dark-text: #333333;
  --light-text: #ffffff;
  --bg-light: #f5f5f5;
  --bg-dark: #2c3e50;
}

.page--g {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--bg-light);
}

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

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

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

.page--g h1,
.page--g h2,
.page--g h3 {
  color: var(--secondary-color);
  margin-bottom: 25px;
  font-weight: bold;
}

.page--g h1 {
  font-size: 3.2em;
  color: var(--light-text);
}

.page--g h2 {
  font-size: 2.5em;
  margin-top: 20px;
}

.page--g h3 {
  font-size: 1.8em;
  color: var(--dark-text);
}

.page--g p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page--g .btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}

.page--g .btn-primary {
  background-color: var(--secondary-color);
  color: var(--light-text);
}

.page--g .btn-primary:hover {
  background-color: #b20f30;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page--g .btn-secondary {
  background-color: var(--primary-color);
  color: var(--dark-text);
}

.page--g .btn-secondary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page--g .btn-small {
  padding: 8px 20px;
  font-size: 0.95em;
}

/* 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-color: var(--bg-dark);
  color: var(--light-text);
  overflow: hidden;
}

.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;
  z-index: 2;
}

.page--g .hero-image {
  width: 100%;
  max-width: 1000px;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page--g .hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.8);
}

.page--g .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

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

.page--g .hero-content p {
  font-size: 1.25em;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page--g .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-color);
  color: var(--dark-text);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

/* Introduction Section */
.page--g .introduction-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Advantages Section */
.page--g .advantages-section {
  background-color: var(--bg-light);
}

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

.page--g .card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page--g .card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page--g .card h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page--g .card p {
  font-size: 1em;
  color: #666;
}

/* Game Types Section */
.page--g .game-types-section {
  background-color: #e9ecef;
}

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

.page--g .game-type-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page--g .game-type-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page--g .game-type-card h3 {
  color: var(--secondary-color);
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page--g .game-type-card p {
  font-size: 1em;
  color: #666;
}

.page--g .call-to-action-text {
  margin-top: 40px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--secondary-color);
}

/* Guide Section */
.page--g .guide-section ol {
  list-style: none;
  counter-reset: my-awesome-counter;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
  padding: 0;
}

.page--g .guide-section ol li {
  counter-increment: my-awesome-counter;
  margin-bottom: 25px;
  padding-left: 60px;
  position: relative;
  font-size: 1.1em;
  color: #444;
}

.page--g .guide-section ol li::before {
  content: counter(my-awesome-counter);
  background-color: var(--primary-color);
  color: var(--dark-text);
  font-weight: bold;
  font-size: 1.2em;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page--g .guide-section ol li strong {
  color: var(--secondary-color);
}

/* Strategy Section */
.page--g .strategy-section {
  background-color: var(--bg-light);
}

.page--g .strategy-section img {
  max-width: 700px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page--g .strategy-section ul {
  list-style: none;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
  padding: 0;
}

.page--g .strategy-section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page--g .strategy-section ul li::before {
  content: '✔';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page--g .strategy-section ul li strong {
  color: var(--secondary-color);
}

/* Promotions Section */
.page--g .promotions-section {
  background-color: #e9ecef;
}

.page--g .promo-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page--g .promo-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page--g .promo-card h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page--g .promo-card p {
  font-size: 1em;
  color: #666;
  min-height: 70px; /* Ensure consistent card height */
}

/* FAQ Section */
.page--g .faq-section {
  padding-bottom: 80px;
}

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

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

.page--g .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  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: var(--dark-text);
}

.page--g .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.page--g .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.page--g .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
  background: #f9f9f9;
}

.page--g .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 25px;
}

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

/* Final CTA Section */
.page--g .final-cta-section {
  background: linear-gradient(135deg, var(--secondary-color), #a30e2e);
  color: var(--light-text);
  padding: 80px 20px;
}

.page--g .final-cta-section h2 {
  color: var(--primary-color);
  font-size: 2.8em;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page--g .final-cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page--g .final-cta-section .cta-button {
  background: var(--primary-color);
  color: var(--dark-text);
}

.page--g .final-cta-section .cta-button:hover {
  background: #e6c200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page--g .hero-content h1 {
    font-size: 3em;
  }
  .page--g h2 {
    font-size: 2.2em;
  }
  .page--g h3 {
    font-size: 1.6em;
  }
  .page--g .grid-3-cols, .page--g .grid-2-cols {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .page--g .game-type-card img {
    height: 200px;
  }
  .page--g .final-cta-section h2 {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page--g section {
    padding: 40px 0;
  }
  .page--g .hero-section {
    padding: 60px 15px;
  }
  .page--g .hero-content h1 {
    font-size: 2.5em;
  }
  .page--g .hero-content p {
    font-size: 1.1em;
  }
  .page--g .cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page--g h2 {
    font-size: 2em;
  }
  .page--g h3 {
    font-size: 1.4em;
  }
  .page--g p {
    font-size: 1em;
  }
  .page--g .grid-3-cols, .page--g .grid-2-cols {
    grid-template-columns: 1fr;
  }
  .page--g .card, .page--g .game-type-card, .page--g .promo-card {
    padding: 20px;
  }
  .page--g .game-type-card img {
    height: 180px;
  }
  .page--g .guide-section ol li {
    padding-left: 50px;
    font-size: 1em;
  }
  .page--g .guide-section ol li::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }
  .page--g .strategy-section ul li {
    font-size: 1em;
  }
  .page--g .promo-card p {
    min-height: auto;
  }
  .page--g .faq-question h3 {
    font-size: 1.1em;
  }
  .page--g .faq-question {
    padding: 15px 20px;
  }
  .page--g .faq-answer {
    padding: 0 20px;
  }
  .page--g .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page--g .final-cta-section h2 {
    font-size: 2em;
  }
  .page--g .final-cta-section p {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page--g .hero-content h1 {
    font-size: 2em;
  }
  .page--g .hero-content p {
    font-size: 0.95em;
  }
  .page--g .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page--g h2 {
    font-size: 1.8em;
  }
  .page--g h3 {
    font-size: 1.2em;
  }
  .page--g .game-type-card img {
    height: 150px;
  }
  .page--g .guide-section ol li {
    padding-left: 45px;
    font-size: 0.95em;
  }
  .page--g .guide-section ol li::before {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
  .page--g .final-cta-section h2 {
    font-size: 1.8em;
  }
}