.page-index-game-categories {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #f5f5f5;
  line-height: 1.6;
}

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

.page-index-game-categories section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-index-game-categories section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-index-game-categories h1,
.page-index-game-categories h2 {
  color: #8B0000; /* Deep Red */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 3em;
}

.page-index-game-categories h2 {
  font-size: 2.5em;
  margin-top: 40px;
}

.page-index-game-categories h3 {
  color: #FFD700; /* Gold */
  font-size: 1.8em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-game-categories p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #555555;
}

.page-index-game-categories a {
  color: #8B0000;
  text-decoration: none;
}

.page-index-game-categories a:hover {
  text-decoration: underline;
}

/* Hero Banner Section */
.page-index-game-categories .category-hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  padding: 0;
  margin-bottom: 0;
}

.page-index-game-categories .category-banner-container {
  position: relative;
  width: 100%;
  max-height: 500px; /* Adjust as needed */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-index-game-categories .category-hero-banner .banner-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-index-game-categories .category-hero-banner .banner-content {
  position: absolute;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-index-game-categories .category-hero-banner h1 {
  color: #FFD700; /* Gold */
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-game-categories .category-hero-banner p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #eeeeee;
}

.page-index-game-categories .cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.page-index-game-categories .cta-button:hover {
  background-color: #e6c200; /* Darker Gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

/* Game Categories Grid */
.page-index-game-categories .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-game-categories .category-card {
  background-color: #ffffff;
  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-index-game-categories .category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-index-game-categories .category-card .card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-index-game-categories .category-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #8B0000; /* Deep Red */
}

.page-index-game-categories .category-card h3 a {
  color: #8B0000; /* Deep Red */
  transition: color 0.3s ease;
}

.page-index-game-categories .category-card h3 a:hover {
  color: #FFD700; /* Gold */
  text-decoration: none;
}

.page-index-game-categories .category-card p {
  font-size: 0.95em;
  color: #666666;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-index-game-categories .category-card .card-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.95em;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-index-game-categories .category-card .card-button:hover {
  background-color: #e6c200; /* Darker Gold */
  text-decoration: none;
}

/* Why Choose 66b Section */
.page-index-game-categories .why-choose-66b {
  background-color: #f9f9f9;
}

.page-index-game-categories .feature-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-game-categories .feature-list li {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-index-game-categories .feature-list li:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-index-game-categories .feature-list h3 {
  color: #8B0000; /* Deep Red */
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-index-game-categories .feature-list p {
  font-size: 1em;
  color: #555555;
}

.page-index-game-categories .call-to-action-bottom {
  text-align: center;
  margin-top: 50px;
}

/* Promotions Section */
.page-index-game-categories .promotions-section {
  background-color: #FFFAE0; /* Light Gold background for promotions */
}

.page-index-game-categories .promotion-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

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

.page-index-game-categories .promo-item:hover {
  transform: translateY(-5px);
}

.page-index-game-categories .promo-item .promo-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-game-categories .promo-item h3 {
  color: #8B0000; /* Deep Red */
  font-size: 1.6em;
  margin-top: 0;
}

.page-index-game-categories .promo-item p {
  font-size: 1em;
  color: #666666;
}

/* FAQ Section */
.page-index-game-categories .faq-section {
  background-color: #f5f5f5;
}

.page-index-game-categories .faq-list {
  margin-top: 40px;
}

.page-index-game-categories .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #ffffff;
}

.page-index-game-categories .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-index-game-categories .faq-question:hover {
  background: #f5f5f5;
}

.page-index-game-categories .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #333333;
}

.page-index-game-categories .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #8B0000;
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-index-game-categories .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFD700;
}

.page-index-game-categories .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  color: #555555;
  font-size: 1em;
}

.page-index-game-categories .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px 20px;
  background: #fff8e1; /* Light yellow background for answer */
  border-top: 1px solid #e0e0e0;
}

/* Latest Blog Posts Section */
.page-index-game-categories .latest-blog-posts {
  background-color: #ffffff;
}

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

.page-index-game-categories .blog-card {
  background-color: #fefefe;
  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;
  display: flex;
  flex-direction: column;
}

