.page-game-platforms-red88-card-games-features {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #202020; /* Darker background for contrast */
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.page-game-platforms-red88-card-games-features__hero {
  background: linear-gradient(135deg, #DC143C, #36454F);
  color: #FFFFFF;
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .page-game-platforms-red88-card-games-features__hero {
    flex-direction: row;
    text-align: left;
    padding: 100px 10%;
  }
}

.page-game-platforms-red88-card-games-features__hero-content {
  flex: 1;
  max-width: 700px;
}

.page-game-platforms-red88-card-games-features__hero h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-platforms-red88-card-games-features__hero p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-game-platforms-red88-card-games-features__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-game-platforms-red88-card-games-features__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-game-platforms-red88-card-games-features__section {
  padding: 60px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.page-game-platforms-red88-card-games-features__section h2 {
  font-size: 2.2em;
  color: #DC143C; /* Crimson for main headings */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-platforms-red88-card-games-features__section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #DC143C;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-game-platforms-red88-card-games-features__section h3 {
  font-size: 1.6em;
  color: #DC143C; /* Crimson for subheadings */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-platforms-red88-card-games-features__section p {
  font-size: 1em;
  margin-bottom: 15px;
}

.page-game-platforms-red88-card-games-features__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .page-game-platforms-red88-card-games-features__content-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.page-game-platforms-red88-card-games-features__image-inline {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-platforms-red88-card-games-features__features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .page-game-platforms-red88-card-games-features__features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-game-platforms-red88-card-games-features__features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-game-platforms-red88-card-games-features__feature-card {
  background-color: #36454F; /* Carbon Gray for card background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-platforms-red88-card-games-features__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}

.page-game-platforms-red88-card-games-features__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(220, 20, 60, 0.7));
}

.page-game-platforms-red88-card-games-features__feature-card h3 {
  color: #DC143C;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-game-platforms-red88-card-games-features__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  cursor: pointer;
}

.page-game-platforms-red88-card-games-features__btn--primary {
  background-color: #DC143C; /* Crimson */
  color: #FFFFFF;
  border: 2px solid #DC143C;
}

.page-game-platforms-red88-card-games-features__btn--primary:hover {
  background-color: #A00F2F;
  transform: translateY(-3px);
}

.page-game-platforms-red88-card-games-features__btn--secondary {
  background-color: transparent;
  color: #DC143C;
  border: 2px solid #DC143C;
}

.page-game-platforms-red88-card-games-features__btn--secondary:hover {
  background-color: #DC143C;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.page-game-platforms-red88-card-games-features__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-game-platforms-red88-card-games-features__guide ol {
  list-style-type: decimal;
  padding-left: 25px;
  margin-top: 20px;
  color: #E0E0E0;
}

.page-game-platforms-red88-card-games-features__guide li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-game-platforms-red88-card-games-features__guide strong {
  color: #DC143C;
}

.page-game-platforms-red88-card-games-features__faq-item {
  background-color: #36454F;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-platforms-red88-card-games-features__faq-item h3 {
  color: #DC143C;
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-platforms-red88-card-games-features__faq-item p {
  color: #E0E0E0;
}

.page-game-platforms-red88-card-games-features__faq-item a {
  color: #DC143C;
  text-decoration: none;
}

.page-game-platforms-red88-card-games-features__faq-item a:hover {
  text-decoration: underline;
}

.page-game-platforms-red88-card-games-features__cta {
  background-color: #36454F; /* Carbon Gray */
  text-align: center;
  padding: 80px 5%;
  border-radius: 10px;
  margin: 60px auto;
  max-width: 1000px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-game-platforms-red88-card-games-features__cta h2 {
  color: #DC143C;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.page-game-platforms-red88-card-games-features__cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-game-platforms-red88-card-games-features__floating-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #DC143C; /* Crimson */
  color: #FFFFFF;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
  transform: translateX(0);
}

.page-game-platforms-red88-card-games-features__floating-promo.hidden {
  transform: translateX(120%);
}

.page-game-platforms-red88-card-games-features__floating-promo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1em;
}

.page-game-platforms-red88-card-games-features__floating-promo-icon {
  width: 24px;
  height: 24px;
  margin-right: 5px;
  filter: invert(100%); /* Make icon white */
}

.page-game-platforms-red88-card-games-features__floating-promo-close {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.5em;
  cursor: pointer;
  margin-left: 10px;
  padding: 0 5px;
}

.page-game-platforms-red88-card-games-features__floating-promo-close:hover {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-platforms-red88-card-games-features__hero {
    padding: 60px 5%;
  }
  .page-game-platforms-red88-card-games-features__hero h1 {
    font-size: 2em;
  }
  .page-game-platforms-red88-card-games-features__section {
    padding: 40px 5%;
  }
  .page-game-platforms-red88-card-games-features__section h2 {
    font-size: 1.8em;
  }
  .page-game-platforms-red88-card-games-features__section h3 {
    font-size: 1.3em;
  }
  .page-game-platforms-red88-card-games-features__feature-card {
    padding: 20px;
  }
  .page-game-platforms-red88-card-games-features__floating-promo {
    bottom: 15px;
    right: 15px;
    padding: 8px 12px;
    font-size: 0.9em;
  }
  .page-game-platforms-red88-card-games-features__floating-promo-icon {
    width: 20px;
    height: 20px;
  }
  .page-game-platforms-red88-card-games-features__floating-promo-close {
    font-size: 1.2em;
  }
}