/* style/games-slots.css */
.page-games-slots {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-games-slots__bg-dark {
  background-color: #0A2463;
  color: #F8F8F8;
}

.page-games-slots__bg-light {
  background-color: #F8F8F8;
  color: #333;
}

.page-games-slots__bg-primary {
  background-color: #0A2463;
  color: #F8F8F8;
}

/* Hero Section */
.page-games-slots__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A2463 0%, #0A2463 60%, #E3B23C 100%);
  color: #F8F8F8;
  position: relative;
  overflow: hidden;
}

.page-games-slots__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-games-slots__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E3B23C;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-slots__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-games-slots__hero-btn {
  display: inline-block;
  background-color: #E3B23C;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  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-games-slots__hero-btn:hover {
  background-color: #f0c96e;
  transform: translateY(-3px);
}

.page-games-slots__hero-image-wrapper {
  position: absolute;
  bottom: -20px;
  right: -50px;
  width: 400px;
  height: 400px;
  opacity: 0.2;
  z-index: 0;
}

.page-games-slots__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(15deg);
}

/* General Sections */
.page-games-slots__intro-section, .page-games-slots__guide-section, .page-games-slots__promo-section, .page-games-slots__safety-section, .page-games-slots__faq-section {
  padding: 60px 0;
}

.page-games-slots__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #0A2463;
}

.page-games-slots__bg-dark .page-games-slots__section-title {
  color: #E3B23C;
}

.page-games-slots__intro-section p, .page-games-slots__safety-section p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 20px auto;
  text-align: justify;
}

/* Features Section */
.page-games-slots__features-section {
  padding: 80px 0;
}

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

.page-games-slots__feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(227, 178, 60, 0.3);
}

.page-games-slots__feature-item:hover {
  transform: translateY(-10px);
  background-color: rgba(227, 178, 60, 0.1);
}

.page-games-slots__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #E3B23C);
}

.page-games-slots__feature-heading {
  font-size: 1.5em;
  color: #E3B23C;
  margin-bottom: 15px;
}

.page-games-slots__feature-item p {
  font-size: 1em;
  color: #F8F8F8;
  text-align: center;
}

/* Guide Section */
.page-games-slots__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-games-slots__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-games-slots__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0A2463;
  color: #E3B23C;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #E3B23C;
}

.page-games-slots__step-heading {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-games-slots__step-item p {
  font-size: 1em;
  color: #555;
  text-align: justify;
}

.page-games-slots__cta-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
}

.page-games-slots__cta-text a {
  color: #0A2463;
  font-weight: bold;
  text-decoration: none;
}

.page-games-slots__cta-text a:hover {
  text-decoration: underline;
  color: #E3B23C;
}

/* Button Styles */
.page-games-slots__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.page-games-slots__btn--primary {
  background-color: #E3B23C;
  color: #0A2463;
}

.page-games-slots__btn--primary:hover {
  background-color: #f0c96e;
  transform: translateY(-3px);
}

.page-games-slots__btn--secondary {
  background-color: #0A2463;
  color: #E3B23C;
  border: 1px solid #E3B23C;
}

.page-games-slots__btn--secondary:hover {
  background-color: #06173d;
  transform: translateY(-3px);
}

.page-games-slots__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Types Section */
.page-games-slots__types-section {
  padding: 60px 0;
}

.page-games-slots__type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-games-slots__type-card {
  background-color: #FFFFFF;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.page-games-slots__type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-games-slots__type-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-games-slots__type-heading {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-games-slots__type-card p {
  font-size: 0.95em;
  color: #666;
  text-align: justify;
}

/* Tips Section */
.page-games-slots__tips-section {
  padding: 80px 0;
}

.page-games-slots__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-games-slots__tips-list li {
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #E3B23C;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.page-games-slots__tips-list li:hover {
  background-color: rgba(227, 178, 60, 0.1);
}

.page-games-slots__list-heading {
  font-size: 1.4em;
  color: #E3B23C;
  margin-bottom: 10px;
}

.page-games-slots__tips-list p {
  color: #F8F8F8;
  font-size: 1em;
  text-align: justify;
}

/* Promo Section */
.page-games-slots__promo-section {
  padding: 80px 0;
  background-color: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-games-slots__promo-content {
  max-width: 600px;
  text-align: center;
  margin-bottom: 40px;
}

.page-games-slots__promo-section .page-games-slots__section-title {
  color: #0A2463;
}

.page-games-slots__promo-section p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
}

.page-games-slots__promo-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}

/* App Section */
.page-games-slots__app-section {
  padding: 80px 0;
}

.page-games-slots__app-layout {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-games-slots__app-content {
  flex: 1;
}

.page-games-slots__app-content .page-games-slots__section-title {
  text-align: left;
  color: #E3B23C;
}

.page-games-slots__app-content p {
  color: #F8F8F8;
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-games-slots__app-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-games-slots__app-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-games-slots__faq-section {
  padding: 60px 0;
}

.page-games-slots__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-games-slots__faq-question {
  font-size: 1.2em;
  color: #0A2463;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-games-slots__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #E3B23C;
}

.page-games-slots__faq-question.active::after {
  content: '-';
}

.page-games-slots__faq-answer {
  font-size: 1em;
  color: #666;
  margin-top: 10px;
  display: none; /* Hidden by default */
  text-align: justify;
}

.page-games-slots__faq-answer.active {
  display: block;
}

/* Final CTA Section */
.page-games-slots__cta-final {
  padding: 80px 20px;
  text-align: center;
}

.page-games-slots__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-games-slots__cta-title {
  font-size: 3em;
  color: #E3B23C;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-games-slots__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #F8F8F8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-games-slots__hero-title {
    font-size: 3em;
  }
  .page-games-slots__hero-image-wrapper {
    width: 300px;
    height: 300px;
    bottom: -10px;
    right: -30px;
  }
  .page-games-slots__app-layout {
    flex-direction: column;
    text-align: center;
  }
  .page-games-slots__app-content .page-games-slots__section-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-games-slots__hero-title {
    font-size: 2.5em;
  }
  .page-games-slots__hero-description {
    font-size: 1em;
  }
  .page-games-slots__hero-section {
    padding: 60px 15px;
  }
  .page-games-slots__hero-image-wrapper {
    display: none; /* Hide image on smaller screens */
  }
  .page-games-slots__section-title {
    font-size: 2em;
  }
  .page-games-slots__feature-item, .page-games-slots__step-item, .page-games-slots__type-card {
    padding: 20px;
  }
  .page-games-slots__cta-title {
    font-size: 2.2em;
  }
  .page-games-slots__cta-description {
    font-size: 1em;
  }
  .page-games-slots__promo-content {
    margin-bottom: 20px;
  }
  .page-games-slots__promo-image {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .page-games-slots__hero-title {
    font-size: 2em;
  }
  .page-games-slots__hero-btn {
    padding: 12px 25px;
    font-size: 0.95em;
  }
  .page-games-slots__section-title {
    font-size: 1.8em;
  }
  .page-games-slots__feature-heading, .page-games-slots__step-heading, .page-games-slots__type-heading, .page-games-slots__list-heading {
    font-size: 1.2em;
  }
  .page-games-slots__cta-title {
    font-size: 1.8em;
  }
  .page-games-slots__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-games-slots__app-image {
    max-width: 300px;
  }
}