/* style/slots-latest-theme-games.css */
.page-slots-latest-theme-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for main text */
  background-color: #1A202C; /* Main dark background */
}

.page-slots-latest-theme-games .highlight {
  color: #E53E3E;
}

.page-slots-latest-theme-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slots-latest-theme-games__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a0000 100%); /* Dark gradient for hero */
  padding: 100px 0;
  text-align: center;
  border-bottom: 2px solid #E53E3E;
}

.page-slots-latest-theme-games__main-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots-latest-theme-games__subtitle {
  font-size: 1.5em;
  color: #B0B0B0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-latest-theme-games__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-slots-latest-theme-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-slots-latest-theme-games__btn--primary {
  background-color: #E53E3E; /* Auxiliary red */
  color: #FFFFFF;
}

.page-slots-latest-theme-games__btn--primary:hover {
  background-color: #c02b2b;
  transform: translateY(-3px);
}

.page-slots-latest-theme-games__btn--secondary {
  background-color: transparent;
  color: #E53E3E;
  border: 2px solid #E53E3E;
}

.page-slots-latest-theme-games__btn--secondary:hover {
  background-color: #E53E3E;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.page-slots-latest-theme-games__section-title {
  font-size: 2.5em;
  color: #FFFFFF;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}

.page-slots-latest-theme-games__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-slots-latest-theme-games__featured-games {
  padding: 60px 0;
  background-color: #1A202C;
}

.page-slots-latest-theme-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-slots-latest-theme-games__game-card {
  background-color: #2D3748; /* Slightly lighter dark */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-latest-theme-games__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-slots-latest-theme-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #E53E3E;
}

.page-slots-latest-theme-games__game-title {
  font-size: 1.6em;
  color: #FFFFFF;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-slots-latest-theme-games__game-description {
  font-size: 0.95em;
  color: #B0B0B0;
  margin-bottom: 25px;
  padding: 0 15px;
}

.page-slots-latest-theme-games__game-btn {
  display: inline-block;
  background-color: #E53E3E;
  color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-slots-latest-theme-games__game-btn:hover {
  background-color: #c02b2b;
}

.page-slots-latest-theme-games__why-choose {
  padding: 80px 0;
  background-color: #2D3748; /* Lighter dark background */
}

.page-slots-latest-theme-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-slots-latest-theme-games__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #1A202C;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slots-latest-theme-games__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #E53E3E);
}

.page-slots-latest-theme-games__feature-title {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-slots-latest-theme-games__feature-description {
  font-size: 1em;
  color: #B0B0B0;
}

.page-slots-latest-theme-games__inline-link {
  color: #E53E3E;
  text-decoration: none;
  font-weight: bold;
}

.page-slots-latest-theme-games__inline-link:hover {
  text-decoration: underline;
}

.page-slots-latest-theme-games__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-slots-latest-theme-games__gameplay-guide {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-slots-latest-theme-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-slots-latest-theme-games__step-item {
  background-color: #2D3748;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-slots-latest-theme-games__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E53E3E;
  color: #FFFFFF;
  font-size: 2.2em;
  font-weight: bold;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #1A202C;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-slots-latest-theme-games__step-title {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-slots-latest-theme-games__step-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 25px;
}

.page-slots-latest-theme-games__step-btn {
  display: inline-block;
  background-color: #E53E3E;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-slots-latest-theme-games__step-btn:hover {
  background-color: #c02b2b;
}

.page-slots-latest-theme-games__faq {
  padding: 80px 0;
  background-color: #2D3748;
}

.page-slots-latest-theme-games__accordion-item {
  background-color: #1A202C;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-slots-latest-theme-games__accordion-header {
  width: 100%;
  background-color: #E53E3E;
  color: #FFFFFF;
  padding: 20px 25px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  padding-right: 50px; /* Space for arrow */
}

.page-slots-latest-theme-games__accordion-header:hover {
  background-color: #c02b2b;
}

.page-slots-latest-theme-games__accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-slots-latest-theme-games__accordion-header.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-slots-latest-theme-games__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #2D3748;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  color: #B0B0B0;
}

.page-slots-latest-theme-games__accordion-content.active {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-slots-latest-theme-games__accordion-content p {
  margin: 0;
  font-size: 1em;
}

.page-slots-latest-theme-games__cta-final {
  padding: 80px 0;
  background-color: #1A202C;
  text-align: center;
  border-top: 2px solid #E53E3E;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots-latest-theme-games__main-title {
    font-size: 2.8em;
  }
  .page-slots-latest-theme-games__subtitle {
    font-size: 1.3em;
  }
  .page-slots-latest-theme-games__section-title {
    font-size: 2em;
  }
  .page-slots-latest-theme-games__game-grid,
  .page-slots-latest-theme-games__features-grid,
  .page-slots-latest-theme-games__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slots-latest-theme-games__hero-section {
    padding: 80px 0;
  }
  .page-slots-latest-theme-games__main-title {
    font-size: 2.2em;
  }
  .page-slots-latest-theme-games__subtitle {
    font-size: 1.1em;
  }
  .page-slots-latest-theme-games__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots-latest-theme-games__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-slots-latest-theme-games__section-title {
    font-size: 1.8em;
  }
  .page-slots-latest-theme-games__game-card,
  .page-slots-latest-theme-games__feature-item,
  .page-slots-latest-theme-games__step-item {
    padding: 25px;
  }
  .page-slots-latest-theme-games__step-number {
    font-size: 1.8em;
    width: 50px;
    height: 50px;
    top: -15px;
  }
  .page-slots-latest-theme-games__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-slots-latest-theme-games__accordion-content {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-slots-latest-theme-games__main-title {
    font-size: 1.8em;
  }
  .page-slots-latest-theme-games__subtitle {
    font-size: 1em;
  }
  .page-slots-latest-theme-games__section-title {
    font-size: 1.5em;
  }
  .page-slots-latest-theme-games__btn {
    width: 90%;
  }
}