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

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #0a0a0a;
  --login-color: #EA7C07;
}

/* Base styles for the page content, ensuring contrast with dark body background */
.page-blog-2024-top-slot-games-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: transparent; /* Body handles its own background */
}

/* Ensure main content sections have appropriate background/text for contrast */
.page-blog-2024-top-slot-games-guide__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-blog-2024-top-slot-games-guide__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

/* Hero Section */
.page-blog-2024-top-slot-games-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
}

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

.page-blog-2024-top-slot-games-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-2024-top-slot-games-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-2024-top-slot-games-guide__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-blog-2024-top-slot-games-guide__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

/* Content Area */
.page-blog-2024-top-slot-games-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-blog-2024-top-slot-games-guide__content-area:last-of-type {
  border-bottom: none;
}

.page-blog-2024-top-slot-games-guide__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary-color);
}

.page-blog-2024-top-slot-games-guide__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-blog-2024-top-slot-games-guide p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.page-blog-2024-top-slot-games-guide__list,
.page-blog-2024-top-slot-games-guide__list-ordered {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1rem;
}

.page-blog-2024-top-slot-games-guide__list-ordered {
  list-style-type: decimal;
}

.page-blog-2024-top-slot-games-guide__list li,
.page-blog-2024-top-slot-games-guide__list-ordered li {
  margin-bottom: 10px;
}

.page-blog-2024-top-slot-games-guide__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Card Grid */
.page-blog-2024-top-slot-games-guide__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-blog-2024-top-slot-games-guide__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark bg */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light); /* Light text for dark bg */
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-2024-top-slot-games-guide__light-bg .page-blog-2024-top-slot-games-guide__card {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

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

.page-blog-2024-top-slot-games-guide__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Game Card List */
.page-blog-2024-top-slot-games-guide__game-card-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-blog-2024-top-slot-games-guide__game-card {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.page-blog-2024-top-slot-games-guide__game-card:hover {
  transform: translateY(-8px);
}

.page-blog-2024-top-slot-games-guide__game-image {
  width: 100%;
  height: 300px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-blog-2024-top-slot-games-guide__game-info {
  padding: 25px;
  color: var(--text-light);
}

.page-blog-2024-top-slot-games-guide__game-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-blog-2024-top-slot-games-guide__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
  margin-top: 15px;
}

/* CTA Buttons */
.page-blog-2024-top-slot-games-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-blog-2024-top-slot-games-guide__btn-primary,
.page-blog-2024-top-slot-games-guide__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  width: auto; /* Allow natural width */
  text-align: center;
}

.page-blog-2024-top-slot-games-guide__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-blog-2024-top-slot-games-guide__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
  transform: translateY(-3px);
}

.page-blog-2024-top-slot-games-guide__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-2024-top-slot-games-guide__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
}

/* Promotion Section */
.page-blog-2024-top-slot-games-guide__promotion-section {
  text-align: center;
}

/* FAQ Section */
.page-blog-2024-top-slot-games-guide__faq-section {
  padding-bottom: 80px;
}

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

.page-blog-2024-top-slot-games-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.page-blog-2024-top-slot-games-guide__faq-item[open] {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-blog-2024-top-slot-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-light);
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease;
  list-style: none; /* Remove default marker */
}

.page-blog-2024-top-slot-games-guide__faq-item[open] .page-blog-2024-top-slot-games-guide__faq-question {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.page-blog-2024-top-slot-games-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-blog-2024-top-slot-games-guide__faq-qtext {
  flex-grow: 1;
  color: var(--primary-color);
}

.page-blog-2024-top-slot-games-guide__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--primary-color);
  font-weight: 300;
}

.page-blog-2024-top-slot-games-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-light);
}

/* Remove default details marker */
.page-blog-2024-top-slot-games-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-2024-top-slot-games-guide__faq-item summary::marker {
  display: none;
}

/* Conclusion Section */
.page-blog-2024-top-slot-games-guide__conclusion-section {
  text-align: center;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-blog-2024-top-slot-games-guide__game-card {
    flex-direction: row;
    align-items: center;
  }

  .page-blog-2024-top-slot-games-guide__game-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .page-blog-2024-top-slot-games-guide__game-image {
    width: 40%;
    height: 300px;
  }

  .page-blog-2024-top-slot-games-guide__game-info {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .page-blog-2024-top-slot-games-guide__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-2024-top-slot-games-guide__hero-content {
    padding: 0 15px;
  }

  .page-blog-2024-top-slot-games-guide__main-title {
    font-size: 2rem;
  }

  .page-blog-2024-top-slot-games-guide__description {
    font-size: 1rem;
  }

  .page-blog-2024-top-slot-games-guide__content-area {
    padding: 40px 15px;
  }

  .page-blog-2024-top-slot-games-guide__section-title {
    font-size: 2rem;
  }

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

  .page-blog-2024-top-slot-games-guide p,
  .page-blog-2024-top-slot-games-guide__list li,
  .page-blog-2024-top-slot-games-guide__list-ordered li,
  .page-blog-2024-top-slot-games-guide__faq-answer {
    font-size: 0.95rem;
  }

  .page-blog-2024-top-slot-games-guide__card-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-2024-top-slot-games-guide__game-card {
    flex-direction: column;
  }

  .page-blog-2024-top-slot-games-guide__game-image {
    height: 200px;
  }

  .page-blog-2024-top-slot-games-guide__game-info {
    padding: 20px;
  }

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

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

  .page-blog-2024-top-slot-games-guide__btn-primary,
  .page-blog-2024-top-slot-games-guide__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-2024-top-slot-games-guide__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-2024-top-slot-games-guide__faq-toggle {
    font-size: 1.5rem;
  }

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

  .page-blog-2024-top-slot-games-guide__section,
  .page-blog-2024-top-slot-games-guide__card,
  .page-blog-2024-top-slot-games-guide__container,
  .page-blog-2024-top-slot-games-guide__hero-image-wrapper,
  .page-blog-2024-top-slot-games-guide__game-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  /* Override padding for specific elements that already have it */
  .page-blog-2024-top-slot-games-guide__content-area,
  .page-blog-2024-top-slot-games-guide__promotion-section,
  .page-blog-2024-top-slot-games-guide__faq-section,
  .page-blog-2024-top-slot-games-guide__conclusion-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-2024-top-slot-games-guide__hero-section {
    padding-top: 10px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-blog-2024-top-slot-games-guide__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .page-blog-2024-top-slot-games-guide__cta-buttons {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .page-blog-2024-top-slot-games-guide__faq-list {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}