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

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

.page-index__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-align: center;
  background-color: #000000;
}

.page-index__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  z-index: 1;
}

.page-index__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.page-index__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-index__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-index__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 150px;
  text-align: center;
  font-size: 1.1em;
}

.page-index__button--register {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-index__button--register:hover {
  background-color: #e0a33c;
  transform: translateY(-2px);
}

.page-index__button--login {
  background-color: transparent;
  color: #FCBC45;
  border: 2px solid #FCBC45;
}

.page-index__button--login:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-2px);
}

.page-index__button--learn-more, .page-index__button--explore-all, .page-index__button--all-promos {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: 30px;
}

.page-index__button--learn-more:hover, .page-index__button--explore-all:hover, .page-index__button--all-promos:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-index__button--view-games, .page-index__button--view-details {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  padding: 8px 15px;
  font-size: 0.95em;
  min-width: unset;
}

.page-index__button--view-games:hover, .page-index__button--view-details:hover {
  background-color: #e0a33c;
  transform: translateY(-1px);
}

.page-index__button--download {
  background-color: #000000;
  color: #FCBC45;
  border: 2px solid #FCBC45;
}

.page-index__button--download:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-index__button--large {
  padding: 15px 30px;
  font-size: 1.2em;
}

.page-index__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-index__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__text-content {
  font-size: 1.05em;
  color: #444444;
  margin-bottom: 20px;
  text-align: justify;
}

.page-index__about-section {
  padding: 60px 0;
  background-color: #F8F8F8;
}

.page-index__game-showcase-section, .page-index__promo-section, .page-index__why-choose-section, .page-index__details-list-section {
  padding: 60px 0;
}

.page-index__game-grid, .page-index__promo-grid, .page-index__features-grid, .page-index__details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.page-index__game-card, .page-index__promo-card, .page-index__details-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index__game-card:hover, .page-index__promo-card:hover, .page-index__details-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index__game-image, .page-index__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-index__game-title, .page-index__promo-title, .page-index__details-title {
  font-size: 1.5em;
  color: #000000;
  margin: 20px 15px 10px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-index__game-title a, .page-index__promo-title a, .page-index__details-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__game-title a:hover, .page-index__promo-title a:hover, .page-index__details-title a:hover {
  color: #FCBC45;
}

.page-index__game-text, .page-index__promo-text, .page-index__details-description {
  font-size: 0.95em;
  color: #666666;
  padding: 0 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index__game-card .page-index__button, .page-index__promo-card .page-index__button, .page-index__details-card .page-index__button {
  margin: 0 15px 20px;
}

.page-index__feature-item {
  background-color: #FDFDFD;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-index__feature-item:hover {
  transform: translateY(-5px);
}

.page-index__feature-icon {
  width: 120px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index__feature-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-index__feature-description {
  font-size: 0.95em;
  color: #666666;
}

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

.page-index__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-index__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index__hero-title {
    font-size: 3em;
  }
  .page-index__section-title {
    font-size: 2em;
  }
  .page-index__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-index {
    padding-top: var(--header-offset, 120px);
  }
  .page-index__hero-section {
    height: 500px;
  }
  .page-index__hero-title {
    font-size: 2.5em;
  }
  .page-index__hero-description {
    font-size: 1em;
  }
  .page-index__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-index__section-title {
    font-size: 1.8em;
  }
  .page-index__game-grid, .page-index__promo-grid, .page-index__features-grid, .page-index__details-grid {
    grid-template-columns: 1fr;
  }
  .page-index__game-image, .page-index__promo-image {
    height: 200px;
  }
  .page-index__cta-title {
    font-size: 2em;
  }
  .page-index__cta-description {
    font-size: 1em;
  }
  .page-index__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index__button--large {
    width: 80%;
    margin: 0 auto;
  }
  .page-index__hero-image, .page-index__game-image, .page-index__promo-image, .page-index__feature-icon {
    max-width: 100%;
    height: auto;
  }
  .page-index__feature-icon {
    width: 100px;
    height: auto;
  }
  .page-index__game-card, .page-index__promo-card, .page-index__details-card, .page-index__feature-item {
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .page-index__hero-section {
    height: 400px;
  }
  .page-index__hero-title {
    font-size: 2em;
  }
  .page-index__hero-description {
    font-size: 0.9em;
  }
  .page-index__section-title {
    font-size: 1.5em;
  }
  .page-index__game-title, .page-index__promo-title, .page-index__details-title {
    font-size: 1.3em;
  }
  .page-index__cta-title {
    font-size: 1.8em;
  }
  .page-index__button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-index__button--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}