/* style/resources-suncity888-slots-game-recommendations.css */
.page-resources-suncity888-slots-game-recommendations {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Auxiliary color as main background */
  line-height: 1.6;
}

.page-resources-suncity888-slots-game-recommendations__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-suncity888-slots-game-recommendations__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-suncity888-slots-game-recommendations__section:nth-of-type(even) {
  background-color: #2a3341; /* Slightly lighter dark background for contrast */
}

.page-resources-suncity888-slots-game-recommendations h1,
.page-resources-suncity888-slots-game-recommendations h2 {
  color: #FFD700; /* Main color for headings */
  margin-bottom: 25px;
  font-weight: bold;
}

.page-resources-suncity888-slots-game-recommendations h3 {
  color: #FFD700; /* Main color for subheadings */
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-resources-suncity888-slots-game-recommendations p {
  margin-bottom: 15px;
  color: #E0E0E0; /* Ensure text contrast */
}

.page-resources-suncity888-slots-game-recommendations strong {
  color: #FFD700;
}

.page-resources-suncity888-slots-game-recommendations ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-resources-suncity888-slots-game-recommendations ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  text-align: left;
  color: #E0E0E0;
}

.page-resources-suncity888-slots-game-recommendations ul li::before {
  content: '⚡'; /* Unicode lightning bolt for list items */
  color: #FFD700;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  top: -2px;
}

.page-resources-suncity888-slots-game-recommendations__btn {
  display: inline-block;
  background-color: #FFD700; /* Main color for buttons */
  color: #1A202C; /* Auxiliary color for button text */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.page-resources-suncity888-slots-game-recommendations__btn:hover {
  background-color: #b39700; /* Darker shade of gold on hover */
  color: #000000;
}

.page-resources-suncity888-slots-game-recommendations__btn--primary {
  font-size: 1.1em;
  padding: 15px 30px;
}

/* Hero Section */
.page-resources-suncity888-slots-game-recommendations__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a4555 100%); /* Gradient dark background */
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-suncity888-slots-game-recommendations__hero-content {
  max-width: 800px;
  z-index: 1;
  position: relative;
}

.page-resources-suncity888-slots-game-recommendations__hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700;
}

.page-resources-suncity888-slots-game-recommendations__hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-resources-suncity888-slots-game-recommendations__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-resources-suncity888-slots-game-recommendations__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

/* Why Us Section */
.page-resources-suncity888-slots-game-recommendations__why-us {
  background-color: #1A202C;
}

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

.page-resources-suncity888-slots-game-recommendations__feature-item {
  background-color: #2a3341;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-resources-suncity888-slots-game-recommendations__feature-item:hover {
  transform: translateY(-5px);
}

.page-resources-suncity888-slots-game-recommendations__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-resources-suncity888-slots-game-recommendations__feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
}

.page-resources-suncity888-slots-game-recommendations__feature-item p {
  color: #C0C0C0;
}

/* Providers Section */
.page-resources-suncity888-slots-game-recommendations__providers ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-resources-suncity888-slots-game-recommendations__providers ul li {
  background-color: #2a3341;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #FFD700;
  font-weight: bold;
  font-size: 1.1em;
  flex: 1 1 auto;
  min-width: 200px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-resources-suncity888-slots-game-recommendations__providers ul li:hover {
  background-color: #3a4555;
}

/* Top Games Section */
.page-resources-suncity888-slots-game-recommendations__top-games {
  background-color: #1A202C;
}

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

.page-resources-suncity888-slots-game-recommendations__game-card {
  background-color: #2a3341;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-resources-suncity888-slots-game-recommendations__game-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

.page-resources-suncity888-slots-game-recommendations__game-card h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-resources-suncity888-slots-game-recommendations__game-card p {
  color: #C0C0C0;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* How to Play Section */
.page-resources-suncity888-slots-game-recommendations__how-to-play {
  background-color: #2a3341;
}

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

.page-resources-suncity888-slots-game-recommendations__step-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-resources-suncity888-slots-game-recommendations__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px #FFD700);
}

.page-resources-suncity888-slots-game-recommendations__step-item h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-resources-suncity888-slots-game-recommendations__step-item p {
  color: #C0C0C0;
  flex-grow: 1;
}

/* Promotions Section */
.page-resources-suncity888-slots-game-recommendations__promotions {
  background-color: #1A202C;
}

.page-resources-suncity888-slots-game-recommendations__promo-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-resources-suncity888-slots-game-recommendations__promo-list li {
  background-color: #2a3341;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #E0E0E0;
  text-align: left;
  flex: 1 1 calc(50% - 20px);
  max-width: calc(50% - 20px);
  position: relative;
  padding-left: 45px;
}

.page-resources-suncity888-slots-game-recommendations__promo-list li::before {
  content: '⭐'; /* Star unicode for promo list items */
  color: #FFD700;
  position: absolute;
  left: 15px;
  font-size: 1.5em;
  top: 18px;
}

.page-resources-suncity888-slots-game-recommendations__promo-list li strong {
  color: #FFD700;
  font-size: 1.1em;
}

/* Tips Section */
.page-resources-suncity888-slots-game-recommendations__tips {
  background-color: #2a3341;
}

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

.page-resources-suncity888-slots-game-recommendations__tip-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.page-resources-suncity888-slots-game-recommendations__tip-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-resources-suncity888-slots-game-recommendations__tip-item p {
  color: #C0C0C0;
}

/* Support Section */
.page-resources-suncity888-slots-game-recommendations__support {
  background-color: #1A202C;
}

.page-resources-suncity888-slots-game-recommendations__support ul {
  margin-top: 20px;
  margin-bottom: 30px;
  display: inline-block;
  text-align: left;
}

.page-resources-suncity888-slots-game-recommendations__support ul li::before {
  content: '✅'; /* Checkmark unicode for support list items */
  color: #FFD700;
}

.page-resources-suncity888-slots-game-recommendations__support-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid #FFD700;
}

/* Conclusion Section */
.page-resources-suncity888-slots-game-recommendations__conclusion {
  background: linear-gradient(135deg, #3a4555 0%, #1A202C 100%);
  padding: 80px 0;
}

.page-resources-suncity888-slots-game-recommendations__conclusion h2 {
  font-size: 2.5em;
  color: #FFD700;
}

.page-resources-suncity888-slots-game-recommendations__conclusion p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-suncity888-slots-game-recommendations__hero-content h1 {
    font-size: 2.5em;
  }

  .page-resources-suncity888-slots-game-recommendations__hero-content p {
    font-size: 1em;
  }

  .page-resources-suncity888-slots-game-recommendations__btn--primary {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-resources-suncity888-slots-game-recommendations__features-grid,
  .page-resources-suncity888-slots-game-recommendations__game-card-grid,
  .page-resources-suncity888-slots-game-recommendations__steps-grid,
  .page-resources-suncity888-slots-game-recommendations__tips-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-suncity888-slots-game-recommendations__promo-list li {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-resources-suncity888-slots-game-recommendations__hero {
    padding: 60px 0;
  }
  .page-resources-suncity888-slots-game-recommendations__hero-content h1 {
    font-size: 2em;
  }
  .page-resources-suncity888-slots-game-recommendations__section {
    padding: 40px 0;
  }
  .page-resources-suncity888-slots-game-recommendations__promo-list li {
    padding-left: 35px;
  }
  .page-resources-suncity888-slots-game-recommendations__promo-list li::before {
    font-size: 1.2em;
    top: 20px;
  }
}