.page-index-game-overview {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --text-dark: #1A202C;
  --text-light: #ffffff;
  --bg-light: #f4f7f6;
  --bg-dark: #1A202C;
  --border-color: #e0e0e0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

.page-index-game-overview .text-center {
  text-align: center;
}

.page-index-game-overview h1,
.page-index-game-overview h2,
.page-index-game-overview h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-index-game-overview h1 {
  font-size: 3.2em;
  font-weight: bold;
  color: var(--text-light);
}

.page-index-game-overview h2 {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-index-game-overview h3 {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-index-game-overview p {
  margin-bottom: 1em;
  font-size: 1.1em;
}

.page-index-game-overview a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-game-overview a:hover {
  color: #e6b800;
}

.page-index-game-overview .btn-primary,
.page-index-game-overview .btn-secondary,
.page-index-game-overview .btn-small {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.page-index-game-overview .btn-primary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-index-game-overview .btn-primary:hover {
  background: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-game-overview .btn-secondary {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 10px 25px;
  font-size: 1em;
}

.page-index-game-overview .btn-secondary:hover {
  background: #3a475d;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-game-overview .btn-small {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 8px 20px;
  font-size: 0.9em;
}

.page-index-game-overview .btn-small:hover {
  background: #3a475d;
  transform: translateY(-1px);
}

/* HERO Section */
.page-index-game-overview .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);
  overflow: hidden;
}

.page-index-game-overview .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-index-game-overview .hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
}

.page-index-game-overview .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text contrast */
}

.page-index-game-overview .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 90%;
  max-width: 800px;
}

.page-index-game-overview .hero-content h1 {
  color: var(--text-light);
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-index-game-overview .hero-content p {
  color: #e0e0e0;
  font-size: 1.3em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

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

.page-index-game-overview .cta-button:hover {
  background: #e6b800;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Intro Section */
.page-index-game-overview .intro-section {
  background-color: var(--bg-light);
  padding: 60px 0;
  text-align: center;
}

.page-index-game-overview .intro-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-index-game-overview .intro-section > p {
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 1.2em;
  color: #555;
}

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

.page-index-game-overview .intro-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-game-overview .intro-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-game-overview .intro-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index-game-overview .intro-item p {
  font-size: 1em;
  color: #666;
}

/* Quick Access Section */
.page-index-game-overview .quick-access-section {
  background-color: var(--bg-dark);
  padding: 60px 0;
  text-align: center;
}

.page-index-game-overview .quick-access-section h2 {
  color: var(--text-light);
  margin-bottom: 20px;
}

.page-index-game-overview .quick-access-section > p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.2em;
  color: #ccc;
}

.page-index-game-overview .access-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-index-game-overview .access-card {
  background: #2a3447;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  color: var(--text-light);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-game-overview .access-card:hover {
  transform: translateY(-5px);
  background-color: #3a475d;
}

.page-index-game-overview .access-card .card-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 8px;
}

.page-index-game-overview .access-card h3 {
  color: var(--secondary-color);
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-index-game-overview .access-card p {
  font-size: 0.95em;
  color: #b0b0b0;
}

/* Games Overview Section */
.page-index-game-overview .games-overview-section {
  background-color: #fcfcfc;
  padding: 60px 0;
  text-align: center;
}

.page-index-game-overview .games-overview-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-index-game-overview .games-overview-section > p {
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 1.2em;
  color: #555;
}

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

.page-index-game-overview .game-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-index-game-overview .game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-index-game-overview .game-card .game-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-index-game-overview .game-card h3 {
  padding: 15px 20px 0;
  font-size: 1.6em;
  color: var(--primary-color);
}

.page-index-game-overview .game-card p {
  padding: 0 20px 15px;
  font-size: 1em;
  color: #666;
}

.page-index-game-overview .game-card .btn-secondary {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

/* Promotions Section */
.page-index-game-overview .promotions-section {
  background-color: var(--bg-light);
  padding: 60px 0;
  text-align: center;
}

.page-index-game-overview .promotions-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-index-game-overview .promotions-section > p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.2em;
  color: #555;
}

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

.page-index-game-overview .promo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

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

.page-index-game-overview .promo-card .promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.page-index-game-overview .promo-card h3 {
  padding: 15px 20px 0;
  font-size: 1.4em;
  color: var(--secondary-color);
}

.page-index-game-overview .promo-card p {
  padding: 0 20px 15px;
  font-size: 0.95em;
  color: #666;
}

.page-index-game-overview .promo-card .btn-small {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

/* Security & Support Section */
.page-index-game-overview .security-support-section {
  background-color: var(--bg-dark);
  padding: 60px 0;
  text-align: center;
}

.page-index-game-overview .security-support-section h2 {
  color: var(--text-light);
  margin-bottom: 20px;
}

.page-index-game-overview .security-support-section > p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.2em;
  color: #ccc;
}

.page-index-game-overview .security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-game-overview .security-item {
  background: #2a3447;
  padding: 30px;
  border-radius: 10px;
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-game-overview .security-item:hover {
  transform: translateY(-5px);
  background-color: #3a475d;
}

.page-index-game-overview .security-item .security-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 8px;
}

.page-index-game-overview .security-item h3 {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-index-game-overview .security-item p {
  font-size: 1em;
  color: #b0b0b0;
}

/* FAQ Section */
.page-index-game-overview .faq-section {
  background-color: #fcfcfc;
  padding: 60px 0;
  text-align: center;
}

.page-index-game-overview .faq-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-index-game-overview .faq-section > p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.2em;
  color: #555;
}

.page-index-game-overview .faq-list {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 40px;
}

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

.page-index-game-overview .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-index-game-overview .faq-question:hover {
  background: #f5f5f5;
  border-color: var(--secondary-color);
}

.page-index-game-overview .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--primary-color);
}

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

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

