.page-index-latest-games {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-index-latest-games__hero-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-games__hero-content {
  z-index: 1;
  max-width: 900px;
}

.page-index-latest-games__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45;
  line-height: 1.2;
}

.page-index-latest-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-games__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-latest-games__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-index-latest-games__hero-button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-index-latest-games__hero-button--register:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
  transform: translateY(-2px);
}

.page-index-latest-games__hero-button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-index-latest-games__hero-button--login:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.page-index-latest-games__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-index-latest-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: grayscale(50%);
}

.page-index-latest-games__overview-section,
.page-index-latest-games__games-section,
.page-index-latest-games__benefits-section,
.page-index-latest-games__how-to-access-section,
.page-index-latest-games__app-download-section,
.page-index-latest-games__responsible-gaming-section,
.page-index-latest-games__faq-section,
.page-index-latest-games__cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-index-latest-games__overview-title,
.page-index-latest-games__games-section-title,
.page-index-latest-games__benefits-title,
.page-index-latest-games__how-to-access-title,
.page-index-latest-games__app-download-title,
.page-index-latest-games__responsible-gaming-title,
.page-index-latest-games__faq-title,
.page-index-latest-games__cta-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

.page-index-latest-games__overview-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-latest-games__game-category {
  margin-bottom: 60px;
}

.page-index-latest-games__category-title {
  font-size: 2em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.page-index-latest-games__category-description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-latest-games__game-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.page-index-latest-games__game-card-title {
  font-size: 1.5em;
  color: #000000;
  margin: 20px 15px 10px;
}

.page-index-latest-games__game-card-title a {
  color: inherit;
  text-decoration: none;
}

.page-index-latest-games__game-card-title a:hover {
  color: #FCBC45;
}

.page-index-latest-games__game-card-text {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-index-latest-games__game-card-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-index-latest-games__game-card-button:hover {
  background-color: #000000;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-index-latest-games__view-all-button-container {
  text-align: center;
  margin-top: 20px;
}

.page-index-latest-games__view-all-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-index-latest-games__view-all-button:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-2px);
}

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

.page-index-latest-games__benefit-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-index-latest-games__benefit-heading {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-index-latest-games__benefit-text {
  font-size: 1em;
  color: #555555;
}

.page-index-latest-games__access-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-index-latest-games__access-step-item {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-index-latest-games__access-step-heading {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-index-latest-games__access-step-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-index-latest-games__access-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-index-latest-games__access-button:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-2px);
}

.page-index-latest-games__app-download-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-index-latest-games__app-download-title {
  color: #FCBC45;
  font-size: 2.8em;
  margin-bottom: 20px;
}

.page-index-latest-games__app-download-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-index-latest-games__app-download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-index-latest-games__app-download-image-container {
  max-width: 600px;
  width: 100%;
}

.page-index-latest-games__app-download-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-latest-games__app-download-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 300px;
}

.page-index-latest-games__app-button {
  display: block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-index-latest-games__app-button--ios {
  background-color: #FFFFFF;
  color: #000000;
}

.page-index-latest-games__app-button--ios:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-2px);
}

.page-index-latest-games__app-button--android {
  background-color: #FCBC45;
  color: #000000;
}

.page-index-latest-games__app-button--android:hover {
  background-color: #FFFFFF;
  color: #000000;
  transform: translateY(-2px);
}

.page-index-latest-games__app-note {
  font-size: 0.9em;
  color: #cccccc;
  margin-top: 10px;
}

.page-index-latest-games__responsible-gaming-section {
  background-color: #f0f0f0;
  padding: 60px 20px;
  text-align: center;
}

.page-index-latest-games__responsible-gaming-title {
  color: #000000;
  font-size: 2.5em;
  margin-bottom: 30px;
}

.page-index-latest-games__responsible-gaming-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: justify;
}

.page-index-latest-games__responsible-gaming-link {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-index-latest-games__responsible-gaming-link:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-2px);
}

.page-index-latest-games__faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-index-latest-games__faq-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

.page-index-latest-games__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-index-latest-games__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-index-latest-games__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-index-latest-games__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

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

