.page-slots-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #0A2342;
  line-height: 1.6;
}

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

.page-slots-games__brand-highlight {
  color: #FFD700;
}

.page-slots-games__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-slots-games__btn--primary {
  background-color: #FFD700;
  color: #0A2342;
  border: 2px solid #FFD700;
}

.page-slots-games__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-slots-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-slots-games__btn--detail {
  background-color: #54657b;
  color: #FFFFFF;
  border: 2px solid #54657b;
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-slots-games__btn--detail:hover {
  background-color: #6c7b8e;
  border-color: #6c7b8e;
}

.page-slots-games__btn--step {
  background-color: #FFD700;
  color: #0A2342;
  border: none;
  padding: 10px 20px;
  font-size: 0.95em;
  margin-top: 15px;
}

.page-slots-games__btn--step:hover {
  background-color: #e6c200;
}

.page-slots-games__section-title {
  font-size: 2.8em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-slots-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-slots-games__section-description {
  text-align: center;
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 60px;
}

/* Hero Section */
.page-slots-games__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #2A4A7A 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slots-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,subtle_pattern]');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-slots-games__hero-section .page-slots-games__container {
  position: relative;
  z-index: 1;
}

.page-slots-games__hero-title {
  font-size: 4em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-slots-games__hero-subtitle {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-games__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Intro Section */
.page-slots-games__intro-section {
  padding: 80px 0;
  background-color: #1A3A5A;
}

.page-slots-games__intro-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-slots-games__intro-content .page-slots-games__text-content {
  flex: 1;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-slots-games__intro-content .page-slots-games__text-content p {
  margin-bottom: 20px;
}

.page-slots-games__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-slots-games__image-wrapper .page-slots-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Game Types Section */
.page-slots-games__game-types-section {
  padding: 80px 0;
  background-color: #0A2342;
}

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

.page-slots-games__game-type-card {
  background-color: #1A3A5A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games__game-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.page-slots-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-slots-games__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-slots-games__card-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 20px;
  padding: 0 15px;
}

/* Why Choose Section */
.page-slots-games__why-choose-section {
  padding: 80px 0;
  background-color: #1A3A5A;
}

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

.page-slots-games__feature-item {
  background-color: #0A2342;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-slots-games__feature-item:hover {
  transform: translateY(-5px);
}

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

.page-slots-games__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

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

/* How To Start Section */
.page-slots-games__how-to-start-section {
  padding: 80px 0;
  background-color: #0A2342;
}

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

.page-slots-games__step-item {
  background-color: #1A3A5A;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.page-slots-games__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #0A2342;
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 25px;
  border: 4px solid #0A2342;
  box-shadow: 0 0 0 5px #FFD700;
}

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

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

/* FAQ Section */
.page-slots-games__faq-section {
  padding: 80px 0;
  background-color: #1A3A5A;
}

.page-slots-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-slots-games__faq-item {
  background-color: #0A2342;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-slots-games__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-slots-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-slots-games__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-slots-games__faq-answer {
  font-size: 1em;
  color: #B0B0B0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-slots-games__faq-answer.active {
  max-height: 200px; /* Adjust based on expected content length */
  margin-top: 15px;
}

/* CTA Section */
.page-slots-games__cta-section {
  padding: 80px 0;
  background-color: #0A2342;
  text-align: center;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slots-games__hero-title {
    font-size: 3.5em;
  }
  .page-slots-games__section-title {
    font-size: 2.5em;
  }
  .page-slots-games__intro-content {
    flex-direction: column;
  }
  .page-slots-games__image-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-slots-games__hero-title {
    font-size: 2.8em;
  }
  .page-slots-games__hero-subtitle {
    font-size: 1.2em;
  }
  .page-slots-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots-games__btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-slots-games__section-title {
    font-size: 2em;
  }
  .page-slots-games__game-types-grid,
  .page-slots-games__features-grid,
  .page-slots-games__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-slots-games__card-title,
  .page-slots-games__feature-title,
  .page-slots-games__step-title {
    font-size: 1.5em;
  }
  .page-slots-games__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-slots-games__hero-title {
    font-size: 2.2em;
  }
  .page-slots-games__hero-subtitle {
    font-size: 1em;
  }
  .page-slots-games__section-title {
    font-size: 1.8em;
  }
  .page-slots-games__btn {
    padding: 10px 20px;
  }
  .page-slots-games__step-number {
    width: 50px;
    height: 50px;
    font-size: 2em;
  }
}