/* style/resources-hello88-slot-games-recommendations.css */

.page-resources-hello88-slot-games-recommendations {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #000A1A; /* Very dark blue, almost black */
  line-height: 1.6;
}

.page-resources-hello88-slot-games-recommendations__hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #001F3F 0%, #000A1A 100%); /* Main color gradient */
}

.page-resources-hello88-slot-games-recommendations__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-resources-hello88-slot-games-recommendations__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-resources-hello88-slot-games-recommendations__title {
  font-size: 3.5em;
  color: #FFD700; /* Accent gold */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-resources-hello88-slot-games-recommendations__subtitle {
  font-size: 1.4em;
  color: #B0B0B0;
  margin-bottom: 30px;
}

.page-resources-hello88-slot-games-recommendations__brand-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-hello88-slot-games-recommendations__brand-link:hover {
  text-decoration: underline;
}

.page-resources-hello88-slot-games-recommendations__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.page-resources-hello88-slot-games-recommendations__btn--primary {
  background-color: #FFD700; /* Accent gold */
  color: #001F3F; /* Main dark blue */
  border: 2px solid #FFD700;
}

.page-resources-hello88-slot-games-recommendations__btn--primary:hover {
  background-color: #E6C200;
  color: #000A1A;
}

.page-resources-hello88-slot-games-recommendations__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-hello88-slot-games-recommendations__btn--secondary:hover {
  background-color: #FFD700;
  color: #001F3F;
}

.page-resources-hello88-slot-games-recommendations__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-resources-hello88-slot-games-recommendations__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-hello88-slot-games-recommendations__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 20px auto 0;
}

.page-resources-hello88-slot-games-recommendations__feature-grid,
.page-resources-hello88-slot-games-recommendations__game-grid,
.page-resources-hello88-slot-games-recommendations__strategy-grid,
.page-resources-hello88-slot-games-recommendations__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-hello88-slot-games-recommendations__feature-item,
.page-resources-hello88-slot-games-recommendations__strategy-item,
.page-resources-hello88-slot-games-recommendations__benefit-item {
  background-color: #001F3F; /* Main dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.page-resources-hello88-slot-games-recommendations__feature-heading,
.page-resources-hello88-slot-games-recommendations__strategy-heading,
.page-resources-hello88-slot-games-recommendations__benefit-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-hello88-slot-games-recommendations__game-card {
  background-color: #001F3F;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-hello88-slot-games-recommendations__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-resources-hello88-slot-games-recommendations__game-title {
  font-size: 1.5em;
  color: #FFD700;
  margin: 20px 15px 10px;
}

.page-resources-hello88-slot-games-recommendations__game-description {
  font-size: 1em;
  color: #B0B0B0;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-resources-hello88-slot-games-recommendations__game-card .page-resources-hello88-slot-games-recommendations__btn {
  margin: 0 15px 20px;
}

.page-resources-hello88-slot-games-recommendations__cta-banner {
  background: linear-gradient(90deg, #001F3F, #000A1A);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-hello88-slot-games-recommendations__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.2;
}

.page-resources-hello88-slot-games-recommendations__cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-hello88-slot-games-recommendations__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-resources-hello88-slot-games-recommendations__cta-description {
  font-size: 1.3em;
  color: #B0B0B0;
  margin-bottom: 40px;
}

.page-resources-hello88-slot-games-recommendations .highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-hello88-slot-games-recommendations__title {
    font-size: 2.8em;
  }
  .page-resources-hello88-slot-games-recommendations__subtitle {
    font-size: 1.2em;
  }
  .page-resources-hello88-slot-games-recommendations__section-title {
    font-size: 2.2em;
  }
  .page-resources-hello88-slot-games-recommendations__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-resources-hello88-slot-games-recommendations__hero {
    height: 400px;
  }
  .page-resources-hello88-slot-games-recommendations__title {
    font-size: 2.2em;
  }
  .page-resources-hello88-slot-games-recommendations__subtitle {
    font-size: 1em;
  }
  .page-resources-hello88-slot-games-recommendations__section {
    padding: 40px 15px;
  }
  .page-resources-hello88-slot-games-recommendations__section-title {
    font-size: 1.8em;
  }
  .page-resources-hello88-slot-games-recommendations__feature-heading,
  .page-resources-hello88-slot-games-recommendations__strategy-heading,
  .page-resources-hello88-slot-games-recommendations__benefit-heading {
    font-size: 1.4em;
  }
  .page-resources-hello88-slot-games-recommendations__cta-title {
    font-size: 2em;
  }
  .page-resources-hello88-slot-games-recommendations__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-resources-hello88-slot-games-recommendations__hero {
    height: 350px;
  }
  .page-resources-hello88-slot-games-recommendations__title {
    font-size: 1.8em;
  }
  .page-resources-hello88-slot-games-recommendations__subtitle {
    font-size: 0.9em;
  }
  .page-resources-hello88-slot-games-recommendations__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-resources-hello88-slot-games-recommendations__section-title {
    font-size: 1.6em;
  }
  .page-resources-hello88-slot-games-recommendations__feature-grid,
  .page-resources-hello88-slot-games-recommendations__game-grid,
  .page-resources-hello88-slot-games-recommendations__strategy-grid,
  .page-resources-hello88-slot-games-recommendations__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-hello88-slot-games-recommendations__cta-title {
    font-size: 1.8em;
  }
  .page-resources-hello88-slot-games-recommendations__cta-description {
    font-size: 1em;
  }
}