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

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

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

.page-index__bg-light {
  background-color: #f8f8f8;
}

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

.page-index__section-title {
  font-size: 2.8em;
  color: #1A202C;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  padding-top: 40px;
}

.page-index__section-title.page-index__text-light {
  color: #FFD700;
}

.page-index__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.page-index__section-description.page-index__text-light {
  color: #ccc;
}

.page-index__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  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--accent {
  background-color: #FFD700;
  color: #1A202C;
  border: none;
  padding: 10px 20px;
  font-size: 0.95em;
}

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

.page-index__btn--link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index__btn--link:hover {
  text-decoration: underline;
}

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

/* Hero Section */
.page-index__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a4a60 100%);
  color: #f8f8f8;
  padding: 100px 0;
  text-align: center;
  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.5);
  z-index: 1;
}

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

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

.page-index__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  font-weight: 300;
}

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

.page-index__hero-cta-group {
  margin-top: 30px;
}

.page-index__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

/* About PG88 Section */
.page-index__about-pg88-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-index__grid-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-index__grid-columns {
    grid-template-columns: 1fr 1fr;
  }
  .page-index__grid-columns:nth-child(even) .page-index__text-content {
    order: 2;
  }
  .page-index__grid-columns:nth-child(even) .page-index__image-content {
    order: 1;
  }
}

.page-index__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #333;
}

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

/* Why Choose Section */
.page-index__why-choose-section {
  padding: 80px 0;
}

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

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

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

.page-index__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index__feature-item p {
  color: #444;
  font-size: 1em;
}

/* Promotions Section */
.page-index__promotions-section {
  padding: 80px 0;
}

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

.page-index__promo-card {
  background-color: #2a3a50;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 25px;
}

.page-index__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin: 0 20px 10px;
  font-weight: bold;
}

.page-index__promo-text {
  color: #ddd;
  padding: 0 20px 20px;
  font-size: 0.95em;
}

.page-index__promo-note {
  margin-top: 40px;
  font-style: italic;
  font-size: 0.9em;
}

/* Popular Games Section */
.page-index__popular-games-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-index__game-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  padding-bottom: 20px;
}

.page-index__game-card:hover {
  transform: translateY(-5px);
}

.page-index__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-index__game-title {
  font-size: 1.5em;
  color: #1A202C;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index__game-text {
  color: #555;
  padding: 0 20px 15px;
  font-size: 0.95em;
}

/* Guides Section */
.page-index__guides-section {
  padding: 80px 0;
}

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

.page-index__guide-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

.page-index__guide-title {
  font-size: 1.6em;
  color: #1A202C;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index__guide-text {
  color: #555;
  font-size: 0.95em;
  margin-bottom: 20px;
}

/* Testimonials Section */
.page-index__testimonials-section {
  padding: 80px 0;
}

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

.page-index__testimonial-card {
  background-color: #2a3a50;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  color: #f8f8f8;
  position: relative;
}

.page-index__testimonial-card::before {
  content: '"';
  font-size: 4em;
  color: #FFD700;
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.7;
  line-height: 1;
}

.page-index__testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.05em;
  padding-top: 20px;
}

.page-index__testimonial-author {
  font-weight: bold;
  color: #FFD700;
  text-align: right;
}

/* CTA Section */
.page-index__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #f8f8f8;
}

.page-index__cta-buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Latest News Section */
.page-index__latest-news-section {
  padding: 80px 0;
}

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

.page-index__news-card {
  background-color: #2a3a50;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  color: #f8f8f8;
  transition: transform 0.3s ease;
}

.page-index__news-card:hover {
  transform: translateY(-5px);
}

.page-index__news-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.3;
}

.page-index__news-date {
  font-size: 0.9em;
  color: #aaa;
  margin-bottom: 15px;
}

.page-index__news-excerpt {
  font-size: 0.95em;
  margin-bottom: 20px;
  color: #ddd;
}

/* Contact Info Section */
.page-index__contact-info-section {
  padding: 80px 0;
  text-align: center;
}

.page-index__contact-details {
  margin-top: 40px;
  font-size: 1.1em;
  color: #333;
}

.page-index__contact-details p {
  margin-bottom: 10px;
}

.page-index__contact-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index__contact-link:hover {
  text-decoration: underline;
}

.page-index__contact-cta {
  margin-top: 30px;
  font-size: 1.05em;
  color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index__hero-title {
    font-size: 2.8em;
  }
  .page-index__hero-subtitle {
    font-size: 1.3em;
  }
  .page-index__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index__hero-section {
    padding: 80px 0 60px;
  }
  .page-index__hero-title {
    font-size: 2.2em;
  }
  .page-index__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-index__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-index__section-title {
    font-size: 1.8em;
    padding-top: 30px;
  }
  .page-index__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-index__features-grid,
  .page-index__promos-grid,
  .page-index__games-grid,
  .page-index__guides-grid,
  .page-index__testimonials-grid,
  .page-index__news-grid {
    grid-template-columns: 1fr;
  }
  .page-index__promo-title,
  .page-index__game-title,
  .page-index__guide-title,
  .page-index__news-title {
    font-size: 1.4em;
  }
  .page-index__testimonial-text {
    font-size: 1em;
  }
  .page-index__btn--large {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-index__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index__grid-columns {
    grid-template-columns: 1fr;
  }
  .page-index__grid-columns .page-index__text-content {
    order: unset !important;
  }
  .page-index__grid-columns .page-index__image-content {
    order: unset !important;
  }
}

@media (max-width: 480px) {
  .page-index__hero-title {
    font-size: 1.8em;
  }
  .page-index__hero-subtitle {
    font-size: 1em;
  }
  .page-index__hero-description {
    font-size: 0.9em;
  }
  .page-index__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-index__btn--large {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-index__section-title {
    font-size: 1.5em;
  }
  .page-index__promo-title,
  .page-index__game-title,
  .page-index__guide-title,
  .page-index__news-title {
    font-size: 1.2em;
  }
  .page-index__testimonial-card::before {
    font-size: 3em;
  }
}