.page-game-strategies-scene-strategies {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-game-strategies-scene-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-strategies-scene-strategies__hero {
  background: linear-gradient(135deg, #007bff, #4da3ff); /* Adjusted for better contrast with text */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-strategies-scene-strategies__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_water_pattern,light_blue,bubbles]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-game-strategies-scene-strategies__hero .page-game-strategies-scene-strategies__container {
  position: relative;
  z-index: 1;
}

.page-game-strategies-scene-strategies__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-strategies-scene-strategies__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-game-strategies-scene-strategies__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-game-strategies-scene-strategies__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-game-strategies-scene-strategies__btn--primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #333333; /* Dark text for contrast */
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-game-strategies-scene-strategies__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.6);
}

.page-game-strategies-scene-strategies__btn--secondary {
  background-color: #0056b3; /* Darker variant of primary for contrast */
  color: #ffffff;
  border: 2px solid #0056b3;
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.4);
}

.page-game-strategies-scene-strategies__btn--secondary:hover {
  background-color: #004085;
  border-color: #004085;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 86, 179, 0.6);
}

.page-game-strategies-scene-strategies__section {
  padding: 60px 0;
  border-bottom: 1px solid #e9ecef;
}

.page-game-strategies-scene-strategies__section:last-of-type {
  border-bottom: none;
}

.page-game-strategies-scene-strategies__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-strategies-scene-strategies__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-game-strategies-scene-strategies__intro p,
.page-game-strategies-scene-strategies__strategies p,
.page-game-strategies-scene-strategies__advanced-tips p,
.page-game-strategies-scene-strategies__promotions p,
.page-game-strategies-scene-strategies__conclusion p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-game-strategies-scene-strategies__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-strategies-scene-strategies__image--full-width {
  width: 100%;
  margin: 40px 0;
}

.page-game-strategies-scene-strategies__strategy-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #007bff;
}

.page-game-strategies-scene-strategies__strategy-heading {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-strategies-scene-strategies__strategy-item p {
  margin-bottom: 15px;
}

.page-game-strategies-scene-strategies__promo-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  font-size: 1.1em;
  color: #555555;
}

.page-game-strategies-scene-strategies__promo-list li {
  margin-bottom: 10px;
}

.page-game-strategies-scene-strategies__promo-list li strong {
  color: #007bff;
}

.page-game-strategies-scene-strategies__conclusion .page-game-strategies-scene-strategies__btn {
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-strategies-scene-strategies__title {
    font-size: 2.5em;
  }
  .page-game-strategies-scene-strategies__subtitle {
    font-size: 1.1em;
  }
  .page-game-strategies-scene-strategies__section-title {
    font-size: 2em;
  }
  .page-game-strategies-scene-strategies__strategy-heading {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-game-strategies-scene-strategies__hero {
    padding: 60px 0;
  }
  .page-game-strategies-scene-strategies__title {
    font-size: 2em;
  }
  .page-game-strategies-scene-strategies__subtitle {
    font-size: 1em;
  }
  .page-game-strategies-scene-strategies__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-strategies-scene-strategies__btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-game-strategies-scene-strategies__section {
    padding: 40px 0;
  }
  .page-game-strategies-scene-strategies__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-game-strategies-scene-strategies__strategy-item {
    padding: 20px;
  }
  .page-game-strategies-scene-strategies__intro p,
  .page-game-strategies-scene-strategies__strategies p,
  .page-game-strategies-scene-strategies__advanced-tips p,
  .page-game-strategies-scene-strategies__promotions p,
  .page-game-strategies-scene-strategies__conclusion p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-game-strategies-scene-strategies__title {
    font-size: 1.8em;
  }
  .page-game-strategies-scene-strategies__section-title {
    font-size: 1.5em;
  }
  .page-game-strategies-scene-strategies__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
}