.page-resources-understanding-online-slots {
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
}

.page-resources-understanding-online-slots__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-resources-understanding-online-slots__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Darken image for text readability, not changing color */
}

.page-resources-understanding-online-slots__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  color: #FFFFFF; /* White text for dark overlay */
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent dark background for text */
  border-radius: 10px;
}

.page-resources-understanding-online-slots__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFFFFF;
}

.page-resources-understanding-online-slots__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-resources-understanding-online-slots__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for bright button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-understanding-online-slots__hero-button:hover {
  background-color: #E0A73C;
}

.page-resources-understanding-online-slots__table-of-contents {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background-color: #F8F8F8;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-understanding-online-slots__toc-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}

.page-resources-understanding-online-slots__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}

.page-resources-understanding-online-slots__toc-list li {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-resources-understanding-online-slots__toc-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-understanding-online-slots__toc-link {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  font-size: 1.1em;
}

.page-resources-understanding-online-slots__toc-link:hover {
  color: #FCBC45;
}

.page-resources-understanding-online-slots__article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.page-resources-understanding-online-slots__section {
  margin-bottom: 50px;
}

.page-resources-understanding-online-slots__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 25px;
  border-bottom: 3px solid #FCBC45;
  padding-bottom: 10px;
}

.page-resources-understanding-online-slots__article-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-understanding-online-slots__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-resources-understanding-online-slots__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
}

.page-resources-understanding-online-slots__ordered-list {
  list-style: decimal inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-resources-understanding-online-slots__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
}

.page-resources-understanding-online-slots__image-figure {
  margin: 40px 0;
  text-align: center;
}

.page-resources-understanding-online-slots__article-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: block;
  margin: 0 auto;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-resources-understanding-online-slots__image-caption {
  font-style: italic;
  color: #666666;
  margin-top: 15px;
  font-size: 0.95em;
}

.page-resources-understanding-online-slots__blockquote {
  background-color: #F0F8FF;
  border-left: 5px solid #FCBC45;
  padding: 20px 30px;
  margin: 40px 0;
  font-style: italic;
  font-size: 1.2em;
  color: #333333;
  border-radius: 5px;
}

.page-resources-understanding-online-slots__blockquote::before {
  content: '“';
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.4em;
  margin-right: 5px;
  color: #FCBC45;
}

.page-resources-understanding-online-slots__read-more-link {
  display: inline-block;
  color: #000000;
  background-color: #FCBC45;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-resources-understanding-online-slots__read-more-link:hover {
  background-color: #E0A73C;
}

.page-resources-understanding-online-slots__call-to-action {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-resources-understanding-online-slots__call-to-action-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-resources-understanding-online-slots__call-to-action-button:first-of-type {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-resources-understanding-online-slots__call-to-action-button:first-of-type:hover {
  background-color: #E0A73C;
  transform: translateY(-2px);
}

.page-resources-understanding-online-slots__call-to-action-button--login {
  background-color: #000000; /* Main color for a secondary action */
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

.page-resources-understanding-online-slots__call-to-action-button--login:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-resources-understanding-online-slots__related-resources {
  margin-top: 80px;
  border-top: 1px solid #E0E0E0;
  padding-top: 40px;
}

.page-resources-understanding-online-slots__resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-understanding-online-slots__resource-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 450px; /* Ensure consistent card height */
  display: flex;
  flex-direction: column;
}

.page-resources-understanding-online-slots__resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-understanding-online-slots__resource-image {
  width: 100%;
  height: 250px; /* Fixed height for consistent image size in cards */
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-resources-understanding-online-slots__resource-card-title {
  font-size: 1.4em;
  color: #000000;
  padding: 15px 20px 0;
  margin-bottom: 10px;
}

.page-resources-understanding-online-slots__resource-card-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.page-resources-understanding-online-slots__resource-card-title a:hover {
  color: #FCBC45;
}

.page-resources-understanding-online-slots__resource-card-description {
  font-size: 1em;
  color: #555555;
  padding: 0 20px;
  flex-grow: 1;
}

.page-resources-understanding-online-slots__resource-card-link {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  padding: 15px 20px;
  transition: color 0.3s ease;
}

.page-resources-understanding-online-slots__resource-card-link:hover {
  color: #E0A73C;
}

.page-resources-understanding-online-slots__back-to-resources {
  text-align: center;
  margin-top: 50px;
}

.page-resources-understanding-online-slots__back-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-understanding-online-slots__back-button:hover {
  background-color: #E0A73C;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-resources-understanding-online-slots__hero-title {
    font-size: 2.8em;
  }

  .page-resources-understanding-online-slots__hero-description {
    font-size: 1.1em;
  }

  .page-resources-understanding-online-slots__section-title {
    font-size: 2em;
  }

  .page-resources-understanding-online-slots__article-content p,
  .page-resources-understanding-online-slots__list li,
  .page-resources-understanding-online-slots__ordered-list li {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-resources-understanding-online-slots__hero-section {
    min-height: 400px;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header on mobile */
  }

  .page-resources-understanding-online-slots__hero-title {
    font-size: 2.2em;
  }

  .page-resources-understanding-online-slots__hero-description {
    font-size: 1em;
  }

  .page-resources-understanding-online-slots__table-of-contents {
    margin: 30px auto;
    padding: 20px;
  }

  .page-resources-understanding-online-slots__toc-title {
    font-size: 1.8em;
  }

  .page-resources-understanding-online-slots__toc-list {
    grid-template-columns: 1fr;
  }

  .page-resources-understanding-online-slots__article-content {
    padding: 15px;
  }

  .page-resources-understanding-online-slots__section-title {
    font-size: 1.8em;
  }

  .page-resources-understanding-online-slots__article-image,
  .page-resources-understanding-online-slots__resource-image {
    max-width: 100%;
    height: auto; /* Ensure images scale down on mobile */
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
  }

  /* Ensure all images within content area are responsive and not too small */
  .page-resources-understanding-online-slots img {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-resources-understanding-online-slots__blockquote {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-resources-understanding-online-slots__call-to-action {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-understanding-online-slots__call-to-action-button {
    width: 100%;
    box-sizing: border-box;
  }

  .page-resources-understanding-online-slots__resource-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-resources-understanding-online-slots__hero-title {
    font-size: 1.8em;
  }

  .page-resources-understanding-online-slots__hero-description {
    font-size: 0.9em;
  }

  .page-resources-understanding-online-slots__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-understanding-online-slots__section-title {
    font-size: 1.5em;
  }

  .page-resources-understanding-online-slots__call-to-action-button {
    font-size: 1.1em;
    padding: 15px 25px;
  }

  .page-resources-understanding-online-slots__back-button {
    font-size: 1em;
    padding: 10px 20px;
  }
}