/* style/games-center-slot-games.css */
.page-games-center-slot-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark blue background */
}

.page-games-center-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-games-center-slot-games__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A192F, #1F304A);
  position: relative;
  overflow: hidden;
}

.page-games-center-slot-games__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_geometric_pattern,dark_blue_gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-games-center-slot-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-games-center-slot-games__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold accent for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-center-slot-games__hero-subtitle {
  font-size: 1.4em;
  color: #C0C0C0; /* Lighter gray for subtitle */
  margin-bottom: 40px;
}

.page-games-center-slot-games__hero-image-wrapper {
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 400px;
  height: 400px;
  opacity: 0.3;
  z-index: 0;
  transform: rotate(15deg);
  display: none; /* Hidden on small screens */
}

.page-games-center-slot-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-games-center-slot-games__section {
  padding: 60px 0;
  background-color: #1A2A40; /* Slightly lighter dark blue for sections */
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-games-center-slot-games__section:nth-child(even) {
  background-color: #0A192F;
}

.page-games-center-slot-games__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold accent for section titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-games-center-slot-games__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-games-center-slot-games__text-content strong {
  color: #FFD700;
}

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

.page-games-center-slot-games__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark text on gold */
  border: none;
}

.page-games-center-slot-games__btn--primary:hover {
  background-color: #E0B500;
  transform: translateY(-2px);
}

.page-games-center-slot-games__btn--secondary {
  background-color: #1F304A; /* Darker blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
}

.page-games-center-slot-games__btn--secondary:hover {
  background-color: #0A192F;
  transform: translateY(-2px);
}

.page-games-center-slot-games__btn--ghost {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-games-center-slot-games__btn--ghost:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-games-center-slot-games__btn--inline {
  padding: 8px 15px;
  font-size: 0.9em;
  margin-top: 10px;
}

.page-games-center-slot-games__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-games-center-slot-games__features-grid,
.page-games-center-slot-games__type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-games-center-slot-games__feature-item,
.page-games-center-slot-games__type-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-center-slot-games__feature-item:hover,
.page-games-center-slot-games__type-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-games-center-slot-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(80%) saturate(2000%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Make icons gold */
}

.page-games-center-slot-games__feature-item h3,
.page-games-center-slot-games__type-item h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-games-center-slot-games__feature-item p,
.page-games-center-slot-games__type-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #C0C0C0;
}

.page-games-center-slot-games__type-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid #FFD700;
}

.page-games-center-slot-games__ordered-list,
.page-games-center-slot-games__unordered-list {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
  font-size: 1.1em;
  line-height: 1.8;
  color: #E0E0E0;
}

.page-games-center-slot-games__ordered-list li,
.page-games-center-slot-games__unordered-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-games-center-slot-games__ordered-list li::before {
  content: counter(list-item) ". ";
  counter-increment: list-item;
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.page-games-center-slot-games__unordered-list li::before {
  content: '▶';
  color: #FFD700;
  font-size: 0.8em;
  position: absolute;
  left: 0;
  top: 5px;
}

.page-games-center-slot-games__image-full-width {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700;
}

.page-games-center-slot-games__faq-accordion {
  margin-top: 30px;
}

.page-games-center-slot-games__faq-item {
  background-color: #1F304A;
  border: 1px solid #FFD700;
  border-radius: 5px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-games-center-slot-games__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px;
  cursor: pointer;
  margin: 0;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-games-center-slot-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-games-center-slot-games__faq-item.active .page-games-center-slot-games__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-games-center-slot-games__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #0A192F;
  color: #C0C0C0;
}

.page-games-center-slot-games__faq-item.active .page-games-center-slot-games__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 20px;
}

.page-games-center-slot-games__faq-answer p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-games-center-slot-games__cta-final {
  text-align: center;
  padding: 80px 20px;
  background-color: #1F304A;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-games-center-slot-games__cta-final-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-games-center-slot-games__cta-final .page-games-center-slot-games__section-title {
  color: #FFD700;
  margin-bottom: 25px;
}

.page-games-center-slot-games__cta-final .page-games-center-slot-games__text-content {
  max-width: 700px;
  margin-bottom: 40px;
  font-size: 1.2em;
}

.page-games-center-slot-games__cta-final .page-games-center-slot-games__btn {
  margin: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-games-center-slot-games__hero-title {
    font-size: 2.8em;
  }

  .page-games-center-slot-games__hero-subtitle {
    font-size: 1.2em;
  }

  .page-games-center-slot-games__section-title {
    font-size: 2em;
  }

  .page-games-center-slot-games__hero-image-wrapper {
    display: none;
  }
}

@media (max-width: 768px) {
  .page-games-center-slot-games__hero {
    padding: 60px 15px;
  }

  .page-games-center-slot-games__hero-title {
    font-size: 2.2em;
  }

  .page-games-center-slot-games__hero-subtitle {
    font-size: 1em;
  }

  .page-games-center-slot-games__section {
    padding: 40px 0;
  }

  .page-games-center-slot-games__section-title {
    font-size: 1.8em;
  }

  .page-games-center-slot-games__text-content,
  .page-games-center-slot-games__ordered-list,
  .page-games-center-slot-games__unordered-list {
    font-size: 1em;
  }

  .page-games-center-slot-games__features-grid,
  .page-games-center-slot-games__type-grid {
    grid-template-columns: 1fr;
  }

  .page-games-center-slot-games__feature-item,
  .page-games-center-slot-games__type-item {
    padding: 25px;
  }

  .page-games-center-slot-games__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-games-center-slot-games__faq-question::after {
    right: 15px;
  }

  .page-games-center-slot-games__faq-item.active .page-games-center-slot-games__faq-answer {
    padding: 15px;
  }

  .page-games-center-slot-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-games-center-slot-games__cta-final .page-games-center-slot-games__btn {
    margin: 5px;
  }
}

@media (max-width: 480px) {
  .page-games-center-slot-games__hero-title {
    font-size: 1.8em;
  }

  .page-games-center-slot-games__hero-subtitle {
    font-size: 0.9em;
  }

  .page-games-center-slot-games__section-title {
    font-size: 1.5em;
  }

  .page-games-center-slot-games__btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .page-games-center-slot-games__cta-final-content {
    flex-direction: column;
  }

  .page-games-center-slot-games__cta-final .page-games-center-slot-games__btn {
    width: auto;
    margin: 5px 0;
  }
}