.page-slot-games-wheel-of-fortune-intro {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;

  font-family: 'Arial', sans-serif;
  color: var(--text-main-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

.page-slot-games-wheel-of-fortune-intro__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-slot-games-wheel-of-fortune-intro__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Rely on body for --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  color: var(--text-main-color);
}

.page-slot-games-wheel-of-fortune-intro__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-slot-games-wheel-of-fortune-intro__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-slot-games-wheel-of-fortune-intro__hero-content {
  max-width: 900px;
  padding: 0 15px;
}

.page-slot-games-wheel-of-fortune-intro__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-slot-games-wheel-of-fortune-intro__description {
  font-size: 1.1em;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

.page-slot-games-wheel-of-fortune-intro__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-slot-games-wheel-of-fortune-intro__btn-primary,
.page-slot-games-wheel-of-fortune-intro__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-slot-games-wheel-of-fortune-intro__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-slot-games-wheel-of-fortune-intro__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
  transform: translateY(-2px);
}

.page-slot-games-wheel-of-fortune-intro__btn-secondary {
  background: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

.page-slot-games-wheel-of-fortune-intro__btn-secondary:hover {
  background: var(--gold-color);
  color: var(--background-color);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
  transform: translateY(-2px);
}

.page-slot-games-wheel-of-fortune-intro__section {
  padding: 60px 0;
  border-top: 1px solid var(--divider-color);
}

.page-slot-games-wheel-of-fortune-intro__section-title {
  font-size: 2.5em;
  color: var(--text-main-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-slot-games-wheel-of-fortune-intro__text-block {
  font-size: 1.05em;
  color: var(--text-secondary-color);
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games-wheel-of-fortune-intro__text-block a {
  color: var(--gold-color);
  text-decoration: none;
  font-weight: 600;
}

.page-slot-games-wheel-of-fortune-intro__text-block a:hover {
  text-decoration: underline;
}

.page-slot-games-wheel-of-fortune-intro__card-section {
  background-color: var(--background-color);
}

.page-slot-games-wheel-of-fortune-intro__features-grid,
.page-slot-games-wheel-of-fortune-intro__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-slot-games-wheel-of-fortune-intro__card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  color: var(--text-main-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games-wheel-of-fortune-intro__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-slot-games-wheel-of-fortune-intro__card-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-slot-games-wheel-of-fortune-intro__card-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games-wheel-of-fortune-intro__card-text {
  font-size: 0.95em;
  color: var(--text-secondary-color);
  text-align: justify;
  flex-grow: 1;
}

.page-slot-games-wheel-of-fortune-intro__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-slot-games-wheel-of-fortune-intro__step {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  color: var(--text-main-color);
}

.page-slot-games-wheel-of-fortune-intro__step-title {
  font-size: 1.8em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games-wheel-of-fortune-intro__step-text {
  font-size: 1em;
  color: var(--text-secondary-color);
  text-align: justify;
}

.page-slot-games-wheel-of-fortune-intro__faq-section {
  background-color: var(--background-color);
}

.page-slot-games-wheel-of-fortune-intro__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-slot-games-wheel-of-fortune-intro__faq-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-main-color);
}

.page-slot-games-wheel-of-fortune-intro__faq-item[open] {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games-wheel-of-fortune-intro__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: var(--gold-color);
  user-select: none;
  list-style: none;
}

.page-slot-games-wheel-of-fortune-intro__faq-question::-webkit-details-marker {
  display: none;
}

.page-slot-games-wheel-of-fortune-intro__faq-qtext {
  flex-grow: 1;
}

.page-slot-games-wheel-of-fortune-intro__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-slot-games-wheel-of-fortune-intro__faq-item[open] .page-slot-games-wheel-of-fortune-intro__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games-wheel-of-fortune-intro__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: var(--text-secondary-color);
  text-align: justify;
}

.page-slot-games-wheel-of-fortune-intro__conclusion {
  text-align: center;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-slot-games-wheel-of-fortune-intro__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-slot-games-wheel-of-fortune-intro__section-title {
    font-size: 2em;
  }

  .page-slot-games-wheel-of-fortune-intro__card-title {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-wheel-of-fortune-intro__hero-section {
    padding-bottom: 40px;
  }

  .page-slot-games-wheel-of-fortune-intro__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-slot-games-wheel-of-fortune-intro__description {
    font-size: 1em;
  }

  .page-slot-games-wheel-of-fortune-intro__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games-wheel-of-fortune-intro__btn-primary,
  .page-slot-games-wheel-of-fortune-intro__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.9em !important;
  }

  .page-slot-games-wheel-of-fortune-intro__section {
    padding: 40px 0;
  }

  .page-slot-games-wheel-of-fortune-intro__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-slot-games-wheel-of-fortune-intro__text-block,
  .page-slot-games-wheel-of-fortune-intro__card-text,
  .page-slot-games-wheel-of-fortune-intro__step-text,
  .page-slot-games-wheel-of-fortune-intro__faq-answer p {
    font-size: 0.95em;
  }

  .page-slot-games-wheel-of-fortune-intro__features-grid,
  .page-slot-games-wheel-of-fortune-intro__strategy-grid {
    grid-template-columns: 1fr;
  }

  .page-slot-games-wheel-of-fortune-intro__card,
  .page-slot-games-wheel-of-fortune-intro__step {
    padding: 25px;
  }

  .page-slot-games-wheel-of-fortune-intro__card-image {
    max-width: 250px;
  }

  .page-slot-games-wheel-of-fortune-intro__step-title {
    font-size: 1.5em;
  }

  .page-slot-games-wheel-of-fortune-intro__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-slot-games-wheel-of-fortune-intro img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-slot-games-wheel-of-fortune-intro__hero-image-wrapper,
  .page-slot-games-wheel-of-fortune-intro__container,
  .page-slot-games-wheel-of-fortune-intro__section,
  .page-slot-games-wheel-of-fortune-intro__card,
  .page-slot-games-wheel-of-fortune-intro__step,
  .page-slot-games-wheel-of-fortune-intro__faq-item,
  .page-slot-games-wheel-of-fortune-intro__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-slot-games-wheel-of-fortune-intro__hero-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-slot-games-wheel-of-fortune-intro__hero-section {
    padding-bottom: 30px;
  }

  .page-slot-games-wheel-of-fortune-intro__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }

  .page-slot-games-wheel-of-fortune-intro__section-title {
    font-size: 1.5em;
    margin-bottom: 25px;
  }

  .page-slot-games-wheel-of-fortune-intro__step-title {
    font-size: 1.3em;
  }
}