/* style/blog-understanding-online-slots.css */
.page-blog-understanding-online-slots {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-blog-understanding-online-slots__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 400px;
  padding: 0;
}

.page-blog-understanding-online-slots__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-blog-understanding-online-slots__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(26, 32, 44, 0.7); /* Main color with transparency */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-understanding-online-slots__main-title {
  font-size: 3em;
  color: #FFD700; /* Accent color for title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-understanding-online-slots__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-blog-understanding-online-slots__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-blog-understanding-online-slots__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-blog-understanding-online-slots__button--primary {
  background-color: #FFD700; /* Accent color */
  color: #1A202C; /* Main color */
}

.page-blog-understanding-online-slots__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-blog-understanding-online-slots__button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-blog-understanding-online-slots__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-blog-understanding-online-slots__content-area {
  max-width: 1000px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #1A202C; /* Main color for content background */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-understanding-online-slots__article {
  line-height: 1.8;
}

.page-blog-understanding-online-slots__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-understanding-online-slots__sub-section-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 35px;
  margin-bottom: 15px;
}

.page-blog-understanding-online-slots__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-blog-understanding-online-slots__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-blog-understanding-online-slots__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-understanding-online-slots__list-item strong {
  color: #FFD700;
}

.page-blog-understanding-online-slots__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-blog-understanding-online-slots__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-understanding-online-slots__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-blog-understanding-online-slots__link:hover {
  text-decoration: underline;
}

.page-blog-understanding-online-slots__cta-banner {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-understanding-online-slots__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-blog-understanding-online-slots__cta-content {
  position: relative;
  z-index: 2;
  background: rgba(26, 32, 44, 0.85); /* Main color with higher transparency */
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 700px;
}

.page-blog-understanding-online-slots__cta-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-blog-understanding-online-slots__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-blog-understanding-online-slots__button--cta {
  background-color: #FFD700;
  color: #1A202C;
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-blog-understanding-online-slots__button--cta:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-understanding-online-slots__main-title {
    font-size: 2.2em;
  }

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

  .page-blog-understanding-online-slots__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-understanding-online-slots__button {
    width: 80%;
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 1em;
  }

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

  .page-blog-understanding-online-slots__sub-section-title {
    font-size: 1.5em;
  }

  .page-blog-understanding-online-slots__paragraph,
  .page-blog-understanding-online-slots__list-item {
    font-size: 1em;
  }

  .page-blog-understanding-online-slots__content-image,
  .page-blog-understanding-online-slots__cta-image {
    max-width: 100%;
    height: auto;
  }

  .page-blog-understanding-online-slots__cta-title {
    font-size: 1.8em;
  }

  .page-blog-understanding-online-slots__cta-description {
    font-size: 1em;
  }

  .page-blog-understanding-online-slots__button--cta {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  /* Ensure content area images do not overflow */
  .page-blog-understanding-online-slots__content-area img {
    max-width: 100%;
    height: auto;
  }

  .page-blog-understanding-online-slots {
    overflow-x: hidden;
  }
}