/* style/blog-top-slot-games-2024.css */

/* Base styles for the page content, ensuring text contrast with body background */
.page-blog-top-slot-games-2024 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-blog-top-slot-games-2024__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding for hero section */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-top-slot-games-2024__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 700px;
}

.page-blog-top-slot-games-2024__hero-content {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Adjust to slightly overlap or sit below the image */
  background-color: rgba(8, 22, 15, 0.8); /* Background with transparency */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.page-blog-top-slot-games-2024__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-top-slot-games-2024__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-top-slot-games-2024__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-top-slot-games-2024__btn-primary,
.page-blog-top-slot-games-2024__btn-secondary {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-blog-top-slot-games-2024__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-top-slot-games-2024__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
}

.page-blog-top-slot-games-2024__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Button color for text */
  border: 2px solid #2AD16F;
}

.page-blog-top-slot-games-2024__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  color: #F2FFF6;
}

.page-blog-top-slot-games-2024__section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-blog-top-slot-games-2024__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-blog-top-slot-games-2024__section-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-blog-top-slot-games-2024__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-blog-top-slot-games-2024__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-blog-top-slot-games-2024__text-block {
  flex: 1;
  color: #F2FFF6; /* Text Main */
}

.page-blog-top-slot-games-2024__text-block p {
  margin-bottom: 15px;
}

.page-blog-top-slot-games-2024__sub-title {
  font-size: clamp(1.3em, 2.5vw, 1.8em);
  font-weight: 600;
  color: #2AD16F; /* Derived from Button Green */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-top-slot-games-2024__image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-blog-top-slot-games-2024__image--full-width {
  max-width: 100%;
  margin-top: 40px;
}

.page-blog-top-slot-games-2024__image--behind {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: 1200px;
  object-fit: cover;
  z-index: -1;
  opacity: 0.15;
  filter: grayscale(80%); /* Allowed for decorative background images */
}

.page-blog-top-slot-games-2024__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-top-slot-games-2024__card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #F2FFF6;
}

.page-blog-top-slot-games-2024__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-top-slot-games-2024__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-top-slot-games-2024__card-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-blog-top-slot-games-2024__card-text {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-top-slot-games-2024__card-link {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.page-blog-top-slot-games-2024__card-link:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-top-slot-games-2024__btn-text-link {
  color: #2AD16F; /* Button color for text */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.page-blog-top-slot-games-2024__btn-text-link:hover {
  color: #F2C14E; /* Gold */
}

.page-blog-top-slot-games-2024__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #F2FFF6;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-top-slot-games-2024__promo-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #2AD16F; /* Derived from Button Green */
  margin-bottom: 15px;
}

.page-blog-top-slot-games-2024__promo-text {
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-top-slot-games-2024__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-blog-top-slot-games-2024__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog-top-slot-games-2024__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  user-select: none;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-top-slot-games-2024__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-blog-top-slot-games-2024__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-blog-top-slot-games-2024__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #2AD16F;
}

.page-blog-top-slot-games-2024__faq-item[open] .page-blog-top-slot-games-2024__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-top-slot-games-2024__faq-answer {
  padding: 20px 25px;
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
}

/* Mobile responsiveness */
@media (max-width: 992px) {
  .page-blog-top-slot-games-2024__hero-content {
    margin-top: -50px;
    padding: 30px 15px;
  }
  
  .page-blog-top-slot-games-2024__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-blog-top-slot-games-2024__content-wrapper--reversed {
    flex-direction: column;
  }

  .page-blog-top-slot-games-2024__image {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

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

  .page-blog-top-slot-games-2024__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-top-slot-games-2024__main-title {
    font-size: 2.2em;
  }

  .page-blog-top-slot-games-2024__hero-description {
    font-size: 1em;
  }

  .page-blog-top-slot-games-2024__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-top-slot-games-2024__btn-primary,
  .page-blog-top-slot-games-2024__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin: 0 auto;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-top-slot-games-2024__section {
    padding: 40px 0;
  }

  .page-blog-top-slot-games-2024__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-top-slot-games-2024__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .page-blog-top-slot-games-2024__sub-title {
    font-size: 1.4em;
  }

  .page-blog-top-slot-games-2024__grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-top-slot-games-2024__card {
    padding: 25px;
  }

  .page-blog-top-slot-games-2024__card-image {
    height: 180px;
  }

  .page-blog-top-slot-games-2024__card-title {
    font-size: 1.3em;
  }

  .page-blog-top-slot-games-2024__promo-card {
    padding: 25px;
  }

  .page-blog-top-slot-games-2024__promo-title {
    font-size: 1.2em;
  }

  .page-blog-top-slot-games-2024__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-blog-top-slot-games-2024__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  /* Force responsive images and containers */
  .page-blog-top-slot-games-2024 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-top-slot-games-2024__hero-section,
  .page-blog-top-slot-games-2024__section,
  .page-blog-top-slot-games-2024__container,
  .page-blog-top-slot-games-2024__card,
  .page-blog-top-slot-games-2024__promo-card,
  .page-blog-top-slot-games-2024__faq-item,
  .page-blog-top-slot-games-2024__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-top-slot-games-2024__hero-section {
    padding-top: 10px !important;
  }

  .page-blog-top-slot-games-2024__faq-section .page-blog-top-slot-games-2024__image--behind {
    display: none !important;
  }
}