/* style/resources-88vin-game-strategy-slots.css */
.page-resources-88vin-game-strategy-slots {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark backgrounds */
  line-height: 1.6;
}

.page-resources-88vin-game-strategy-slots__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-88vin-game-strategy-slots__hero-section {
  background: linear-gradient(135deg, #FFD700, #1A1A2E); /* Gold to Dark Blue */
  padding: 100px 0;
  text-align: center;
  color: #1A1A2E; /* Dark text on light background */
}

.page-resources-88vin-game-strategy-slots__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #1A1A2E; /* Dark text on gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-88vin-game-strategy-slots__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #333333; /* Slightly darker text for contrast */
}

/* CTA Button */
.page-resources-88vin-game-strategy-slots__cta-button {
  display: inline-block;
  background-color: #1A1A2E; /* Dark blue background */
  color: #FFD700; /* Gold text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-resources-88vin-game-strategy-slots__cta-button:hover {
  background-color: #FFD700; /* Gold background on hover */
  color: #1A1A2E; /* Dark blue text on hover */
  border-color: #1A1A2E;
}

.page-resources-88vin-game-strategy-slots__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-resources-88vin-game-strategy-slots__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-resources-88vin-game-strategy-slots__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 20px;
}

/* Content Sections */
.page-resources-88vin-game-strategy-slots__content-section {
  padding: 60px 0;
}

.page-resources-88vin-game-strategy-slots__bg-dark {
  background-color: #1A1A2E;
  color: #E0E0E0; /* Light gray text on dark blue */
}

.page-resources-88vin-game-strategy-slots__bg-light {
  background-color: #2e2e4a; /* Slightly lighter dark blue for contrast */
  color: #F0F0F0; /* Lighter gray text on dark background */
}

.page-resources-88vin-game-strategy-slots__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-88vin-game-strategy-slots__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-resources-88vin-game-strategy-slots__subsection-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for subtitles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-88vin-game-strategy-slots__content-section p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-resources-88vin-game-strategy-slots__content-section ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-resources-88vin-game-strategy-slots__content-section ul li {
  margin-bottom: 10px;
}

/* Images */
.page-resources-88vin-game-strategy-slots__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-resources-88vin-game-strategy-slots__image--left {
  float: left;
  margin-right: 30px;
  width: 40%;
}

.page-resources-88vin-game-strategy-slots__image--right {
  float: right;
  margin-left: 30px;
  width: 40%;
}

.page-resources-88vin-game-strategy-slots__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
}

.page-resources-88vin-game-strategy-slots__content-section::after {
  content: "";
  display: table;
  clear: both;
}

/* CTA Section */
.page-resources-88vin-game-strategy-slots__cta-section {
  text-align: center;
  padding: 80px 0;
}

.page-resources-88vin-game-strategy-slots__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* FAQ Section */
.page-resources-88vin-game-strategy-slots__faq-section {
  padding: 60px 0;
}

.page-resources-88vin-game-strategy-slots__faq-item {
  background-color: #1A1A2E;
  border: 1px solid #FFD700;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-88vin-game-strategy-slots__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-resources-88vin-game-strategy-slots__faq-answer {
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-resources-88vin-game-strategy-slots__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-resources-88vin-game-strategy-slots__faq-answer a:hover {
  color: #F0F0F0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-88vin-game-strategy-slots__hero-title {
    font-size: 2.8em;
  }
  .page-resources-88vin-game-strategy-slots__hero-subtitle {
    font-size: 1.2em;
  }
  .page-resources-88vin-game-strategy-slots__section-title {
    font-size: 2em;
  }
  .page-resources-88vin-game-strategy-slots__subsection-title {
    font-size: 1.5em;
  }
  .page-resources-88vin-game-strategy-slots__image--left,
  .page-resources-88vin-game-strategy-slots__image--right {
    float: none;
    margin: 20px auto;
    width: 80%;
    display: block;
  }
  .page-resources-88vin-game-strategy-slots__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-88vin-game-strategy-slots__cta-button--secondary {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .page-resources-88vin-game-strategy-slots__hero-section {
    padding: 80px 0;
  }
  .page-resources-88vin-game-strategy-slots__hero-title {
    font-size: 2.2em;
  }
  .page-resources-88vin-game-strategy-slots__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-88vin-game-strategy-slots__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-88vin-game-strategy-slots__section-title {
    font-size: 1.8em;
  }
  .page-resources-88vin-game-strategy-slots__subsection-title {
    font-size: 1.3em;
  }
  .page-resources-88vin-game-strategy-slots__image--center {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .page-resources-88vin-game-strategy-slots__hero-section {
    padding: 60px 0;
  }
  .page-resources-88vin-game-strategy-slots__hero-title {
    font-size: 1.8em;
  }
  .page-resources-88vin-game-strategy-slots__hero-subtitle {
    font-size: 0.9em;
  }
  .page-resources-88vin-game-strategy-slots__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-resources-88vin-game-strategy-slots__section-title {
    font-size: 1.5em;
  }
  .page-resources-88vin-game-strategy-slots__subsection-title {
    font-size: 1.2em;
  }
  .page-resources-88vin-game-strategy-slots__content-section p,
  .page-resources-88vin-game-strategy-slots__content-section ul li,
  .page-resources-88vin-game-strategy-slots__faq-answer {
    font-size: 0.95em;
  }
  .page-resources-88vin-game-strategy-slots__faq-question {
    font-size: 1.1em;
  }
  .page-resources-88vin-game-strategy-slots__image--center {
    width: 100%;
  }
}