.page-index {
  font-family: 'Arial', sans-serif;
  color: #1A202C;
  line-height: 1.6;
}

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

.page-index__section {
  padding: 60px 0;
}

.page-index__bg-dark {
  background-color: #1A202C;
  color: #ffffff;
}

.page-index__text-light {
  color: #ffffff;
}

.page-index__text-center {
  text-align: center;
}

.page-index__mt-20 {
  margin-top: 20px;
}

.page-index__mt-40 {
  margin-top: 40px;
}

.page-index__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-index__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.05em;
  text-align: center;
}

.page-index__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-index__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-index__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-index__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-index__btn--large {
  padding: 15px 40px;
  font-size: 1.2em;
}

/* Hero Section */
.page-index__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a3f4a 100%);
  color: #ffffff;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  text-align: left;
}

.page-index__hero-content {
  flex: 1;
  min-width: 300px;
  padding-left: 15px;
  padding-right: 15px;
}

.page-index__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-index__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-index__hero-buttons .page-index__btn {
  margin-right: 15px;
  margin-bottom: 10px;
}

.page-index__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 15px;
}

.page-index__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* About Section */
.page-index__about-section p {
  margin-bottom: 15px;
}

.page-index__about-section ul {
  list-style: none;
  padding-left: 0;
}

.page-index__about-section ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-index__about-section ul li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-index__text-content {
  flex: 2;
  min-width: 300px;
}

.page-index__image-content {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
}

.page-index__responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Games Section */
.page-index__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index__game-card {
  background-color: #2a2f3b;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

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

.page-index__game-card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index__game-card-description {
  color: #cccccc;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Advantages Section */
.page-index__advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-index__advantage-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index__advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index__advantage-card-title {
  font-size: 1.4em;
  color: #1A202C;
  margin-bottom: 10px;
}

.page-index__advantage-card-description {
  color: #555555;
  font-size: 0.95em;
}

/* How-To Section */
.page-index__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index__step-card {
  background-color: #2a2f3b;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index__step-number {
  background-color: #FFD700;
  color: #1A202C;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-index__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index__step-description {
  color: #cccccc;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Payment Section */
.page-index__payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-index__payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  width: 180px;
  text-align: center;
  color: #1A202C;
  font-weight: bold;
}

.page-index__payment-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Details List Section */
.page-index__details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index__details-card {
  background-color: #2a2f3b;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index__details-card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-index__details-card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__details-card-title a:hover {
  color: #e6c200;
}

.page-index__details-card-description {
  color: #cccccc;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* CTA Section */
.page-index__cta-section {
  background-color: #FFD700;
  color: #1A202C;
  padding: 80px 0;
}

.page-index__cta-section .page-index__section-title {
  color: #1A202C;
}

.page-index__cta-section .page-index__section-description {
  color: #333333;
}

.page-index__cta-section .page-index__btn--primary {
  background-color: #1A202C;
  color: #FFD700;
  border-color: #1A202C;
}

.page-index__cta-section .page-index__btn--primary:hover {
  background-color: #3a3f4a;
  border-color: #3a3f4a;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 80px 15px;
  }

  .page-index__hero-content,
  .page-index__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .page-index__hero-title {
    font-size: 2.8em;
  }

  .page-index__hero-description {
    font-size: 1.1em;
  }

  .page-index__hero-buttons .page-index__btn {
    margin-right: 10px;
    margin-left: 0;
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .page-index__content-wrapper {
    flex-direction: column;
  }

  .page-index__text-content,
  .page-index__image-content {
    min-width: unset;
    width: 100%;
  }

  .page-index__game-grid,
  .page-index__advantage-grid,
  .page-index__steps-grid,
  .page-index__details-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index__section-title {
    font-size: 2em;
  }

  .page-index__hero-title {
    font-size: 2.2em;
  }

  .page-index__hero-description {
    font-size: 1em;
  }

  .page-index__btn {
    padding: 10px 20px;
    font-size: 0.95em;
  }

  .page-index__btn--large {
    padding: 12px 30px;
    font-size: 1.1em;
  }

  .page-index__game-grid,
  .page-index__advantage-grid,
  .page-index__steps-grid,
  .page-index__details-grid {
    grid-template-columns: 1fr;
  }

  .page-index__payment-item {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .page-index__hero-buttons .page-index__btn {
    margin-right: 0;
  }

  .page-index__section-title {
    font-size: 1.8em;
  }

  .page-index__hero-title {
    font-size: 2em;
  }

  .page-index__game-card-title,
  .page-index__advantage-card-title,
  .page-index__step-title,
  .page-index__details-card-title {
    font-size: 1.3em;
  }

  .page-index__payment-item {
    width: 120px;
  }
}