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

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

.page-index h1, .page-index h2, .page-index h3 {
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.page-index h1 {
  font-size: 3em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index h2 {
  font-size: 2.5em;
  padding-top: 40px;
  margin-bottom: 30px;
  border-bottom: 2px solid #DC143C;
  padding-bottom: 10px;
}

.page-index h3 {
  font-size: 1.8em;
  color: #FFD700;
}

.page-index p {
  margin-bottom: 15px;
  text-align: center;
}

.page-index .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(90deg, #DC143C, #FF4500); /* Red to Orange-Red */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-index .cta-button:hover {
  background: linear-gradient(90deg, #FF4500, #DC143C);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* 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: 60px 20px;
  background-color: #000; /* Dark background for hero */
}

.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: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-index .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
  margin-top: -80px; /* Overlap with image */
}

.page-index .hero-content h1 {
  color: #FFD700;
  margin-top: 0;
  font-size: 3.5em;
}

.page-index .hero-content p {
  color: #F0F0F0;
  font-size: 1.2em;
  margin-bottom: 20px;
}

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

.page-index .intro-features {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-index .feature-item {
  background-color: #2D2D2D;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  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.5);
}

.page-index .feature-item img {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-index .feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

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

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

.page-index .access-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.page-index .access-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #DC143C;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-index .access-button:hover {
  background-color: #FF4500;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-index .game-card {
  background-color: #2D2D2D;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index .game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-index .game-card h3 {
  margin: 20px 0 10px;
  font-size: 1.6em;
}

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

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

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

.page-index .game-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #DC143C;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  margin: 20px 0;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index .game-button:hover {
  background-color: #FF4500;
}

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

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

.page-index .promo-card {
  background-color: #2D2D2D;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-index .promo-card h3 {
  margin: 20px 0 10px;
  font-size: 1.6em;
}

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

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

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

.page-index .promo-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 5px;
  margin: 20px 0;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index .promo-button:hover {
  background-color: #E0B500;
}

.page-index .more-promos-link {
  margin-top: 50px;
}

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

.page-index .security-features {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-index .security-item {
  background-color: #2D2D2D;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index .security-item img {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-index .security-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

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

.page-index .customer-support {
  margin-top: 60px;
  padding: 40px;
  background-color: #2D2D2D;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index .customer-support img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-index .customer-support h3 {
  color: #FFD700;
  font-size: 2em;
}

.page-index .customer-support p {
  color: #F0F0F0;
  font-size: 1.1em;
}

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

.page-index .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index .faq-item {
  margin-bottom: 15px;
}

.page-index .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2D2D2D;
  border: 1px solid #3A3A3A;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-index .faq-question:hover {
  background: #3A3A3A;
  border-color: #FFD700;
}

.page-index .faq-question h3 {
  margin: 0;
  color: #FFD700;
  font-size: 1.2em;
  text-align: left;
}

.page-index .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #DC143C;
  transition: transform 0.3s ease;
}

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

.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: #272727;
  border-radius: 0 0 8px 8px;
  color: #B0B0B0;
  font-size: 1em;
}

.page-index .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 25px;
  border: 1px solid #3A3A3A;
  border-top: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index .faq-answer p {
  text-align: left;
  margin-bottom: 0;
}

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

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

.page-index .article-card {
  background-color: #2D2D2D;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index .article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-index .article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #DC143C;
}

.page-index .article-card h3 {
  margin: 20px 20px 10px;
  font-size: 1.4em;
  text-align: left;
}

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

.page-index .article-card h3 a:hover {
  color: #DC143C;
}

.page-index .article-card p {
  padding: 0 20px;
  color: #B0B0B0;
  font-size: 0.9em;
  text-align: left;
}

.page-index .read-more-button {
  display: inline-block;
  padding: 8px 15px;
  background-color: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 5px;
  margin: 15px 20px 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index .read-more-button:hover {
  background-color: #E0B500;
}

.page-index .more-blog-link {
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index h1 {
    font-size: 2.8em;
  }
  .page-index h2 {
    font-size: 2.2em;
  }
  .page-index .hero-content {
    margin-top: -60px;
  }
}

@media (max-width: 768px) {
  .page-index h1 {
    font-size: 2.2em;
  }
  .page-index h2 {
    font-size: 1.8em;
  }
  .page-index h3 {
    font-size: 1.4em;
  }
  .page-index p {
    font-size: 0.95em;
  }
  .page-index .cta-button {
    padding: 12px 25px;
    font-size: 16px;
    margin-top: 20px;
  }
  .page-index .hero-section {
    padding: 40px 15px;
  }
  .page-index .hero-content {
    padding: 15px;
    margin-top: -40px;
  }
  .page-index .intro-section, .page-index .quick-access-section, .page-index .games-section, .page-index .promotions-section, .page-index .security-support-section, .page-index .faq-section, .page-index .blog-section {
    padding: 50px 0;
  }
  .page-index .feature-item, .page-index .game-card, .page-index .promo-card, .page-index .security-item, .page-index .article-card {
    min-width: unset;
    max-width: 100%;
  }
  .page-index .access-links {
    flex-direction: column;
    align-items: center;
  }
  .page-index .access-button {
    width: 80%;
  }
  .page-index .faq-question {
    padding: 15px 20px;
  }
  .page-index .faq-question h3 {
    font-size: 1.1em;
  }
  .page-index .faq-toggle {
    font-size: 20px;
  }
  .page-index .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-index h1 {
    font-size: 1.8em;
  }
  .page-index h2 {
    font-size: 1.5em;
  }
  .page-index .hero-content h1 {
    font-size: 2em;
  }
  .page-index .hero-content p {
    font-size: 1em;
  }
  .page-index .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .page-index .hero-content {
    margin-top: -20px;
  }
  .page-index .feature-item img, .page-index .security-item img {
    width: 100px;
  }
  .page-index .customer-support img {
    width: 120px;
  }
}