/* style/high-score-strategies-slots-jackpot-tips.css */
.page-high-score-strategies-slots-jackpot-tips {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C; /* Main brand color */
  line-height: 1.6;
}

.page-high-score-strategies-slots-jackpot-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-high-score-strategies-slots-jackpot-tips__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a4150 100%); /* Dark gradient for hero */
  padding: 100px 0;
  text-align: center;
  border-bottom: 5px solid #FFD700; /* Gold accent */
}

.page-high-score-strategies-slots-jackpot-tips__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-high-score-strategies-slots-jackpot-tips__hero-subtitle {
  font-size: 1.3em;
  color: #FFFFFF;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-high-score-strategies-slots-jackpot-tips__hero-cta,
.page-high-score-strategies-slots-jackpot-tips__cta-button,
.page-high-score-strategies-slots-jackpot-tips__final-cta {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA buttons */
  color: #1A202C; /* Dark text for gold background */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-high-score-strategies-slots-jackpot-tips__hero-cta:hover,
.page-high-score-strategies-slots-jackpot-tips__cta-button:hover,
.page-high-score-strategies-slots-jackpot-tips__final-cta:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-high-score-strategies-slots-jackpot-tips__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-high-score-strategies-slots-jackpot-tips__section:last-of-type {
  border-bottom: none;
}

.page-high-score-strategies-slots-jackpot-tips__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-high-score-strategies-slots-jackpot-tips__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-high-score-strategies-slots-jackpot-tips__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e5dfd3;
}

.page-high-score-strategies-slots-jackpot-tips__section h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-high-score-strategies-slots-jackpot-tips__section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-high-score-strategies-slots-jackpot-tips__section ul li {
  background-color: #2a303d; /* Slightly lighter dark background for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #e5dfd3;
}

.page-high-score-strategies-slots-jackpot-tips__section ul li::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-high-score-strategies-slots-jackpot-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700; /* Gold border for images */
}

.page-high-score-strategies-slots-jackpot-tips__image--centered {
  margin-left: auto;
  margin-right: auto;
}

.page-high-score-strategies-slots-jackpot-tips__cta-button {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-high-score-strategies-slots-jackpot-tips__hero-title {
    font-size: 2.5em;
  }

  .page-high-score-strategies-slots-jackpot-tips__hero-subtitle {
    font-size: 1em;
  }

  .page-high-score-strategies-slots-jackpot-tips__section-title {
    font-size: 2em;
  }

  .page-high-score-strategies-slots-jackpot-tips__section h3 {
    font-size: 1.5em;
  }

  .page-high-score-strategies-slots-jackpot-tips__section p,
  .page-high-score-strategies-slots-jackpot-tips__section ul li {
    font-size: 0.95em;
  }

  .page-high-score-strategies-slots-jackpot-tips__hero-cta,
  .page-high-score-strategies-slots-jackpot-tips__cta-button,
  .page-high-score-strategies-slots-jackpot-tips__final-cta {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-high-score-strategies-slots-jackpot-tips__hero {
    padding: 60px 0;
  }

  .page-high-score-strategies-slots-jackpot-tips__hero-title {
    font-size: 2em;
  }

  .page-high-score-strategies-slots-jackpot-tips__hero-subtitle {
    font-size: 0.9em;
  }

  .page-high-score-strategies-slots-jackpot-tips__section {
    padding: 40px 0;
  }

  .page-high-score-strategies-slots-jackpot-tips__section-title {
    font-size: 1.8em;
  }

  .page-high-score-strategies-slots-jackpot-tips__section h3 {
    font-size: 1.3em;
  }

  .page-high-score-strategies-slots-jackpot-tips__section ul li {
    padding: 10px 15px;
  }
}