/* style/slot-games-bonus-rounds.css */
.page-slot-games-bonus-rounds {
  font-family: 'Arial', sans-serif;
  color: #E5E5E5; /* Light grey for text on dark background */
  background-color: #1A1A1A; /* Main dark background */
  line-height: 1.6;
}

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

.page-slot-games-bonus-rounds__hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
  padding: 100px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

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

.page-slot-games-bonus-rounds__subtitle {
  font-size: 1.5em;
  color: #CCCCCC;
  margin-bottom: 40px;
}

.page-slot-games-bonus-rounds__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #1A1A1A; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-slot-games-bonus-rounds__section {
  padding: 80px 0;
  background-color: #1A1A1A;
}

.page-slot-games-bonus-rounds__section--alt-bg {
  background-color: #282828; /* Slightly lighter dark background for contrast */
}

.page-slot-games-bonus-rounds__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

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

.page-slot-games-bonus-rounds__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-slot-games-bonus-rounds__text-content {
  flex: 1;
}

.page-slot-games-bonus-rounds__text-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E5E5E5;
}

.page-slot-games-bonus-rounds__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-slot-games-bonus-rounds__image-wrapper--full-width {
    flex: none;
    width: 100%;
    margin-top: 40px;
}

.page-slot-games-bonus-rounds__image-wrapper--center {
    text-align: center;
    margin-top: 40px;
}

.page-slot-games-bonus-rounds__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-slot-games-bonus-rounds__feature-item {
  background-color: #1A1A1A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid #333;
}

.page-slot-games-bonus-rounds__feature-item:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
}

.page-slot-games-bonus-rounds__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD70080);
}

.page-slot-games-bonus-rounds__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slot-games-bonus-rounds__feature-item p {
  font-size: 1em;
  color: #CCCCCC;
}

.page-slot-games-bonus-rounds__list {
  list-style-type: disc;
  margin-left: 20px;
  font-size: 1.1em;
  color: #E5E5E5;
}

.page-slot-games-bonus-rounds__list li {
  margin-bottom: 10px;
}

.page-slot-games-bonus-rounds__list li strong {
  color: #FFD700;
}

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

.page-slot-games-bonus-rounds__tip-item {
  background-color: #1A1A1A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
}

.page-slot-games-bonus-rounds__tip-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slot-games-bonus-rounds__tip-item p {
  font-size: 1em;
  color: #CCCCCC;
}

.page-slot-games-bonus-rounds__section--cta {
  background-color: #FFD700; /* Gold background for CTA */
  color: #1A1A1A; /* Dark text on gold */
  text-align: center;
  padding: 60px 0;
}

.page-slot-games-bonus-rounds__cta-content {
  max-width: 900px;
}

.page-slot-games-bonus-rounds__cta-title {
  font-size: 2.8em;
  color: #1A1A1A;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-slot-games-bonus-rounds__cta-text {
  font-size: 1.3em;
  color: #333333;
  margin-bottom: 40px;
}

.page-slot-games-bonus-rounds__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-slot-games-bonus-rounds__cta-button--primary {
  background-color: #1A1A1A;
  color: #FFD700;
  border: 2px solid #1A1A1A;
}

.page-slot-games-bonus-rounds__cta-button--primary:hover {
  background-color: #333333;
  border-color: #333333;
  color: #FFD700;
}

.page-slot-games-bonus-rounds__cta-button--secondary {
  background-color: transparent;
  color: #1A1A1A;
  border: 2px solid #1A1A1A;
}

.page-slot-games-bonus-rounds__cta-button--secondary:hover {
  background-color: #1A1A1A;
  color: #FFD700;
}

.page-slot-games-bonus-rounds .highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-bonus-rounds__title {
    font-size: 3em;
  }
  .page-slot-games-bonus-rounds__subtitle {
    font-size: 1.3em;
  }
  .page-slot-games-bonus-rounds__section-title {
    font-size: 2em;
  }
  .page-slot-games-bonus-rounds__content-grid {
    flex-direction: column;
  }
  .page-slot-games-bonus-rounds__text-content, .page-slot-games-bonus-rounds__image-wrapper {
    flex: none;
    width: 100%;
  }
  .page-slot-games-bonus-rounds__image-wrapper--full-width {
      margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .page-slot-games-bonus-rounds__hero {
    padding: 80px 0;
  }
  .page-slot-games-bonus-rounds__title {
    font-size: 2.5em;
  }
  .page-slot-games-bonus-rounds__subtitle {
    font-size: 1.1em;
  }
  .page-slot-games-bonus-rounds__section {
    padding: 60px 0;
  }
  .page-slot-games-bonus-rounds__section-title {
    font-size: 1.8em;
  }
  .page-slot-games-bonus-rounds__feature-list, .page-slot-games-bonus-rounds__tips-grid {
    grid-template-columns: 1fr;
  }
  .page-slot-games-bonus-rounds__cta-title {
    font-size: 2.2em;
  }
  .page-slot-games-bonus-rounds__cta-text {
    font-size: 1.1em;
  }
  .page-slot-games-bonus-rounds__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games-bonus-rounds__cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-slot-games-bonus-rounds__title {
    font-size: 2em;
  }
  .page-slot-games-bonus-rounds__subtitle {
    font-size: 1em;
  }
  .page-slot-games-bonus-rounds__section-title {
    font-size: 1.5em;
  }
  .page-slot-games-bonus-rounds__feature-title {
    font-size: 1.5em;
  }
  .page-slot-games-bonus-rounds__tip-title {
    font-size: 1.3em;
  }
  .page-slot-games-bonus-rounds__cta-title {
    font-size: 1.8em;
  }
}