/* style/index.css */
:root {
  --primary-color: #0A2038; /* Deep Blue */
  --secondary-color: #FFD700; /* Gold */
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #f4f7f6;
  --background-dark: #071728; /* Slightly darker than primary for contrast */
  --card-background: #ffffff;
  --border-color: #e0e0e0;
  --button-hover-bg: #e0b800;
}

.page-index {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

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

.page-index .section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

.page-index .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-index .section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-dark);
}

/* 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: var(--background-dark);
  color: var(--text-light);
}

.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.3);
}

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

.page-index .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.page-index .hero-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 30px;
  color: var(--text-light);
}

.page-index .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

/* Quick Access Section */
.page-index .quick-access-section {
  padding: 80px 0;
  background: var(--primary-color);
  color: var(--text-light);
}

.page-index .quick-access-section .section-title {
  color: var(--secondary-color);
}

.page-index .quick-access-section .section-description {
  color: var(--text-light);
}

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

.page-index .access-card {
  background: #1a3a5a; /* Darker blue for contrast */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  text-decoration: none;
  color: var(--text-light);
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index .access-card:hover {
  transform: translateY(-10px);
  background-color: #2a4a6a;
}

.page-index .access-card-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-index .access-card-title {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index .access-card-desc {
  font-size: 1em;
  color: #cccccc;
}

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

.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: var(--card-background);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-index .game-card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-index .game-card-desc {
  font-size: 1em;
  color: var(--text-dark);
  padding: 0 20px 20px;
}

/* Promotions Section */
.page-index .promotions-section {
  padding: 80px 0;
  background: var(--primary-color);
  color: var(--text-light);
}

.page-index .promotions-section .section-title {
  color: var(--secondary-color);
}

.page-index .promotions-section .section-description {
  color: var(--text-light);
}

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

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

.page-index .promo-card:hover {
  transform: translateY(-10px);
  background-color: #2a4a6a;
}

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

.page-index .promo-card-title {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  padding: 0 20px;
  font-weight: bold;
}

.page-index .promo-card-desc {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
  padding: 0 20px;
}

.page-index .promo-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index .promo-button:hover {
  background: var(--button-hover-bg);
  transform: translateY(-2px);
}

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

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

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

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

.page-index .info-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-index .info-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index .info-desc {
  font-size: 1em;
  color: var(--text-dark);
}

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

.page-index .faq-section .section-title {
  color: var(--secondary-color);
}

.page-index .faq-section .section-description {
  color: var(--text-light);
}

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

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: #1a3a5a;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: var(--primary-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: var(--text-light);
}

.faq-question:hover {
  background: #071728; /* Slightly darker primary for hover */
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--secondary-color);
}

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

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  color: #cccccc;
  background: #1a3a5a;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
  border-top: 1px solid #071728;
}

.faq-answer p {
  margin: 0;
}

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

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

.page-index .blog-card {
  background: var(--card-background);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-index .blog-card-title {
  font-size: 1.4em;
  color: var(--primary-color);
  padding: 20px 20px 10px;
  font-weight: bold;
}

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

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

.page-index .blog-card-meta {
  font-size: 0.9em;
  color: #777;
  padding: 0 20px;
  margin-bottom: 10px;
}

.page-index .blog-card-excerpt {
  font-size: 1em;
  color: var(--text-dark);
  padding: 0 20px 15px;
}

.page-index .blog-readmore {
  display: inline-block;
  padding: 8px 15px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

.page-index .blog-readmore:hover {
  background: var(--button-hover-bg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index .hero-title {
    font-size: 3em;
  }
  .page-index .hero-description {
    font-size: 1.1em;
  }
  .page-index .section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-index .hero-section {
    padding: 40px 15px;
  }
  .page-index .hero-image img {
    border-radius: 4px;
  }
  .page-index .hero-title {
    font-size: 2.5em;
  }
  .page-index .hero-description {
    font-size: 1em;
  }
  .page-index .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-index .section-title {
    font-size: 1.8em;
  }
  .page-index .section-description {
    font-size: 0.95em;
  }
  .page-index .access-links-grid, .page-index .games-grid, .page-index .promo-grid, .page-index .info-grid, .page-index .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index .access-card, .page-index .game-card, .page-index .promo-card, .page-index .info-item, .page-index .blog-card {
    padding: 20px;
  }
  .page-index .access-card-icon, .page-index .info-icon {
    width: 80px;
    height: 80px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.5em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-index .hero-title {
    font-size: 2em;
  }
  .page-index .hero-description {
    font-size: 0.9em;
  }
  .page-index .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-index .section-title {
    font-size: 1.5em;
  }
  .page-index .section-description {
    font-size: 0.9em;
  }
  .page-index .access-card-title, .page-index .game-card-title, .page-index .promo-card-title, .page-index .info-title, .page-index .blog-card-title {
    font-size: 1.2em;
  }
  .page-index .game-card-image, .page-index .promo-card-image, .page-index .blog-card-image {
    height: 150px;
  }
}