.page-index-mcw-casino-features {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F;
  line-height: 1.6;
}

.page-index-mcw-casino-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-mcw-casino-features__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-index-mcw-casino-features__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFFFFF;
}

.page-index-mcw-casino-features__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #B0B0B0;
}

.page-index-mcw-casino-features__highlight {
  color: #FFD700; /* Gold for highlight */
}

.page-index-mcw-casino-features__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-index-mcw-casino-features__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-index-mcw-casino-features__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-index-mcw-casino-features__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-index-mcw-casino-features__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-index-mcw-casino-features__btn--link {
  color: #FFD700;
  text-decoration: underline;
  font-weight: normal;
  padding: 0;
  border: none;
  background: none;
  font-size: 1em;
}

.page-index-mcw-casino-features__btn--link:hover {
  color: #e6c200;
}

.page-index-mcw-casino-features__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  border: none;
}

.page-index-mcw-casino-features__btn--small:hover {
  background-color: #e6c200;
}

.page-index-mcw-casino-features__section {
  padding: 80px 0;
}

.page-index-mcw-casino-features__section:nth-of-type(even) {
  background-color: #0f223d; /* Slightly lighter dark blue for contrast */
}

.page-index-mcw-casino-features__section-title {
  font-size: 2.5em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-index-mcw-casino-features__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-index-mcw-casino-features__center-text {
  text-align: center;
}

.page-index-mcw-casino-features__grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-index-mcw-casino-features__grid-layout--reverse {
  grid-template-areas: "image-wrapper text-content";
}

.page-index-mcw-casino-features__grid-layout--reverse .page-index-mcw-casino-features__image-wrapper {
  grid-area: image-wrapper;
}

.page-index-mcw-casino-features__grid-layout--reverse .page-index-mcw-casino-features__text-content {
  grid-area: text-content;
}

.page-index-mcw-casino-features__text-content h2 {
  text-align: left;
  margin-top: 0;
  font-size: 2.2em;
}

.page-index-mcw-casino-features__text-content p {
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-index-mcw-casino-features__image-wrapper {
  text-align: center;
}

.page-index-mcw-casino-features__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-mcw-casino-features__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-mcw-casino-features__game-card {
  background-color: #1a2b47; /* Slightly lighter dark blue for card background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-mcw-casino-features__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.page-index-mcw-casino-features__game-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-mcw-casino-features__game-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-mcw-casino-features__game-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 20px;
}

.page-index-mcw-casino-features__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-mcw-casino-features__hero-title {
    font-size: 2.8em;
  }

  .page-index-mcw-casino-features__section-title {
    font-size: 2em;
  }

  .page-index-mcw-casino-features__grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-index-mcw-casino-features__grid-layout--reverse {
    grid-template-areas: unset;
  }

  .page-index-mcw-casino-features__text-content h2 {
    text-align: center;
  }

  .page-index-mcw-casino-features__image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
  }

  .page-index-mcw-casino-features__hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .page-index-mcw-casino-features__btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-index-mcw-casino-features__hero-title {
    font-size: 2.2em;
  }

  .page-index-mcw-casino-features__hero-subtitle,
  .page-index-mcw-casino-features__section-description {
    font-size: 1em;
  }

  .page-index-mcw-casino-features__section-title {
    font-size: 1.8em;
  }

  .page-index-mcw-casino-features__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-index-mcw-casino-features__section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-index-mcw-casino-features__hero-title {
    font-size: 1.8em;
  }

  .page-index-mcw-casino-features__hero-subtitle {
    font-size: 0.9em;
  }

  .page-index-mcw-casino-features__section-title {
    font-size: 1.5em;
  }

  .page-index-mcw-casino-features__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-index-mcw-casino-features__game-card {
    padding: 20px;
  }

  .page-index-mcw-casino-features__game-icon {
    width: 60px;
    height: 60px;
  }
}