.page-game-guides-slots-strategy {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for readability on dark background */
  line-height: 1.6;
  background-color: #0A2E5B; /* Main dark blue background */
}

.page-game-guides-slots-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-slots-strategy__hero {
  background: linear-gradient(135deg, #0A2E5B 0%, #061e3d 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-game-guides-slots-strategy__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(10, 46, 91, 0) 70%);
  animation: page-game-guides-slots-strategy__rotate 20s linear infinite;
}

@keyframes page-game-guides-slots-strategy__rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-game-guides-slots-strategy__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-game-guides-slots-strategy__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #F0F0F0;
  position: relative;
  z-index: 1;
}

.page-game-guides-slots-strategy__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2E5B; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-game-guides-slots-strategy__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-game-guides-slots-strategy__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-game-guides-slots-strategy__section:last-of-type {
  border-bottom: none;
}

.page-game-guides-slots-strategy__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-guides-slots-strategy__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-guides-slots-strategy__subsection-title {
  font-size: 1.8em;
  color: #F0F0F0; /* Light gray for subsections */
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-game-guides-slots-strategy__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.page-game-guides-slots-strategy p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-game-guides-slots-strategy ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-game-guides-slots-strategy ul li {
  margin-bottom: 8px;
  font-size: 1.1em;
}

.page-game-guides-slots-strategy strong {
  color: #FFD700;
}

.page-game-guides-slots-strategy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2E5B; /* Dark blue text */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.page-game-guides-slots-strategy__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
}

.page-game-guides-slots-strategy__button-group {
  text-align: center;
  margin-top: 40px;
}

.page-game-guides-slots-strategy__main-button,
.page-game-guides-slots-strategy__secondary-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: all 0.3s ease;
  margin: 0 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides-slots-strategy__main-button {
  background-color: #FFD700; /* Gold */
  color: #0A2E5B; /* Dark blue */
}

.page-game-guides-slots-strategy__main-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-game-guides-slots-strategy__secondary-button {
  background-color: #0A2E5B; /* Dark blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-game-guides-slots-strategy__secondary-button:hover {
  background-color: #061e3d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.page-game-guides-slots-strategy__faq-item {
  background-color: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.page-game-guides-slots-strategy__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-guides-slots-strategy__faq-answer {
  font-size: 1.05em;
  color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-guides-slots-strategy__hero-title {
    font-size: 2.5em;
  }

  .page-game-guides-slots-strategy__hero-subtitle {
    font-size: 1.2em;
  }

  .page-game-guides-slots-strategy__section-title {
    font-size: 2em;
  }

  .page-game-guides-slots-strategy__subsection-title {
    font-size: 1.5em;
  }

  .page-game-guides-slots-strategy__hero-button,
  .page-game-guides-slots-strategy__main-button,
  .page-game-guides-slots-strategy__secondary-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-guides-slots-strategy__button-group {
    flex-direction: column;
  }

  .page-game-guides-slots-strategy__main-button,
  .page-game-guides-slots-strategy__secondary-button {
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .page-game-guides-slots-strategy__hero-title {
    font-size: 2em;
  }

  .page-game-guides-slots-strategy__hero-subtitle {
    font-size: 1em;
  }

  .page-game-guides-slots-strategy__section-title {
    font-size: 1.8em;
  }

  .page-game-guides-slots-strategy__subsection-title {
    font-size: 1.3em;
  }

  .page-game-guides-slots-strategy p,
  .page-game-guides-slots-strategy ul li,
  .page-game-guides-slots-strategy__faq-answer {
    font-size: 0.95em;
  }

  .page-game-guides-slots-strategy__faq-question {
    font-size: 1.1em;
  }
}