/* style/slots-games-bonus-features.css */

.page-slots-games-bonus-features {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  line-height: 1.6;
  background-color: #0F1D2C; /* Slightly lighter dark blue for overall background */
}

.page-slots-games-bonus-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-slots-games-bonus-features__hero-section {
  background: linear-gradient(135deg, #1A2E44, #0F1D2C);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-slots-games-bonus-features__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots-games-bonus-features__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

.page-slots-games-bonus-features__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-slots-games-bonus-features__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #1A2E44; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-slots-games-bonus-features__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

/* Content Section */
.page-slots-games-bonus-features__content-section,
.page-slots-games-bonus-features__strategy-section,
.page-slots-games-bonus-features__responsible-gambling {
  padding: 60px 0;
  background-color: #1A2E44; /* Main dark blue for content sections */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-slots-games-bonus-features__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-slots-games-bonus-features__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-slots-games-bonus-features__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

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

.page-slots-games-bonus-features__feature-card {
  background-color: #0F1D2C; /* Darker blue for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-bonus-features__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.3);
}

.page-slots-games-bonus-features__feature-image {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-slots-games-bonus-features__feature-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
}

.page-slots-games-bonus-features__feature-description {
  font-size: 1em;
  color: #C0C0C0;
  text-align: left;
}

/* Strategy Section */
.page-slots-games-bonus-features__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slots-games-bonus-features__strategy-item {
  background-color: #0F1D2C;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-slots-games-bonus-features__strategy-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-slots-games-bonus-features__strategy-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

/* CTA Section */
.page-slots-games-bonus-features__cta-section {
  background: linear-gradient(45deg, #1A2E44, #2A4F6D); /* Gradient for CTA */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-slots-games-bonus-features__cta-content {
  max-width: 900px;
}

.page-slots-games-bonus-features__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-slots-games-bonus-features__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-slots-games-bonus-features__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-slots-games-bonus-features__secondary-button {
  display: inline-block;
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-slots-games-bonus-features__secondary-button:hover {
  background-color: #FFD700;
  color: #1A2E44;
  transform: translateY(-3px);
}

/* Responsible Gambling Section */
.page-slots-games-bonus-features__responsible-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots-games-bonus-features__hero-title {
    font-size: 2.8em;
  }

  .page-slots-games-bonus-features__hero-description {
    font-size: 1.1em;
  }

  .page-slots-games-bonus-features__section-title {
    font-size: 2em;
  }

  .page-slots-games-bonus-features__feature-grid,
  .page-slots-games-bonus-features__strategy-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-slots-games-bonus-features__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-slots-games-bonus-features__hero-section {
    padding: 80px 0;
  }

  .page-slots-games-bonus-features__hero-title {
    font-size: 2.2em;
  }

  .page-slots-games-bonus-features__hero-description {
    font-size: 1em;
  }

  .page-slots-games-bonus-features__section-title {
    font-size: 1.8em;
  }

  .page-slots-games-bonus-features__feature-card,
  .page-slots-games-bonus-features__strategy-item {
    padding: 25px;
  }

  .page-slots-games-bonus-features__cta-section {
    padding: 60px 0;
  }

  .page-slots-games-bonus-features__cta-title {
    font-size: 1.8em;
  }

  .page-slots-games-bonus-features__cta-button,
  .page-slots-games-bonus-features__secondary-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }

  .page-slots-games-bonus-features__button-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-slots-games-bonus-features__hero-section {
    padding: 60px 0;
  }

  .page-slots-games-bonus-features__hero-title {
    font-size: 1.8em;
  }

  .page-slots-games-bonus-features__hero-description {
    font-size: 0.9em;
  }

  .page-slots-games-bonus-features__section-title {
    font-size: 1.5em;
  }

  .page-slots-games-bonus-features__feature-grid,
  .page-slots-games-bonus-features__strategy-grid {
    grid-template-columns: 1fr;
  }

  .page-slots-games-bonus-features__cta-title {
    font-size: 1.5em;
  }

  .page-slots-games-bonus-features__cta-button,
  .page-slots-games-bonus-features__secondary-button {
    width: 100%;
    max-width: 250px;
  }
}