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

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

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

.page-index section:nth-child(even) {
  background-color: #f8f9fa;
}

.page-index h1,
.page-index h2 {
  color: #007BFF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index h1 {
  font-size: 2.8em;
  color: #0056b3;
}

.page-index h2 {
  font-size: 2.2em;
}

.page-index h3 {
  color: #007BFF;
  font-size: 1.5em;
  margin-bottom: 15px;
}

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

/* HERO Section */
.page-index .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, #007BFF, #0056b3);
  color: #ffffff;
}

.page-index .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 .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

.page-index .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  border-radius: 8px;
}

.page-index .hero-content h1 {
  color: #FFC107;
  font-size: 3.2em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index .hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.page-index .feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  background: #f0f8ff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index .feature-item .feature-icon {
  width: 150px; /* Min size 200x200px is for actual image, icon can be smaller if it's a decorative element */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-index .feature-item h3 {
  color: #007BFF;
  font-size: 1.6em;
}

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

/* Quick Access Links */
.page-index .section-quick-access {
  background-color: #e6f2ff;
  padding: 80px 0;
}

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

.page-index .access-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  color: #333333;
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-height: 200px;
}

.page-index .access-link-item:hover {
  background: #007BFF;
  color: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-index .access-link-item:hover .link-icon {
  filter: brightness(1.2);
}

.page-index .access-link-item .link-icon {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
  object-fit: cover;
  transition: filter 0.3s ease;
}

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

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

.page-index .game-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px 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-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.page-index .game-card h3 {
  padding: 20px 25px 0;
  font-size: 1.8em;
  color: #007BFF;
}

.page-index .game-card h3 a {
  color: #007BFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index .game-card h3 a:hover {
  color: #FFC107;
}

.page-index .game-card p {
  padding: 0 25px 25px;
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
}

/* Promotions */
.page-index .section-promotions {
  background-color: #f0f8ff;
  padding: 80px 0;
}

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

.page-index .promo-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 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 .promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-index .promo-card h3 {
  padding: 20px 25px 0;
  font-size: 1.6em;
  color: #007BFF;
}

.page-index .promo-card h3 a {
  color: #007BFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index .promo-card h3 a:hover {
  color: #FFC107;
}

.page-index .promo-card p {
  padding: 0 25px 25px;
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
}

/* Security & Support */
.page-index .section-security-support {
  background-color: #ffffff;
  padding: 80px 0;
}

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

.page-index .security-info, .page-index .payment-info, .page-index .support-info {
  background: #fdfdfd;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-index .security-info h3, .page-index .payment-info h3, .page-index .support-info h3 {
  color: #007BFF;
  font-size: 1.7em;
  margin-bottom: 20px;
}

.page-index .security-info p, .page-index .payment-info p, .page-index .support-info p {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-index .security-image, .page-index .payment-image, .page-index .support-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* FAQ Section */
.page-index .section-faq {
  background-color: #e6f2ff;
  padding: 80px 0;
}

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

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

.page-index .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-index .faq-question:hover {
  background: #f0f8ff;
}

.page-index .faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: #007BFF;
}

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

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

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

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

.page-index .faq-answer p {
  font-size: 1.05em;
  color: #444444;
}

.page-index .faq-answer a {
  color: #007BFF;
  text-decoration: none;
}

.page-index .faq-answer a:hover {
  text-decoration: underline;
}

/* Latest Blog Content */
.page-index .section-latest-blog {
  background-color: #ffffff;
  padding: 80px 0;
}

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

.page-index .blog-post-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 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 .blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-index .blog-post-card h3 {
  padding: 20px 25px 0;
  font-size: 1.5em;
  color: #007BFF;
}

.page-index .blog-post-card h3 a {
  color: #007BFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index .blog-post-card h3 a:hover {
  color: #FFC107;
}

.page-index .blog-post-card p {
  padding: 0 25px 15px;
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
}

.page-index .blog-post-card .read-more {
  display: inline-block;
  padding: 10px 25px 20px;
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index .blog-post-card .read-more:hover {
  color: #FFC107;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index .hero-content h1 {
    font-size: 2.5em;
  }
  .page-index .hero-content p {
    font-size: 1.1em;
  }
  .page-index h1 {
    font-size: 2.4em;
  }
  .page-index h2 {
    font-size: 2em;
  }
  .page-index h3 {
    font-size: 1.4em;
  }
  .page-index p {
    font-size: 1em;
  }
  .page-index .feature-item .feature-icon {
    width: 120px;
  }
  .page-index .access-link-item .link-icon {
    width: 100px;
  }
}

@media (max-width: 768px) {
  .page-index section {
    padding: 40px 0;
  }
  .page-index .hero-section {
    padding: 60px 15px;
  }
  .page-index .hero-image img {
    border-radius: 8px;
  }
  .page-index .hero-content h1 {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-index .hero-content p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-index .cta-button {
    padding: 15px 30px;
    font-size: 18px;
  }
  .page-index h1 {
    font-size: 2em;
  }
  .page-index h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index h3 {
    font-size: 1.3em;
  }
  .page-index .intro-features, .page-index .access-links-grid, .page-index .game-categories, .page-index .promotion-grid, .page-index .security-support-content, .page-index .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index .feature-item, .page-index .access-link-item, .page-index .game-card, .page-index .promo-card, .page-index .security-info, .page-index .payment-info, .page-index .support-info, .page-index .blog-post-card {
    padding: 20px;
  }
  .page-index .feature-item .feature-icon {
    width: 100px;
  }
  .page-index .access-link-item .link-icon {
    width: 80px;
  }
  .page-index .faq-question {
    padding: 15px 20px;
  }
  .page-index .faq-question h3 {
    font-size: 1.2em;
  }
  .page-index .faq-toggle {
    font-size: 20px;
  }
  .page-index .faq-answer {
    padding: 0 20px;
  }
  .page-index .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-index .game-card .game-image {
    height: 200px;
  }
  .page-index .promo-card .promo-image {
    height: 180px;
  }
  .page-index .security-image, .page-index .payment-image, .page-index .support-image {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .page-index .hero-content h1 {
    font-size: 1.8em;
  }
  .page-index .cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-index h1 {
    font-size: 1.8em;
  }
  .page-index h2 {
    font-size: 1.6em;
  }
  .page-index h3 {
    font-size: 1.2em;
  }
  .page-index p {
    font-size: 0.95em;
  }
  .page-index .faq-question h3 {
    font-size: 1.1em;
  }
  .page-index .faq-toggle {
    font-size: 18px;
  }
  .page-index .feature-item .feature-icon {
    width: 80px;
  }
  .page-index .access-link-item .link-icon {
    width: 60px;
  }
}