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

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

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

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

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

.page-index__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

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

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

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

.page-index__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A246A;
  transform: translateY(-2px);
}

.page-index__btn--tertiary {
  background-color: #0A246A;
  color: #FFD700;
  border: 2px solid #0A246A;
}

.page-index__btn--tertiary:hover {
  background-color: #071a4f;
  border-color: #071a4f;
  transform: translateY(-2px);
}

.page-index__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

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

.page-index__btn--text {
  color: #0A246A;
  text-decoration: underline;
  font-weight: bold;
  padding: 0;
  border: none;
  background: none;
}

.page-index__btn--text:hover {
  color: #FFD700;
  text-decoration: none;
}

/* Hero Section */
.page-index__hero {
  background: linear-gradient(135deg, #0A246A 0%, #0A246A 60%, #1a3c7a 100%);
  color: #fff;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-index__hero-content {
  max-width: 900px;
  z-index: 10;
  padding: 0 20px;
}

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

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

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

.page-index__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust to show more or less of the image */
  right: -100px; /* Adjust positioning */
  width: 600px; /* Adjust size */
  height: auto;
  opacity: 0.2; /* Subtle background image */
  z-index: 1;
  transform: rotate(5deg);
}

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

/* About Us Section */
.page-index__about-us {
  padding: 80px 0;
  background-color: #fff;
}

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

.page-index__about-text {
  flex: 1;
  min-width: 300px;
}

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

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

.page-index__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-index__benefits-list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: #333;
}

.page-index__benefits-list li::before {
  content: '✔';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Featured Games Section */
.page-index__featured-games {
  padding: 80px 0;
  background-color: #f0f2f5;
}

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

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

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

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

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

.page-index__game-description {
  color: #555;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-index__promotions {
  padding: 80px 0;
  background-color: #fff;
}

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

.page-index__promo-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 5px solid #FFD700;
}

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

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

.page-index__promo-title {
  font-size: 1.4em;
  color: #0A246A;
  margin-bottom: 10px;
}

.page-index__promo-description {
  color: #555;
  margin-bottom: 20px;
}

.page-index__full-promo-cta {
  text-align: center;
}

/* Detail Pages / Articles Section */
.page-index__detail-pages {
  padding: 80px 0;
  background-color: #f0f2f5;
}

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

.page-index__article-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  transition: transform 0.3s ease;
}

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

.page-index__article-title {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-index__article-title a {
  color: #0A246A;
  text-decoration: none;
  font-weight: bold;
}

.page-index__article-title a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-index__article-description {
  color: #555;
  margin-bottom: 15px;
  font-size: 0.95em;
}

/* Responsible Gambling Section */
.page-index__responsible-gambling {
  padding: 80px 0;
  background-color: #0A246A;
  color: #fff;
  text-align: center;
}

.page-index__responsible-gambling .page-index__section-title {
  color: #FFD700;
}

.page-index__responsible-gambling p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
  color: #e0e0e0;
}

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

.page-index__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold color for icons */
}

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

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

/* Call to Action Bottom */
.page-index__cta-bottom {
  padding: 60px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.page-index__cta-bottom .page-index__section-title {
  color: #0A246A;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index__hero-title {
    font-size: 3em;
  }
  .page-index__hero-description {
    font-size: 1.1em;
  }
  .page-index__hero-image-wrapper {
    width: 500px;
    right: -50px;
  }
}

@media (max-width: 768px) {
  .page-index__hero {
    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;
    gap: 15px;
  }
  .page-index__hero-image-wrapper {
    width: 400px;
    right: -20px;
    bottom: -30px;
  }
  .page-index__section-title {
    font-size: 2em;
  }
  .page-index__section-subtitle {
    font-size: 1em;
  }
  .page-index__about-content {
    flex-direction: column;
  }
  .page-index__game-grid, .page-index__promo-grid, .page-index__article-list, .page-index__responsible-features {
    grid-template-columns: 1fr;
  }
  .page-index__about-image-wrapper {
    order: -1; /* Image above text on mobile */
  }
}

@media (max-width: 480px) {
  .page-index__hero {
    min-height: 500px;
  }
  .page-index__hero-title {
    font-size: 2em;
  }
  .page-index__hero-description {
    font-size: 0.9em;
  }
  .page-index__hero-actions .page-index__btn {
    width: 80%;
    max-width: 250px;
  }
  .page-index__hero-image-wrapper {
    width: 300px;
    right: -10px;
    bottom: -10px;
  }
  .page-index__section-title {
    font-size: 1.8em;
  }
  .page-index__subsection-title {
    font-size: 1.5em;
  }
}