.page-index-game-categories .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.page-index-game-categories .blog-card h3 {
  padding: 20px 20px 0;
  margin-top: 0;
  color: #8B0000; /* Deep Red */
  font-size: 1.4em;
}

.page-index-game-categories .blog-card h3 a {
  color: #8B0000; /* Deep Red */
  transition: color 0.3s ease;
}

.page-index-game-categories .blog-card h3 a:hover {
  color: #FFD700; /* Gold */
  text-decoration: none;
}

.page-index-game-categories .blog-card p {
  padding: 0 20px;
  font-size: 0.95em;
  color: #666666;
  flex-grow: 1;
}

.page-index-game-categories .blog-card .read-more {
  display: inline-block;
  padding: 15px 20px;
  color: #FFD700; /* Gold */
  font-weight: bold;
  background-color: #8B0000; /* Deep Red */
  text-align: center;
  border-radius: 0 0 10px 10px;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.page-index-game-categories .blog-card .read-more:hover {
  background-color: #6a0000; /* Darker Red */
  text-decoration: none;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-game-categories .category-hero-banner h1 {
    font-size: 3em;
  }
  .page-index-game-categories h1,
  .page-index-game-categories h2 {
    font-size: 2.5em;
  }
  .page-index-game-categories h2 {
    font-size: 2em;
  }
  .page-index-game-categories h3 {
    font-size: 1.6em;
  }
  .page-index-game-categories .category-grid,
  .page-index-game-categories .feature-list,
  .page-index-game-categories .promotion-details,
  .page-index-game-categories .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-game-categories section {
    padding: 40px 0;
  }
  .page-index-game-categories .category-hero-banner .banner-content {
    max-width: 95%;
  }
  .page-index-game-categories .category-hero-banner h1 {
    font-size: 2.5em;
  }
  .page-index-game-categories .category-hero-banner p {
    font-size: 1em;
  }
  .page-index-game-categories h1,
  .page-index-game-categories h2 {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-index-game-categories h2 {
    font-size: 1.8em;
  }
  .page-index-game-categories h3 {
    font-size: 1.4em;
  }
  .page-index-game-categories .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-game-categories .category-card .card-image {
    height: 200px;
  }
  .page-index-game-categories .category-card .card-content {
    padding: 20px;
  }
  .page-index-game-categories .promo-item .promo-image {
    height: 150px;
  }
  .page-index-game-categories .faq-question {
    padding: 12px 15px;
  }
  .page-index-game-categories .faq-question h3 {
    font-size: 1.1em;
  }
  .page-index-game-categories .faq-toggle {
    font-size: 20px;
  }
  .page-index-game-categories .faq-answer {
    padding: 0 15px;
  }
  .page-index-game-categories .faq-item.active .faq-answer {
    padding: 12px 15px;
  }
  .page-index-game-categories .blog-card .blog-image {
    height: 180px;
  }
  .page-index-game-categories .blog-card h3 {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-index-game-categories .category-hero-banner h1 {
    font-size: 2em;
  }
  .page-index-game-categories .category-hero-banner p {
    font-size: 0.9em;
  }
  .page-index-game-categories h1,
  .page-index-game-categories h2 {
    font-size: 1.8em;
  }
  .page-index-game-categories h3 {
    font-size: 1.2em;
  }
  .page-index-game-categories .cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-index-game-categories .category-grid,
  .page-index-game-categories .feature-list,
  .page-index-game-categories .promotion-details,
  .page-index-game-categories .blog-grid {
    grid-template-columns: 1fr;
  }
  .page-index-game-categories .category-card .card-image {
    height: 180px;
  }
  .page-index-game-categories .promo-item .promo-image {
    height: 120px;
  }
  .page-index-game-categories .feature-list li {
    padding: 20px;
  }
  .page-index-game-categories .blog-card .blog-image {
    height: 150px;
  }
  .page-index-game-categories .blog-card h3 {
    font-size: 1.1em;
  }
  .page-index-game-categories .blog-card p {
    font-size: 0.85em;
  }
}