.page-index {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --text-light: #F0F0F0;
  --text-dark: #1A202C;
  --bg-dark: #1A202C;
  --bg-light: #ffffff;
  --bg-accent: #FFD700;
  --border-color: #3a475a;
  --shadow-color: rgba(0, 0, 0, 0.3);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--bg-dark);
}

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

.page-index h1, .page-index h2, .page-index h3, .page-index h4, .page-index h5, .page-index h6 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index h1 {
  font-size: 3.2em;
  text-shadow: 2px 2px 4px var(--shadow-color);
  color: #FFFFFF;
}

.page-index h2 {
  font-size: 2.5em;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.page-index h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
}

.page-index p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-index a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index a:hover {
  color: #fff;
  text-decoration: underline;
}

.page-index .cta-button, .page-index .access-button, .page-index .btn-play, .page-index .btn-promo, .page-index .read-more {
  display: inline-block;
  padding: 15px 30px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-index .cta-button:hover, .page-index .access-button:hover, .page-index .btn-play:hover, .page-index .btn-promo:hover, .page-index .read-more:hover {
  background: #fff;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px var(--shadow-color);
}

/* 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: linear-gradient(135deg, var(--primary-color) 0%, rgba(26, 32, 44, 0.8) 50%, var(--primary-color) 100%);
  overflow: hidden;
}

.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;
  z-index: 1;
}

.page-index .hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 900px;
}

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

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

.page-index .hero-content h1 {
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-index .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-index .cta-button {
  padding: 18px 45px;
  font-size: 1.3em;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.page-index .intro-section {
  background-color: var(--bg-dark);
  padding: 80px 0;
  color: var(--text-light);
}

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

.page-index .intro-card {
  background-color: #2a3447;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px var(--shadow-color);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index .intro-card .card-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index .intro-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-index .intro-card p {
  font-size: 0.95em;
  color: #ccc;
}

.page-index .intro-text {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index .quick-access-section h2 {
  color: #fff;
}

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

.page-index .access-button {
  padding: 18px 25px;
  font-size: 1.1em;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index .access-button.primary {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-index .access-button.secondary {
  background-color: #4a5568;
  color: var(--text-light);
}

.page-index .access-button.tertiary {
  background-color: #6a778e;
  color: var(--text-light);
}

.page-index .access-button.quaternary {
  background-color: #7a88a0;
  color: var(--text-light);
}

.page-index .access-button.primary:hover {
  background-color: #fff;
}

.page-index .access-button.secondary:hover,
.page-index .access-button.tertiary:hover,
.page-index .access-button.quaternary:hover {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-index .access-note {
  margin-top: 40px;
  font-size: 0.95em;
  color: #bbb;
}

/* Games Section */
.page-index .games-section {
  background-color: var(--bg-dark);
  padding: 80px 0;
}

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

.page-index .game-card {
  background-color: #2a3447;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px var(--shadow-color);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-index .game-card .card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index .game-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.6em;
}

.page-index .game-card h3 a {
  color: var(--secondary-color);
}

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

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

.page-index .btn-play {
  margin-top: auto;
  width: fit-content;
  align-self: center;
  padding: 12px 25px;
  font-size: 1em;
}

.page-index .games-cta {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-index .promo-card {
  background-color: #2a3447;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px var(--shadow-color);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-index .promo-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index .promo-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.5em;
}

.page-index .promo-card h3 a {
  color: var(--secondary-color);
}

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

.page-index .promo-card p {
  font-size: 0.95em;
  color: #ccc;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-index .btn-promo {
  margin-top: auto;
  width: fit-content;
  align-self: center;
  padding: 12px 25px;
  font-size: 1em;
}

.page-index .promotions-cta {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Security & Support Section */
.page-index .security-support-section {
  background-color: var(--bg-dark);
  padding: 80px 0;
}

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

.page-index .info-block {
  background-color: #2a3447;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px var(--shadow-color);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index .info-block .block-image {
  width: 100%;
  max-width: 250px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index .info-block h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-index .info-block p {
  font-size: 0.95em;
  color: #ccc;
}

.page-index .security-cta {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-index .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #2a3447;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.page-index .faq-question:hover {
  background: #344055;
}

.page-index .faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

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

.page-index .faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.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: #344055;
  color: #ccc;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0 0 8px 8px;
}

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

.page-index .faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #ccc;
}

/* Blog Section */
.page-index .blog-section {
  background-color: var(--bg-dark);
  padding: 80px 0;
}

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

.page-index .blog-card {
  background-color: #2a3447;
  border-radius: 12px;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-index .blog-card .card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.page-index .blog-card h3 {
  font-size: 1.4em;
  margin: 20px 20px 10px;
  line-height: 1.3;
}

.page-index .blog-card h3 a {
  color: var(--secondary-color);
}

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

.page-index .blog-card p {
  font-size: 0.9em;
  color: #ccc;
  margin: 0 20px 15px;
  flex-grow: 1;
}

.page-index .read-more {
  align-self: flex-start;
  margin: 0 20px 20px;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-index .blog-cta {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index h1 {
    font-size: 2.8em;
  }
  .page-index h2 {
    font-size: 2.2em;
  }
  .page-index .intro-grid, .page-index .games-grid, .page-index .promotions-grid, .page-index .security-support-grid, .page-index .blog-articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-index .cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-index h1 {
    font-size: 2.2em;
  }
  .page-index h2 {
    font-size: 1.8em;
  }
  .page-index h3 {
    font-size: 1.5em;
  }
  .page-index .hero-section, .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 .intro-grid, .page-index .games-grid, .page-index .promotions-grid, .page-index .security-support-grid, .page-index .blog-articles-grid {
    grid-template-columns: 1fr;
  }
  .page-index .hero-content p {
    font-size: 1em;
  }
  .page-index .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-index .faq-question {
    padding: 15px 20px;
  }
  .page-index .faq-question h3 {
    font-size: 1.1em;
  }
  .page-index .faq-toggle {
    font-size: 1.8em;
  }
  .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 h3 {
    font-size: 1.3em;
  }
  .page-index .container {
    padding: 0 15px;
  }
  .page-index .hero-section {
    padding: 40px 15px;
  }
  .page-index .access-button {
    padding: 15px 20px;
    font-size: 0.95em;
  }
}