/* style/game-guides-slots-strategy.css */
.page-game-guides-slots-strategy {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Màu chữ sáng trên nền tối */
  background-color: #1A1A2E; /* Màu nền chính */
  line-height: 1.6;
}

.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, #1A1A2E, #3A3A5E);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.page-game-guides-slots-strategy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}

.page-game-guides-slots-strategy__hero-title {
  font-size: 3.5em;
  color: #E9B000; /* Màu nhấn */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-game-guides-slots-strategy__hero-description {
  font-size: 1.3em;
  color: #F5F5F5;
  margin-bottom: 30px;
}

.page-game-guides-slots-strategy__hero-cta {
  display: inline-block;
  background-color: #E9B000;
  color: #1A1A2E;
  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;
}

.page-game-guides-slots-strategy__hero-cta:hover {
  background-color: #FFD700;
  transform: translateY(-3px);
}

.page-game-guides-slots-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-game-guides-slots-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(3px);
}

.page-game-guides-slots-strategy__section {
  padding: 60px 0;
}

.page-game-guides-slots-strategy__section:nth-of-type(even) {
  background-color: #2A2A4A;
}

.page-game-guides-slots-strategy__section-title {
  font-size: 2.5em;
  color: #E9B000;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-game-guides-slots-strategy__introduction p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #F0F0F0;
}

.page-game-guides-slots-strategy__text-link {
  color: #E9B000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-game-guides-slots-strategy__text-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-game-guides-slots-strategy__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-game-guides-slots-strategy__strategy-card {
  background-color: #1A1A2E;
  border: 1px solid #3A3A5E;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-slots-strategy__strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-game-guides-slots-strategy__strategy-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: brightness(0.8);
}

.page-game-guides-slots-strategy__card-title {
  font-size: 1.8em;
  color: #E9B000;
  margin-bottom: 15px;
}

.page-game-guides-slots-strategy__strategy-card p {
  font-size: 1em;
  color: #D0D0D0;
  margin-bottom: 10px;
}

.page-game-guides-slots-strategy__list {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 15px;
  color: #D0D0D0;
  text-align: left;
}

.page-game-guides-slots-strategy__list li {
  margin-bottom: 8px;
}

.page-game-guides-slots-strategy__list--mistakes {
  list-style-type: none;
  padding-left: 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-game-guides-slots-strategy__list--mistakes li {
  background-color: #3A3A5E;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides-slots-strategy__list--mistakes li strong {
  color: #E9B000;
}

.page-game-guides-slots-strategy__cta-button {
  display: inline-block;
  background-color: #E9B000;
  color: #1A1A2E;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.page-game-guides-slots-strategy__cta-button:hover {
  background-color: #FFD700;
  transform: translateY(-3px);
}

.page-game-guides-slots-strategy__image-text-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  background-color: #1A1A2E;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides-slots-strategy__image-text-block-image {
  flex-shrink: 0;
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  filter: brightness(0.8);
}

.page-game-guides-slots-strategy__image-text-block p {
  font-size: 1.1em;
  color: #D0D0D0;
  flex-grow: 1;
}

.page-game-guides-slots-strategy__cta-final {
  background-color: #E9B000;
  color: #1A1A2E;
  text-align: center;
  padding: 80px 0;
}

.page-game-guides-slots-strategy__cta-final-inner {
  max-width: 900px;
}

.page-game-guides-slots-strategy__cta-final .page-game-guides-slots-strategy__section-title {
  color: #1A1A2E;
  text-shadow: none;
  margin-bottom: 20px;
}

.page-game-guides-slots-strategy__cta-final p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #1A1A2E;
}

.page-game-guides-slots-strategy__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  margin: 10px;
  background-color: #1A1A2E;
  color: #E9B000;
}

.page-game-guides-slots-strategy__cta-button--large:hover {
  background-color: #3A3A5E;
  color: #FFD700;
}

.page-game-guides-slots-strategy__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #1A1A2E;
  color: #1A1A2E;
  padding: 18px 40px;
  font-size: 1.3em;
  margin: 10px;
}

.page-game-guides-slots-strategy__cta-button--secondary:hover {
  background-color: #1A1A2E;
  color: #E9B000;
}

.page-game-guides-slots-strategy__faq {
  background-color: #1A1A2E;
}

.page-game-guides-slots-strategy__faq-item {
  background-color: #2A2A4A;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-guides-slots-strategy__hero-title {
    font-size: 2.8em;
  }
  .page-game-guides-slots-strategy__section-title {
    font-size: 2em;
  }
  .page-game-guides-slots-strategy__image-text-block {
    flex-direction: column;
    text-align: center;
  }
  .page-game-guides-slots-strategy__image-text-block-image {
    width: 100%;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .page-game-guides-slots-strategy__hero {
    padding: 60px 0;
  }
  .page-game-guides-slots-strategy__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides-slots-strategy__hero-description {
    font-size: 1.1em;
  }
  .page-game-guides-slots-strategy__section {
    padding: 40px 0;
  }
  .page-game-guides-slots-strategy__section-title {
    font-size: 1.8em;
  }
  .page-game-guides-slots-strategy__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides-slots-strategy__cta-button--large,
  .page-game-guides-slots-strategy__cta-button--secondary {
    padding: 15px 30px;
    font-size: 1.1em;
    margin: 5px;
  }
}

@media (max-width: 480px) {
  .page-game-guides-slots-strategy__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides-slots-strategy__hero-description {
    font-size: 1em;
  }
  .page-game-guides-slots-strategy__hero-cta {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-game-guides-slots-strategy__section-title {
    font-size: 1.5em;
  }
  .page-game-guides-slots-strategy__strategy-card {
    padding: 20px;
  }
  .page-game-guides-slots-strategy__card-title {
    font-size: 1.5em;
  }
  .page-game-guides-slots-strategy__cta-final p {
    font-size: 1em;
  }
  .page-game-guides-slots-strategy__cta-button--large,
  .page-game-guides-slots-strategy__cta-button--secondary {
    display: block;
    width: 90%;
    margin: 10px auto;
  }
  .page-game-guides-slots-strategy__faq-question {
    font-size: 1.1em;
  }
}