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

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

.page-index-core-advantages h1, .page-index-core-advantages h2, .page-index-core-advantages h3 {
  color: #C0392B;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-index-core-advantages h1 {
  font-size: 3.2em;
  text-align: center;
  margin-bottom: 25px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-index-core-advantages h2 {
  font-size: 2.5em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  color: #C0392B;
}

.page-index-core-advantages h3 {
  font-size: 1.8em;
  color: #C0392B;
}

.page-index-core-advantages p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-index-core-advantages section {
  padding: 60px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.page-index-core-advantages section:last-of-type {
  border-bottom: none;
}

/* Hero Section */
.page-index-core-advantages .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #C0392B 0%, #F39C12 100%);
  color: #ffffff;
}

.page-index-core-advantages .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-core-advantages .hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-core-advantages .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-index-core-advantages .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-index-core-advantages .hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #eee;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-index-core-advantages .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #F39C12;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-index-core-advantages .cta-button:hover {
  background: #E67E22;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section Intro */
.page-index-core-advantages .section-intro {
  background-color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

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

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

.page-index-core-advantages .intro-item {
  background: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-core-advantages .intro-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-core-advantages .intro-item img {
  width: 150px; /* Min 200x200px requirement, this is an example, will be adjusted */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-index-core-advantages .intro-item h3 {
  color: #C0392B;
  font-size: 1.6em;
  margin-bottom: 15px;
}

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

/* Quick Access Section */
.page-index-core-advantages .section-quick-access {
  background-color: #f9f9f9;
  padding: 80px 0;
  text-align: center;
}

.page-index-core-advantages .section-quick-access > p {
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 1.2em;
  color: #555;
}

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

.page-index-core-advantages .quick-link-card {
  display: block;
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  text-align: left;
}

.page-index-core-advantages .quick-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-color: #fff5f5;
}

.page-index-core-advantages .quick-link-card h3 {
  color: #C0392B;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-index-core-advantages .quick-link-card p {
  font-size: 0.95em;
  color: #666;
}

/* Core Games Section */
.page-index-core-advantages .section-core-games {
  background-color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

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

.page-index-core-advantages .game-card {
  background: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-index-core-advantages .game-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-index-core-advantages .game-card h3 {
  color: #C0392B;
  font-size: 1.6em;
  margin: 20px 15px 10px 15px;
}

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

.page-index-core-advantages .btn-small {
  display: inline-block;
  padding: 12px 25px;
  background: #F39C12;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-index-core-advantages .btn-small:hover {
  background: #E67E22;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Promotions Section */
.page-index-core-advantages .section-promotions {
  background-color: #f9f9f9;
  padding: 80px 0;
  text-align: center;
}

.page-index-core-advantages .section-promotions > p {
  max-width: 900px;
  margin: 0 auto 50px auto;
  font-size: 1.2em;
  color: #555;
}

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

.page-index-core-advantages .promo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-index-core-advantages .promo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-index-core-advantages .promo-card h3 {
  color: #C0392B;
  font-size: 1.5em;
  margin: 20px 15px 10px 15px;
}

.page-index-core-advantages .promo-card p {
  font-size: 1em;
  color: #666;
  padding: 0 15px 20px 15px;
  flex-grow: 1;
}

/* Security and Support Section */
.page-index-core-advantages .section-security-support {
  background-color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-index-core-advantages .section-security-support > p {
  max-width: 900px;
  margin: 0 auto 50px auto;
  font-size: 1.2em;
  color: #555;
}

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

.page-index-core-advantages .info-item {
  background: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-index-core-advantages .info-item img {
  width: 100px; /* Min 200x200px requirement, this is an example, will be adjusted */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-index-core-advantages .info-item h3 {
  color: #C0392B;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index-core-advantages .info-item p {
  font-size: 1em;
  color: #666;
}

.page-index-core-advantages .contact-cta {
  margin-top: 50px;
  padding: 30px;
  background-color: #fff5f5;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-index-core-advantages .contact-cta p {
  font-size: 1.3em;
  color: #C0392B;
  margin-bottom: 25px;
}

/* FAQ Section */
.page-index-core-advantages .section-faq {
  background-color: #f5f5f5;
  padding: 80px 0;
  text-align: center;
}

.page-index-core-advantages .section-faq > p {
  max-width: 900px;
  margin: 0 auto 50px auto;
  font-size: 1.2em;
  color: #555;
}

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

.page-index-core-advantages .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #ffffff;
  overflow: hidden;
}

.page-index-core-advantages .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-index-core-advantages .faq-question:hover {
  background: #f9f9f9;
}

.page-index-core-advantages .faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: #333333; /* Ensuring good contrast on white/light gray background */
}

.page-index-core-advantages .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #C0392B;
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-index-core-advantages .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #F39C12;
}

.page-index-core-advantages .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
  color: #555;
}

.page-index-core-advantages .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid #eee;
}

.page-index-core-advantages .faq-answer p {
  margin-bottom: 0;
  font-size: 1.05em;
}

/* Latest Blog Section */
.page-index-core-advantages .section-latest-blog {
  background-color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-index-core-advantages .section-latest-blog > p {
  max-width: 900px;
  margin: 0 auto 50px auto;
  font-size: 1.2em;
  color: #555;
}

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

.page-index-core-advantages .blog-card {
  background: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-index-core-advantages .blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-index-core-advantages .blog-card h3 {
  font-size: 1.4em;
  margin: 20px 15px 10px 15px;
}

.page-index-core-advantages .blog-card h3 a {
  color: #C0392B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-core-advantages .blog-card h3 a:hover {
  color: #F39C12;
}

.page-index-core-advantages .blog-card p {
  font-size: 0.95em;
  color: #666;
  padding: 0 15px;
  flex-grow: 1;
}

.page-index-core-advantages .blog-date {
  font-size: 0.85em;
  color: #999;
  padding: 0 15px 20px 15px;
  display: block;
}

.page-index-core-advantages .view-all-blog {
  margin-top: 50px;
}

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

@media (max-width: 768px) {
  .page-index-core-advantages h1 {
    font-size: 2.2em;
  }
  .page-index-core-advantages h2 {
    font-size: 1.8em;
  }
  .page-index-core-advantages h3 {
    font-size: 1.4em;
  }
  .page-index-core-advantages p {
    font-size: 1em;
  }
  .page-index-core-advantages section {
    padding: 40px 0;
  }
  .page-index-core-advantages .hero-section {
    padding: 60px 15px;
  }
  .page-index-core-advantages .hero-image {
    margin-bottom: 20px;
  }
  .page-index-core-advantages .hero-content p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-index-core-advantages .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-index-core-advantages .intro-grid, .page-index-core-advantages .access-links-grid, .page-index-core-advantages .games-grid, .page-index-core-advantages .promotion-cards, .page-index-core-advantages .security-support-grid, .page-index-core-advantages .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-core-advantages .intro-item img, .page-index-core-advantages .info-item img {
    width: 120px; /* Will be adjusted to min 200px */
  }
  .page-index-core-advantages .faq-question {
    padding: 15px 20px;
  }
  .page-index-core-advantages .faq-question h3 {
    font-size: 1.1em;
  }
  .page-index-core-advantages .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-index-core-advantages h1 {
    font-size: 1.8em;
  }
  .page-index-core-advantages h2 {
    font-size: 1.5em;
  }
  .page-index-core-advantages .container {
    padding: 0 15px;
  }
  .page-index-core-advantages .cta-button {
    width: 100%;
    max-width: 280px;
    padding: 10px 0;
    font-size: 1em;
  }
  .page-index-core-advantages .intro-item img, .page-index-core-advantages .info-item img {
    width: 100px; /* Will be adjusted to min 200px */
  }
  .page-index-core-advantages .faq-question h3 {
    font-size: 1em;
  }
  .page-index-core-advantages .faq-toggle {
    font-size: 20px;
  }
}

/* Ensure image size compliance for all images */
.page-index-core-advantages img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

/* Specific adjustments for smaller images that must meet 200x200 */
.page-index-core-advantages .intro-item img,
.page-index-core-advantages .info-item img {
  width: 200px; /* Enforce min width */
  height: 200px; /* Enforce min height */
  object-fit: contain; /* Use contain for icons to prevent cropping */
  padding: 10px; /* Add padding if needed to fit within container */
  background-color: transparent;
}

.page-index-core-advantages .quick-link-card img { /* If quick link cards had images */
  width: 200px;
  height: 200px;
}