.page-index {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text on dark background */
  background-color: #1a1a2e; /* Dark background for betting site */
}

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

.page-index__section {
  padding: 80px 0;
  text-align: center;
}

.page-index__section:nth-child(even) {
  background-color: #0d0d1a;
}

.page-index__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index__section-description {
  font-size: 1.1em;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.page-index__brand-name {
  color: #FFD700;
  font-weight: bold;
}

/* Hero Section */
.page-index__hero-section {
  background: linear-gradient(135deg, #0047AB 0%, #0028ff 100%); /* Deep blue to slightly lighter blue */
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;
}

.page-index__hero-content {
  max-width: 600px;
  padding: 20px;
}

.page-index__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index__hero-description {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-index__hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-index__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0047AB; /* Dark blue text */
  border: 2px solid #FFD700;
}

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

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

.page-index__btn--secondary:hover {
  background-color: #FFD700;
  color: #0047AB;
  transform: translateY(-3px);
}

.page-index__hero-image-wrapper {
  flex-shrink: 0;
  width: 500px;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-index__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Features Grid (About VIPwin) */
.page-index__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index__feature-item {
  background-color: #0047AB; /* Primary blue background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

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

.page-index__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7)); /* Gold glow */
}

.page-index__feature-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold title */
  margin-bottom: 15px;
}

.page-index__feature-text {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
}

.page-index__more-info {
  margin-top: 60px;
}

.page-index__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index__btn--outline:hover {
  background-color: #FFD700;
  color: #0047AB;
}

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

.page-index__game-card {
  background-color: #0047AB;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

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

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

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

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

.page-index__game-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFD700;
  color: #0047AB;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index__game-link:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* Promotions Section */
.page-index__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index__promo-card {
  background-color: #0d0d1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

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

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

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

.page-index__promo-text {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 15px 20px 15px;
  line-height: 1.5;
}

.page-index__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  margin-bottom: 20px;
  background-color: #FFD700;
  color: #0047AB;
  border: 2px solid #FFD700;
}

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

/* Security Commitment Section */
.page-index__security-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index__security-point {
  background-color: #0047AB;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-index__security-point h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index__security-point p {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
}

.page-index__security-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

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

.page-index__testimonial-card {
  background-color: #0d0d1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-index__testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #FFD700;
}

.page-index__testimonial-text {
  font-style: italic;
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.6;
}

.page-index__testimonial-author {
  font-weight: bold;
  color: #FFD700;
  font-size: 1em;
}

/* Quick Access Section */
.page-index__quick-access {
  background: linear-gradient(45deg, #0047AB, #0a0a20);
  padding: 100px 0;
}

.page-index__access-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.page-index__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
  border-radius: 10px;
  background-color: #FFD700;
  color: #0047AB;
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-index__btn--large:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-5px);
}

/* Detail Pages List */
.page-index__detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index__detail-item {
  background-color: #0d0d1a;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-index__detail-item h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-index__detail-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__detail-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-index__detail-item p {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.5;
}

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

  .page-index__hero-content {
    max-width: 100%;
    padding: 0;
  }

  .page-index__hero-image-wrapper {
    width: 90%;
    max-width: 500px;
  }

  .page-index__hero-actions {
    justify-content: center;
  }

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

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

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

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

@media (max-width: 768px) {
  .page-index__section {
    padding: 60px 0;
  }

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

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

  .page-index__hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .page-index__btn {
    width: 80%;
    max-width: 300px;
  }

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

  .page-index__features-grid, .page-index__game-categories, .page-index__promo-grid, .page-index__security-points, .page-index__testimonials-grid, .page-index__detail-list {
    grid-template-columns: 1fr;
  }

  .page-index__access-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-index__btn--large {
    width: 80%;
    max-width: 350px;
  }
}

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

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

  .page-index__hero-image-wrapper {
    width: 100%;
  }
}