/* style/index-suncity888-game-features.css */
.page-index-suncity888-game-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #1A202C; /* Dark text for light background */
  background-color: #f8f8f8;
}

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

.page-index-suncity888-game-features__hero {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #1A202C 100%); /* Gold to Orange to Dark */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-suncity888-game-features__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:suncity888,abstract,luxury,pattern]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-index-suncity888-game-features__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-index-suncity888-game-features__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-index-suncity888-game-features__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.page-index-suncity888-game-features__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A202C; /* Dark text for contrast */
}

.page-index-suncity888-game-features__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-suncity888-game-features__btn--secondary {
  background-color: #1A202C; /* Dark Blue */
  color: #FFD700; /* Gold text for contrast */
  border: 2px solid #FFD700;
}

.page-index-suncity888-game-features__btn--secondary:hover {
  background-color: #2c3444;
  transform: translateY(-3px);
}

.page-index-suncity888-game-features__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-suncity888-game-features__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-index-suncity888-game-features__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #1A202C;
  font-weight: bold;
}

.page-index-suncity888-game-features__section-subtitle {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
}

.page-index-suncity888-game-features__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-index-suncity888-game-features__content-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

.page-index-suncity888-game-features__text-content {
  flex: 1;
  min-width: 300px;
}

.page-index-suncity888-game-features__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-suncity888-game-features__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-index-suncity888-game-features__feature-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-suncity888-game-features__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-index-suncity888-game-features__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-suncity888-game-features__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-suncity888-game-features__feature-description {
  font-size: 1em;
  color: #333;
  margin-bottom: 20px;
}

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

.page-index-suncity888-game-features__tech-item {
  background-color: #1A202C;
  color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-suncity888-game-features__tech-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-suncity888-game-features__tech-description {
  font-size: 1em;
  color: #E0E0E0;
}

.page-index-suncity888-game-features__section--promotions ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-suncity888-game-features__section--promotions li {
  background-color: #FFFBE6; /* Lighter gold background for list items */
  border-left: 5px solid #FFD700;
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 5px;
  color: #1A202C;
  text-align: left;
}

.page-index-suncity888-game-features__section--promotions li strong {
  color: #1A202C;
}

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

.page-index-suncity888-game-features__app-download {
  margin-top: 40px;
  text-align: center;
}

.page-index-suncity888-game-features__app-download p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #1A202C;
}

.page-index-suncity888-game-features__app-image {
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index-suncity888-game-features__section--conclusion {
  background-color: #1A202C;
  color: #FFFFFF;
  padding: 80px 0;
}

.page-index-suncity888-game-features__section--conclusion .page-index-suncity888-game-features__section-title,
.page-index-suncity888-game-features__section--conclusion p {
  color: #FFFFFF;
}

.page-index-suncity888-game-features__section--conclusion .page-index-suncity888-game-features__section-title {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-index-suncity888-game-features__hero-title {
    font-size: 2.5em;
  }

  .page-index-suncity888-game-features__hero-description {
    font-size: 1em;
  }

  .page-index-suncity888-game-features__section-title {
    font-size: 2em;
  }

  .page-index-suncity888-game-features__content-wrapper {
    flex-direction: column;
  }

  .page-index-suncity888-game-features__content-wrapper:nth-child(even) {
    flex-direction: column;
  }

  .page-index-suncity888-game-features__feature-grid,
  .page-index-suncity888-game-features__tech-grid {
    grid-template-columns: 1fr;
  }

  .page-index-suncity888-game-features__cta-buttons {
    flex-direction: column;
  }

  .page-index-suncity888-game-features__btn {
    width: 100%;
  }
}

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

  .page-index-suncity888-game-features__section-title {
    font-size: 1.8em;
  }

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