.page-index-acb888-popular-games-overview {
  --primary-color: #CC0000;
  --secondary-color: #003366;
  --text-light: #FFFFFF;
  --text-dark: #333333;
  --bg-light: #f4f4f4;
  --bg-dark: #002244;
  --accent-color: #FFD700; /* Gold for accent */
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

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

.page-index-acb888-popular-games-overview section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-index-acb888-popular-games-overview h1,
.page-index-acb888-popular-games-overview h2,
.page-index-acb888-popular-games-overview h3 {
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-index-acb888-popular-games-overview h1 {
  font-size: 3.2em;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-index-acb888-popular-games-overview h2 {
  font-size: 2.5em;
  border-bottom: 3px solid var(--primary-color);
  display: inline-block;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-acb888-popular-games-overview h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  text-align: left; /* Default for cards, can be overridden */
}

.page-index-acb888-popular-games-overview p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-index-acb888-popular-games-overview a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-acb888-popular-games-overview a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Hero Section */
.page-index-acb888-popular-games-overview .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-dark);
  color: var(--text-light);
}

.page-index-acb888-popular-games-overview .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-acb888-popular-games-overview .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-acb888-popular-games-overview .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-acb888-popular-games-overview .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-index-acb888-popular-games-overview .hero-content h1 {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 3.8em;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.page-index-acb888-popular-games-overview .hero-content p {
  color: var(--text-light);
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-index-acb888-popular-games-overview .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--primary-color);
}

.page-index-acb888-popular-games-overview .cta-button:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

/* Quick Links Section */
.page-index-acb888-popular-games-overview .quick-links-section {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  padding: 60px 0;
  text-align: center;
}

.page-index-acb888-popular-games-overview .quick-links-section h2 {
  color: var(--text-light);
  border-bottom-color: var(--text-light);
}

.page-index-acb888-popular-games-overview .quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-index-acb888-popular-games-overview .quick-link-btn {
  display: block;
  padding: 20px 15px;
  background-color: var(--text-light);
  color: var(--secondary-color);
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}