/* style/blog-2024-hot-slot-games-recommendation.css */

/* Base styles for the page content, assuming body has a dark background from shared.css */
.page-blog-2024-hot-slot-games-recommendation {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for the first section, body handles --header-offset */
}

.page-blog-2024-hot-slot-games-recommendation__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-2024-hot-slot-games-recommendation__section {
  padding: 60px 0;
}

.page-blog-2024-hot-slot-games-recommendation__section-title {
  color: #F2FFF6; /* Text Main */
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 1.2;
}

.page-blog-2024-hot-slot-games-recommendation__text-block {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-blog-2024-hot-slot-games-recommendation__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 60px; /* Space below content */
}

.page-blog-2024-hot-slot-games-recommendation__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for aesthetic */
  overflow: hidden;
  position: relative;
}

.page-blog-2024-hot-slot-games-recommendation__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-2024-hot-slot-games-recommendation__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly with image for visual flow, but not on top of image itself */
  background-color: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-2024-hot-slot-games-recommendation__main-title {
  color: #F2FFF6; /* Text Main */
  font-weight: 800;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(87, 227, 141, 0.6); /* Glow */
}

.page-blog-2024-hot-slot-games-recommendation__description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-2024-hot-slot-games-recommendation__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.page-blog-2024-hot-slot-games-recommendation__btn-primary,
.page-blog-2024-hot-slot-games-recommendation__btn-secondary,
.page-blog-2024-hot-slot-games-recommendation__floating-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-2024-hot-slot-games-recommendation__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-blog-2024-hot-slot-games-recommendation__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.4);
}

.page-blog-2024-hot-slot-games-recommendation__btn-secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-blog-2024-hot-slot-games-recommendation__btn-secondary:hover {
  transform: translateY(-3px);
  background-color: rgba(42, 209, 111, 0.1);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.2);
}

/* Why Choose 8xx Section */
.page-blog-2024-hot-slot-games-recommendation__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-blog-2024-hot-slot-games-recommendation__feature-item {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease;
}

.page-blog-2024-hot-slot-games-recommendation__feature-item:hover {
  transform: translateY(-5px);
}

.page-blog-2024-hot-slot-games-recommendation__feature-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-blog-2024-hot-slot-games-recommendation__feature-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

/* Top Slots Section */
.page-blog-2024-hot-slot-games-recommendation__slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-2024-hot-slot-games-recommendation__slot-card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease;
}

.page-blog-2024-hot-slot-games-recommendation__slot-card:hover {
  transform: translateY(-5px);
}

.page-blog-2024-hot-slot-games-recommendation__slot-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-2024-hot-slot-games-recommendation__slot-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.3rem;
  padding: 15px;
  font-weight: 700;
}

.page-blog-2024-hot-slot-games-recommendation__slot-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
}

.page-blog-2024-hot-slot-games-recommendation__slot-title a:hover {
  color: #2AD16F; /* Button primary color on hover */
}

.page-blog-2024-hot-slot-games-recommendation__slot-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
  padding: 0 15px 20px;
}

.page-blog-2024-hot-slot-games-recommendation__view-all-button-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* How to Play Section */
.page-blog-2024-hot-slot-games-recommendation__step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
}

.page-blog-2024-hot-slot-games-recommendation__step-item {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 25px 30px;
  margin-bottom: 20px;
  border: 1px solid #2E7A4E; /* Border */
  position: relative;
  padding-left: 80px;
}

.page-blog-2024-hot-slot-games-recommendation__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-2024-hot-slot-games-recommendation__step-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-blog-2024-hot-slot-games-recommendation__step-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

.page-blog-2024-hot-slot-games-recommendation__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Promotions Section */
.page-blog-2024-hot-slot-games-recommendation__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-2024-hot-slot-games-recommendation__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease;
}

.page-blog-2024-hot-slot-games-recommendation__promo-card:hover {
  transform: translateY(-5px);
}

.page-blog-2024-hot-slot-games-recommendation__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-2024-hot-slot-games-recommendation__promo-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.3rem;
  padding: 15px;
  font-weight: 700;
}

.page-blog-2024-hot-slot-games-recommendation__promo-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
}

.page-blog-2024-hot-slot-games-recommendation__promo-title a:hover {
  color: #2AD16F; /* Button primary color on hover */
}

.page-blog-2024-hot-slot-games-recommendation__promo-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
  padding: 0 15px 20px;
}

/* Mobile Gaming Section */
.page-blog-2024-hot-slot-games-recommendation__mobile-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-blog-2024-hot-slot-games-recommendation__mobile-text {
  flex: 1;
  min-width: 300px;
}

.page-blog-2024-hot-slot-games-recommendation__mobile-image {
  flex-shrink: 0;
  width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Border */
}