.page-index-game-overview .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: #444;
  border-radius: 0 0 8px 8px;
  border: 1px solid var(--border-color);
  border-top: none;
}

.page-index-game-overview .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 25px 25px;
}

.page-index-game-overview .faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: #fff8e1; /* Lighter background for active question */
  border-color: var(--secondary-color);
}

/* Latest Blog Section */
.page-index-game-overview .latest-blog-section {
  background-color: var(--bg-light);
  padding: 60px 0;
  text-align: center;
}

.page-index-game-overview .latest-blog-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-index-game-overview .latest-blog-section > p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.2em;
  color: #555;
}

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

.page-index-game-overview .blog-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-index-game-overview .blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-index-game-overview .blog-card .blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index-game-overview .blog-card h3 {
  padding: 15px 20px 0;
  font-size: 1.4em;
  color: var(--primary-color);
}

.page-index-game-overview .blog-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-index-game-overview .blog-card h3 a:hover {
  color: var(--secondary-color);
}

.page-index-game-overview .blog-card p {
  padding: 0 20px 10px;
  font-size: 0.95em;
  color: #666;
}

.page-index-game-overview .blog-card .blog-date {
  display: block;
  font-size: 0.85em;
  color: #999;
  padding: 0 20px 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-game-overview h1 {
    font-size: 2.8em;
  }
  .page-index-game-overview h2 {
    font-size: 2em;
  }
  .page-index-game-overview .hero-content p {
    font-size: 1.1em;
  }
  .page-index-game-overview .cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-index-game-overview h1 {
    font-size: 2.2em;
  }
  .page-index-game-overview h2 {
    font-size: 1.8em;
  }
  .page-index-game-overview h3 {
    font-size: 1.4em;
  }
  .page-index-game-overview p {
    font-size: 1em;
  }
  .page-index-game-overview .hero-content {
    padding: 0 15px;
  }
  .page-index-game-overview .hero-content p {
    font-size: 1em;
  }
  .page-index-game-overview .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-index-game-overview .intro-grid,
  .page-index-game-overview .access-links-grid,
  .page-index-game-overview .games-grid,
  .page-index-game-overview .promo-grid,
  .page-index-game-overview .security-grid,
  .page-index-game-overview .blog-grid {
    grid-template-columns: 1fr;
  }
  .page-index-game-overview .faq-question {
    padding: 15px 20px;
  }
  .page-index-game-overview .faq-question h3 {
    font-size: 1.1em;
  }
  .page-index-game-overview .faq-toggle {
    font-size: 20px;
  }
  .page-index-game-overview .faq-item.active .faq-answer {
    padding: 10px 20px 20px;
  }
  .page-index-game-overview .game-card .btn-secondary,
  .page-index-game-overview .promo-card .btn-small {
    width: auto;
  }
}

@media (max-width: 480px) {
  .page-index-game-overview h1 {
    font-size: 1.8em;
  }
  .page-index-game-overview h2 {
    font-size: 1.5em;
  }
  .page-index-game-overview .hero-section {
    padding: 50px 10px;
  }
  .page-index-game-overview .cta-button {
    width: 100%;
    max-width: 280px;
  }
  .page-index-game-overview .intro-section,
  .page-index-game-overview .quick-access-section,
  .page-index-game-overview .games-overview-section,
  .page-index-game-overview .promotions-section,
  .page-index-game-overview .security-support-section,
  .page-index-game-overview .faq-section,
  .page-index-game-overview .latest-blog-section {
    padding: 40px 0;
  }
  .page-index-game-overview .intro-item,
  .page-index-game-overview .access-card,
  .page-index-game-overview .game-card,
  .page-index-game-overview .promo-card,
  .page-index-game-overview .security-item,
  .page-index-game-overview .blog-card {
    padding: 20px;
  }
  .page-index-game-overview .access-card .card-icon,
  .page-index-game-overview .security-item .security-icon {
    width: 80px;
    height: 80px;
  }
}