/* style/resources-slot-games-beginners-guide.css */
.page-resources-slot-games-beginners-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-resources-slot-games-beginners-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-slot-games-beginners-guide__hero-section {
  background: linear-gradient(135deg, #017439, #004d2a);
  color: #ffffff;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-resources-slot-games-beginners-guide__hero-content {
  flex: 1;
  padding-right: 40px;
}

.page-resources-slot-games-beginners-guide__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.page-resources-slot-games-beginners-guide__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-slot-games-beginners-guide__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFF00;
}

.page-resources-slot-games-beginners-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-slot-games-beginners-guide__cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.page-resources-slot-games-beginners-guide__btn-primary,
.page-resources-slot-games-beginners-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-resources-slot-games-beginners-guide__btn-primary {
  background-color: #C30808;
  color: #FFFF00;
  border: 2px solid #C30808;
}

.page-resources-slot-games-beginners-guide__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-resources-slot-games-beginners-guide__btn-secondary {
  background-color: transparent;
  color: #FFFF00;
  border: 2px solid #FFFF00;
}

.page-resources-slot-games-beginners-guide__btn-secondary:hover {
  background-color: #FFFF00;
  color: #C30808;
}

/* Content Area */
.page-resources-slot-games-beginners-guide__content-area {
  background-color: #ffffff;
  color: #333333;
  padding: 60px 0;
}

.page-resources-slot-games-beginners-guide__section-title {
  font-size: 2.2em;
  color: #017439;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-slot-games-beginners-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
  text-align: justify;
}

.page-resources-slot-games-beginners-guide__list,
.page-resources-slot-games-beginners-guide__ordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-slot-games-beginners-guide__ordered-list {
  list-style-type: decimal;
}

.page-resources-slot-games-beginners-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-slot-games-beginners-guide__list-item strong {
  color: #017439;
}

.page-resources-slot-games-beginners-guide__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-resources-slot-games-beginners-guide__faq-list {
  margin-top: 30px;
}

.page-resources-slot-games-beginners-guide__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-slot-games-beginners-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #017439;
  cursor: pointer;
  background-color: #e8f5e9;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.page-resources-slot-games-beginners-guide__faq-question:hover {
  background-color: #dcedc8;
}

.page-resources-slot-games-beginners-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-resources-slot-games-beginners-guide__faq-item[open] .page-resources-slot-games-beginners-guide__faq-toggle {
  transform: rotate(0deg);
}

.page-resources-slot-games-beginners-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1.05em;
  color: #555555;
}

.page-resources-slot-games-beginners-guide__faq-answer p {
  margin: 0;
  color: #555555;
}

.page-resources-slot-games-beginners-guide__cta-buttons--bottom {
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Dark background for sections if needed */
.page-resources-slot-games-beginners-guide__dark-bg {
  color: #ffffff;
}

.page-resources-slot-games-beginners-guide__light-bg {
  color: #333333;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-slot-games-beginners-guide__hero-section {
    flex-direction: column;
    text-align: center;
    padding-bottom: 40px;
  }

  .page-resources-slot-games-beginners-guide__hero-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .page-resources-slot-games-beginners-guide__hero-image-wrapper {
    justify-content: center;
  }

  .page-resources-slot-games-beginners-guide__main-title {
    font-size: 2.5em;
  }

  .page-resources-slot-games-beginners-guide__hero-description {
    font-size: 1.1em;
  }

  .page-resources-slot-games-beginners-guide__section-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-resources-slot-games-beginners-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-slot-games-beginners-guide__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-slot-games-beginners-guide__container,
  .page-resources-slot-games-beginners-guide__hero-content,
  .page-resources-slot-games-beginners-guide__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-slot-games-beginners-guide__main-title {
    font-size: 2em;
  }

  .page-resources-slot-games-beginners-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-slot-games-beginners-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-resources-slot-games-beginners-guide__btn-primary,
  .page-resources-slot-games-beginners-guide__btn-secondary,
  .page-resources-slot-games-beginners-guide a[class*="button"],
  .page-resources-slot-games-beginners-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-slot-games-beginners-guide__content-image,
  .page-resources-slot-games-beginners-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-resources-slot-games-beginners-guide__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-resources-slot-games-beginners-guide__faq-answer {
    padding: 15px 20px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-resources-slot-games-beginners-guide__main-title {
    font-size: 1.8em;
  }

  .page-resources-slot-games-beginners-guide__section-title {
    font-size: 1.5em;
  }
}