.page-index-latest-games__cta-section {
  background-color: #FCBC45;
  padding: 80px 20px;
  text-align: center;
  color: #000000;
}

.page-index-latest-games__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #000000;
}

.page-index-latest-games__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-index-latest-games__cta-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-index-latest-games__cta-button:hover {
  background-color: #FFFFFF;
  color: #000000;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-latest-games__hero-title {
    font-size: 2.8em;
  }
  .page-index-latest-games__overview-title,
  .page-index-latest-games__games-section-title,
  .page-index-latest-games__benefits-title,
  .page-index-latest-games__how-to-access-title,
  .page-index-latest-games__app-download-title,
  .page-index-latest-games__responsible-gaming-title,
  .page-index-latest-games__faq-title,
  .page-index-latest-games__cta-title {
    font-size: 2.2em;
  }
  .page-index-latest-games__category-title {
    font-size: 1.8em;
  }
  .page-index-latest-games__game-card-image {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .page-index-latest-games__hero-section {
    padding: 60px 15px;
  }
  .page-index-latest-games__hero-title {
    font-size: 2.2em;
  }
  .page-index-latest-games__hero-description {
    font-size: 1em;
  }
  .page-index-latest-games__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-latest-games__hero-button {
    width: 100%;
    max-width: 280px;
  }
  .page-index-latest-games__overview-section,
  .page-index-latest-games__games-section,
  .page-index-latest-games__benefits-section,
  .page-index-latest-games__how-to-access-section,
  .page-index-latest-games__app-download-section,
  .page-index-latest-games__responsible-gaming-section,
  .page-index-latest-games__faq-section,
  .page-index-latest-games__cta-section {
    padding: 40px 15px;
  }
  .page-index-latest-games__overview-title,
  .page-index-latest-games__games-section-title,
  .page-index-latest-games__benefits-title,
  .page-index-latest-games__how-to-access-title,
  .page-index-latest-games__app-download-title,
  .page-index-latest-games__responsible-gaming-title,
  .page-index-latest-games__faq-title,
  .page-index-latest-games__cta-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index-latest-games__category-title {
    font-size: 1.6em;
  }
  .page-index-latest-games__game-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-index-latest-games__game-card-image {
    height: 200px;
    max-width: 100%;
    height: auto;
  }
  .page-index-latest-games__benefits-grid,
  .page-index-latest-games__access-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-index-latest-games__app-download-section {
    padding: 60px 15px;
  }
  .page-index-latest-games__app-download-title {
    font-size: 2.2em;
  }
  .page-index-latest-games__app-download-content {
    flex-direction: column;
  }
  .page-index-latest-games__app-download-image {
    max-width: 100%;
    height: auto;
  }
  .page-index-latest-games__app-download-buttons {
    max-width: 100%;
  }
  .page-index-latest-games__responsible-gaming-title {
    font-size: 1.8em;
  }
  .page-index-latest-games__faq-question {
    font-size: 1.2em;
  }
  .page-index-latest-games__cta-title {
    font-size: 2.2em;
  }
  .page-index-latest-games__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-index-latest-games img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-index-latest-games__hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-games__overview-title,
  .page-index-latest-games__games-section-title,
  .page-index-latest-games__benefits-title,
  .page-index-latest-games__how-to-access-title,
  .page-index-latest-games__app-download-title,
  .page-index-latest-games__responsible-gaming-title,
  .page-index-latest-games__faq-title,
  .page-index-latest-games__cta-title {
    font-size: 1.5em;
  }
  .page-index-latest-games__category-title {
    font-size: 1.4em;
  }
  .page-index-latest-games__game-card-title {
    font-size: 1.3em;
  }
  .page-index-latest-games__benefit-heading {
    font-size: 1.4em;
  }
  .page-index-latest-games__access-step-heading {
    font-size: 1.5em;
  }
  .page-index-latest-games__app-download-title {
    font-size: 1.8em;
  }
  .page-index-latest-games__responsible-gaming-title {
    font-size: 1.5em;
  }
  .page-index-latest-games__faq-question {
    font-size: 1.1em;
  }
  .page-index-latest-games__cta-title {
    font-size: 1.8em;
  }
}