/* FAQ Section */
.page-blog-2024-hot-slot-games-recommendation__faq-list {
  margin-top: 40px;
}

.page-blog-2024-hot-slot-games-recommendation__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  margin-bottom: 15px;
  border: 1px solid #2E7A4E; /* Border */
  overflow: hidden;
}

.page-blog-2024-hot-slot-games-recommendation__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #F2FFF6; /* Text Main */
  font-weight: 600;
  font-size: 1.15rem;
  position: relative;
}

.page-blog-2024-hot-slot-games-recommendation__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-2024-hot-slot-games-recommendation__faq-qtext {
  flex-grow: 1;
}

.page-blog-2024-hot-slot-games-recommendation__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 20px;
  color: #2AD16F;
}

.page-blog-2024-hot-slot-games-recommendation__faq-answer {
  color: #A7D9B8; /* Text Secondary */
  padding: 0 25px 20px;
  font-size: 1rem;
}

.page-blog-2024-hot-slot-games-recommendation__faq-answer p {
  margin-bottom: 0;
}

/* Call to Action Section */
.page-blog-2024-hot-slot-games-recommendation__call-to-action {
  text-align: center;
  padding-bottom: 80px;
}

/* Floating CTA Button */
.page-blog-2024-hot-slot-games-recommendation__floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.page-blog-2024-hot-slot-games-recommendation__floating-btn {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-blog-2024-hot-slot-games-recommendation__floating-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(42, 209, 111, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-2024-hot-slot-games-recommendation__hero-content {
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .page-blog-2024-hot-slot-games-recommendation {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-2024-hot-slot-games-recommendation__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
    padding-bottom: 40px;
  }

  .page-blog-2024-hot-slot-games-recommendation__hero-content {
    margin-top: -60px;
    padding: 15px;
    border-radius: 10px;
  }

  .page-blog-2024-hot-slot-games-recommendation__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-2024-hot-slot-games-recommendation__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-blog-2024-hot-slot-games-recommendation__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-2024-hot-slot-games-recommendation__btn-primary,
  .page-blog-2024-hot-slot-games-recommendation__btn-secondary,
  .page-blog-2024-hot-slot-games-recommendation__floating-btn {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-2024-hot-slot-games-recommendation__section {
    padding: 40px 0;
  }

  .page-blog-2024-hot-slot-games-recommendation__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

  .page-blog-2024-hot-slot-games-recommendation__text-block {
    font-size: 1rem;
  }

  .page-blog-2024-hot-slot-games-recommendation__feature-list,
  .page-blog-2024-hot-slot-games-recommendation__slot-grid,
  .page-blog-2024-hot-slot-games-recommendation__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-2024-hot-slot-games-recommendation__slot-card,
  .page-blog-2024-hot-slot-games-recommendation__promo-card,
  .page-blog-2024-hot-slot-games-recommendation__feature-item {
    border-radius: 10px;
    padding: 20px;
  }

  .page-blog-2024-hot-slot-games-recommendation__slot-image,
  .page-blog-2024-hot-slot-games-recommendation__promo-image {
    height: 180px;
  }

  .page-blog-2024-hot-slot-games-recommendation__step-item {
    padding-left: 60px;
  }

  .page-blog-2024-hot-slot-games-recommendation__step-item::before {
    left: 20px;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .page-blog-2024-hot-slot-games-recommendation__mobile-content {
    flex-direction: column;
  }

  .page-blog-2024-hot-slot-games-recommendation__mobile-image {
    width: 100%;
    max-width: 300px; /* Constrain image width on small screens */
    height: auto;
  }

  .page-blog-2024-hot-slot-games-recommendation__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-2024-hot-slot-games-recommendation__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9rem;
  }

  /* Mobile image and container responsiveness */
  .page-blog-2024-hot-slot-games-recommendation img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-2024-hot-slot-games-recommendation__section,
  .page-blog-2024-hot-slot-games-recommendation__card,
  .page-blog-2024-hot-slot-games-recommendation__container,
  .page-blog-2024-hot-slot-games-recommendation__hero-image-wrapper,
  .page-blog-2024-hot-slot-games-recommendation__slot-card,
  .page-blog-2024-hot-slot-games-recommendation__promo-card,
  .page-blog-2024-hot-slot-games-recommendation__mobile-content,
  .page-blog-2024-hot-slot-games-recommendation__mobile-text {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-2024-hot-slot-games-recommendation__floating-cta {
    bottom: 15px;
    right: 15px;
  }

  .page-blog-2024-hot-slot-games-recommendation__floating-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: auto !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .page-blog-2024-hot-slot-games-recommendation__hero-content {
    margin-top: -40px;
  }

  .page-blog-2024-hot-slot-games-recommendation__main-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .page-blog-2024-hot-slot-games-recommendation__cta-group {
    gap: 10px;
  }
}