/* style/resources-top-slot-games-2024.css */
.page-resources-top-slot-games-2024 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Body background from shared.css */
}

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

.page-resources-top-slot-games-2024__hero-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #1a1a1a; /* Darker background for hero */
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  overflow: hidden;
}

.page-resources-top-slot-games-2024__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.page-resources-top-slot-games-2024__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #26A9E0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-resources-top-slot-games-2024__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-resources-top-slot-games-2024__cta-button {
  display: inline-block;
  background-color: #EA7C07; /* Login color for CTA */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.page-resources-top-slot-games-2024__cta-button:hover {
  background-color: #d16b06;
}

.page-resources-top-slot-games-2024__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-resources-top-slot-games-2024__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
  color: #f0f0f0;
}

.page-resources-top-slot-games-2024__content-area, 
.page-resources-top-slot-games-2024__top-games-section,
.page-resources-top-slot-games-2024__strategy-section,
.page-resources-top-slot-games-2024__benefits-section,
.page-resources-top-slot-games-2024__faq-section,
.page-resources-top-slot-games-2024__conclusion-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.page-resources-top-slot-games-2024__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-resources-top-slot-games-2024__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-top-slot-games-2024__criteria-grid,
.page-resources-top-slot-games-2024__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-top-slot-games-2024__card,
.page-resources-top-slot-games-2024__benefit-card {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-top-slot-games-2024__card:hover,
.page-resources-top-slot-games-2024__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-top-slot-games-2024__card-title,
.page-resources-top-slot-games-2024__benefit-title {
  color: #26A9E0;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-resources-top-slot-games-2024__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-resources-top-slot-games-2024__game-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources-top-slot-games-2024__game-card:hover {
  transform: translateY(-10px);
}

.page-resources-top-slot-games-2024__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-resources-top-slot-games-2024__game-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-top-slot-games-2024__game-title {
  color: #26A9E0;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-resources-top-slot-games-2024__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
}

.page-resources-top-slot-games-2024__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-top-slot-games-2024__strategy-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-resources-top-slot-games-2024__strategy-list li {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-resources-top-slot-games-2024__list-item-title {
  color: #26A9E0;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-resources-top-slot-games-2024__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-top-slot-games-2024__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-top-slot-games-2024__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #26A9E0;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-top-slot-games-2024__faq-question:hover {
  background-color: #2087b3;
}

.page-resources-top-slot-games-2024__faq-question h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1em; /* Adjust to fit parent font size */
}

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

.page-resources-top-slot-games-2024__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-resources-top-slot-games-2024__faq-item.active .page-resources-top-slot-games-2024__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 15px 25px;
}

.page-resources-top-slot-games-2024__faq-item.active .page-resources-top-slot-games-2024__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-top-slot-games-2024__conclusion-section {
  text-align: center;
}

/* Image responsiveness */
.page-resources-top-slot-games-2024 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

  .page-resources-top-slot-games-2024__hero-section {
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px) !important;
  }

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

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

  .page-resources-top-slot-games-2024__section-title {
    font-size: 2em;
    padding-top: 40px;
  }

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

  .page-resources-top-slot-games-2024__content-area,
  .page-resources-top-slot-games-2024__top-games-section,
  .page-resources-top-slot-games-2024__strategy-section,
  .page-resources-top-slot-games-2024__benefits-section,
  .page-resources-top-slot-games-2024__faq-section,
  .page-resources-top-slot-games-2024__conclusion-section {
    padding: 50px 0;
  }

  .page-resources-top-slot-games-2024__container {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .page-resources-top-slot-games-2024__criteria-grid,
  .page-resources-top-slot-games-2024__benefits-grid,
  .page-resources-top-slot-games-2024__game-list,
  .page-resources-top-slot-games-2024__strategy-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-top-slot-games-2024__card,
  .page-resources-top-slot-games-2024__benefit-card,
  .page-resources-top-slot-games-2024__game-card,
  .page-resources-top-slot-games-2024__strategy-list li,
  .page-resources-top-slot-games-2024__faq-item {
    padding: 20px;
  }

  .page-resources-top-slot-games-2024__game-image {
    height: 200px;
  }

  .page-resources-top-slot-games-2024__game-info {
    padding: 20px;
  }

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

  .page-resources-top-slot-games-2024__faq-answer {
    padding: 0 20px;
  }

  .page-resources-top-slot-games-2024__faq-item.active .page-resources-top-slot-games-2024__faq-answer {
    padding: 15px 20px;
  }

  /* Force responsiveness for images */
  .page-resources-top-slot-games-2024 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Force responsiveness for buttons */
  .page-resources-top-slot-games-2024__cta-button,
  .page-resources-top-slot-games-2024__btn-primary,
  .page-resources-top-slot-games-2024__btn-secondary,
  .page-resources-top-slot-games-2024 a[class*="button"],
  .page-resources-top-slot-games-2024 a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-resources-top-slot-games-2024__cta-buttons,
  .page-resources-top-slot-games-2024__button-group,
  .page-resources-top-slot-games-2024__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}