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

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

.page-index__highlight {
  color: #8B0000;
}

.page-index__hero-section {
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  color: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-index__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.page-index__hero-section > .page-index__container {
  position: relative;
  z-index: 1;
}

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

.page-index__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #eee;
}

.page-index__hero-buttons .page-index__button {
  margin: 0 15px;
  padding: 15px 30px;
  font-size: 1.1em;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.page-index__button--primary {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

.page-index__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

.page-index__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

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

.page-index__section-subtitle {
  font-size: 1.2em;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__about-section, .page-index__features-section, .page-index__games-section, .page-index__promotions-section, .page-index__app-section, .page-index__responsible-gambling-section, .page-index__why-choose-us-section, .page-index__detail-pages-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-index__about-section {
  background-color: #fdfdfd;
}

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

.page-index__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-index__text-content {
  flex: 1;
  font-size: 1.1em;
  color: #444;
}

.page-index__text-content p {
  margin-bottom: 15px;
}

.page-index__image-wrapper {
  flex: 1;
  text-align: center;
}

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

.page-index__features-grid, .page-index__games-grid, .page-index__promotions-grid, .page-index__detail-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index__feature-card, .page-index__game-card, .page-index__promo-card, .page-index__detail-card {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #FFD700;
  padding: 15px;
}

.page-index__feature-title, .page-index__game-title, .page-index__promo-title, .page-index__detail-card-title {
  font-size: 1.6em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-index__detail-card-title a {
  color: #8B0000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__detail-card-title a:hover {
  color: #FFD700;
}

.page-index__feature-description, .page-index__game-description, .page-index__promo-description, .page-index__detail-card-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-index__game-image, .page-index__promo-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index__game-button, .page-index__button--small {
  display: inline-block;
  padding: 10px 20px;
  background-color: #8B0000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-index__game-button:hover, .page-index__button--small:hover {
  background-color: #b30000;
}

.page-index__full-promo-cta {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #ffe066;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-index__full-promo-text {
  font-size: 1.3em;
  color: #8B0000;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-index__app-download-buttons .page-index__button {
  margin-right: 15px;
}

.page-index__responsible-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1em;
  color: #444;
}

.page-index__responsible-content ul {
  list-style: disc inside;
  margin: 20px 0;
  padding-left: 20px;
}

.page-index__responsible-content li {
  margin-bottom: 10px;
}

.page-index__responsible-content .page-index__button {
  margin-top: 30px;
}

.page-index__why-choose-us-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1em;
  color: #444;
}

.page-index__why-choose-us-content p {
  margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index__hero-title {
    font-size: 2.8em;
  }
  .page-index__hero-description {
    font-size: 1.2em;
  }
  .page-index__section-title {
    font-size: 2.2em;
  }
  .page-index__content-grid {
    flex-direction: column;
  }
  .page-index__content-grid--reverse {
    flex-direction: column;
  }
  .page-index__image-wrapper {
    margin-top: 30px;
  }
  .page-index__features-grid, .page-index__games-grid, .page-index__promotions-grid, .page-index__detail-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index__hero-section {
    padding: 80px 0;
  }
  .page-index__hero-title {
    font-size: 2.2em;
  }
  .page-index__hero-description {
    font-size: 1em;
  }
  .page-index__hero-buttons .page-index__button {
    margin: 10px 5px;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index__section-title {
    font-size: 1.8em;
  }
  .page-index__section-subtitle {
    font-size: 1em;
  }
  .page-index__about-section, .page-index__features-section, .page-index__games-section, .page-index__promotions-section, .page-index__app-section, .page-index__responsible-gambling-section, .page-index__why-choose-us-section, .page-index__detail-pages-section {
    padding: 40px 0;
  }
  .page-index__feature-card, .page-index__game-card, .page-index__promo-card, .page-index__detail-card {
    padding: 20px;
  }
  .page-index__feature-icon {
    width: 60px;
    height: 60px;
  }
  .page-index__feature-title, .page-index__game-title, .page-index__promo-title, .page-index__detail-card-title {
    font-size: 1.4em;
  }
  .page-index__full-promo-text {
    font-size: 1.1em;
  }
  .page-index__app-download-buttons .page-index__button {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }
}

@media (max-width: 480px) {
  .page-index__hero-title {
    font-size: 1.8em;
  }
  .page-index__hero-description {
    font-size: 0.9em;
  }
  .page-index__hero-buttons .page-index__button {
    display: block;
    width: 80%;
    margin: 10px auto;
  }
  .page-index__section-title {
    font-size: 1.5em;
  }
  .page-index__features-grid, .page-index__games-grid, .page-index__promotions-grid, .page-index__detail-cards-grid {
    grid-template-columns: 1fr;
  }
}