/* style/index-quick-access.css */
.page-index-quick-access {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-index-quick-access__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-index-quick-access__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #ffc107; /* Auxiliary color for emphasis */
}

.page-index-quick-access__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-index-quick-access__quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-index-quick-access__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  min-width: 180px;
}

.page-index-quick-access__btn--primary {
  background-color: #ffc107;
  color: #0056b3; /* Darker blue for contrast */
}

.page-index-quick-access__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-index-quick-access__btn--secondary {
  background-color: #0056b3;
  color: #fff;
  border: 2px solid #0056b3;
}

.page-index-quick-access__btn--secondary:hover {
  background-color: #004085;
  transform: translateY(-2px);
}

.page-index-quick-access__btn--tertiary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-index-quick-access__btn--tertiary:hover {
  background-color: rgba(255, 193, 7, 0.1);
  transform: translateY(-2px);
}

.page-index-quick-access__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-index-quick-access__section {
  padding: 60px 0;
}

.page-index-quick-access__section--alt-bg {
  background-color: #f8f9fa;
}

.page-index-quick-access__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-quick-access__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-index-quick-access__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-index-quick-access__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-index-quick-access__text-content {
  flex: 1;
  font-size: 1.05em;
}

.page-index-quick-access__text-content p {
  margin-bottom: 15px;
}

.page-index-quick-access__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-index-quick-access__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-index-quick-access__feature-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-quick-access__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-quick-access__feature-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-quick-access__feature-card p {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-quick-access__card-image {
  max-width: 100%;
  height: 180px; /* Fixed height for consistency */
  object-fit: contain; /* Ensure image fits without cropping */
  margin-top: 20px;
  border-radius: 8px;
}

.page-index-quick-access__game-list,
.page-index-quick-access__contact-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  font-size: 1.1em;
}

.page-index-quick-access__game-list li,
.page-index-quick-access__contact-list li {
  background-color: #e9f5ff;
  border-left: 5px solid #007bff;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  color: #333;
}

.page-index-quick-access__game-list li strong,
.page-index-quick-access__contact-list li strong {
  color: #0056b3;
}

.page-index-quick-access__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-index-quick-access__section--final-cta {
  background: linear-gradient(45deg, #0056b3, #007bff);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-index-quick-access__section--final-cta .page-index-quick-access__section-title {
  color: #ffc107;
}

.page-index-quick-access__section--final-cta .page-index-quick-access__section-description {
  color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-quick-access__content-grid {
    flex-direction: column;
  }
  .page-index-quick-access__content-grid--reverse {
    flex-direction: column;
  }
  .page-index-quick-access__title {
    font-size: 2.5em;
  }
  .page-index-quick-access__subtitle {
    font-size: 1.1em;
  }
  .page-index-quick-access__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-index-quick-access__hero {
    padding: 60px 0;
    min-height: 300px;
  }
  .page-index-quick-access__title {
    font-size: 2em;
  }
  .page-index-quick-access__quick-links {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-quick-access__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-index-quick-access__section {
    padding: 40px 0;
  }
  .page-index-quick-access__section-title {
    font-size: 1.8em;
  }
  .page-index-quick-access__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-index-quick-access__game-list, .page-index-quick-access__contact-list {
    margin: 20px auto;
  }
}

@media (max-width: 480px) {
  .page-index-quick-access__title {
    font-size: 1.8em;
  }
  .page-index-quick-access__subtitle {
    font-size: 1em;
  }
  .page-index-quick-access__btn {
    min-width: unset;
    width: 90%;
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-index-quick-access__section-title {
    font-size: 1.5em;
  }
  .page-index-quick-access__text-content,
  .page-index-quick-access__section-description,
  .page-index-quick-access__game-list li,
  .page-index-quick-access__contact-list li {
    font-size: 0.95em;
  }
  .page-index-quick-access__feature-title {
    font-size: 1.5em;
  }
  .page-index-quick-access__feature-card p {
    font-size: 0.9em;
  }
  .page-index-quick-access__card-image {
    height: 150px;
  }
}