.page-blog-slot-beginner-guide {
  color: #ffffff; /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-blog-slot-beginner-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-slot-beginner-guide__hero-section {
  background-color: #1A202C;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-blog-slot-beginner-guide__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-blog-slot-beginner-guide__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-slot-beginner-guide__hero-description {
  font-size: 1.4em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-slot-beginner-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-blog-slot-beginner-guide__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: brightness(0.7); /* Darken for text readability, not changing color */
  transform: scale(1.05);
}

.page-blog-slot-beginner-guide__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.page-blog-slot-beginner-guide__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-blog-slot-beginner-guide__cta-button--secondary {
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-blog-slot-beginner-guide__cta-button--secondary:hover {
  background-color: #333d4d;
  color: #FFD700;
}

.page-blog-slot-beginner-guide__cta-button--download {
  background-color: #007bff; /* A standard blue for download, good contrast */
  color: #ffffff;
}

.page-blog-slot-beginner-guide__cta-button--download:hover {
  background-color: #0056b3;
}

.page-blog-slot-beginner-guide__introduction-section,
.page-blog-slot-beginner-guide__basics-section,
.page-blog-slot-beginner-guide__getting-started-section,
.page-blog-slot-beginner-guide__strategies-section,
.page-blog-slot-beginner-guide__bonuses-section,
.page-blog-slot-beginner-guide__responsible-gaming-section,
.page-blog-slot-beginner-guide__mobile-section,
.page-blog-slot-beginner-guide__faq-section,
.page-blog-slot-beginner-guide__conclusion-section {
  padding: 60px 0;
  background-color: #0F1217; /* Match body background */
}

.page-blog-slot-beginner-guide__introduction-section,
.page-blog-slot-beginner-guide__getting-started-section,
.page-blog-slot-beginner-guide__bonuses-section,
.page-blog-slot-beginner-guide__mobile-section,
.page-blog-slot-beginner-guide__conclusion-section {
  background-color: #1A202C; /* Alternate sections for visual break */
}

.page-blog-slot-beginner-guide__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-blog-slot-beginner-guide__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-blog-slot-beginner-guide__text-content strong {
  color: #FFD700;
}

.page-blog-slot-beginner-guide__image-wrapper {
  margin: 40px auto;
  text-align: center;
}

.page-blog-slot-beginner-guide__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-slot-beginner-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-slot-beginner-guide__card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-blog-slot-beginner-guide__card:hover {
  transform: translateY(-5px);
}

.page-blog-slot-beginner-guide__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-blog-slot-beginner-guide__card-text {
  font-size: 1em;
  color: #cccccc;
}

.page-blog-slot-beginner-guide__numbered-list,
.page-blog-slot-beginner-guide__bullet-list,
.page-blog-slot-beginner-guide__bonus-list {
  list-style: none;
  padding: 0;
  margin-left: 20px;
}

.page-blog-slot-beginner-guide__numbered-list li,
.page-blog-slot-beginner-guide__bullet-list li,
.page-blog-slot-beginner-guide__bonus-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #e0e0e0;
  position: relative;
  padding-left: 30px;
}

.page-blog-slot-beginner-guide__numbered-list li strong {
  color: #FFD700;
}

.page-blog-slot-beginner-guide__numbered-list li::before {
  content: counter(list-item) ". ";
  counter-increment: list-item;
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-blog-slot-beginner-guide__bullet-list li::before,
.page-blog-slot-beginner-guide__bonus-list li::before {
  content: '•';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

.page-blog-slot-beginner-guide__inline-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-slot-beginner-guide__inline-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-blog-slot-beginner-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.page-blog-slot-beginner-guide__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-blog-slot-beginner-guide__faq-answer {
  font-size: 1em;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-slot-beginner-guide__hero-title {
    font-size: 2.5em;
  }

  .page-blog-slot-beginner-guide__hero-description {
    font-size: 1.2em;
  }

  .page-blog-slot-beginner-guide__section-title {
    font-size: 2em;
  }

  .page-blog-slot-beginner-guide__grid {
    grid-template-columns: 1fr;
  }

  .page-blog-slot-beginner-guide__text-content,
  .page-blog-slot-beginner-guide__numbered-list li,
  .page-blog-slot-beginner-guide__bullet-list li,
  .page-blog-slot-beginner-guide__bonus-list li {
    font-size: 1em;
  }

  .page-blog-slot-beginner-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  /* Mobile content overflow prevention */
  .page-blog-slot-beginner-guide img {
    max-width: 100%;
    height: auto;
  }

  .page-blog-slot-beginner-guide__image-wrapper--mobile {
    margin: 20px auto;
  }
}

@media (max-width: 480px) {
  .page-blog-slot-beginner-guide__hero-title {
    font-size: 2em;
  }

  .page-blog-slot-beginner-guide__hero-description {
    font-size: 1em;
  }

  .page-blog-slot-beginner-guide__section-title {
    font-size: 1.8em;
  }

  .page-blog-slot-beginner-guide__card-title {
    font-size: 1.4em;
  }
}