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

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

.page-slots-themes__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #1A3F87 100%); /* Gradient from main to a slightly lighter variant */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slots-themes__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue_gold_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-slots-themes__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  position: relative;
  z-index: 1;
}

.page-slots-themes__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-slots-themes__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-slots-themes__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-slots-themes__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #555;
}

.page-slots-themes__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, color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.page-slots-themes__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
}

.page-slots-themes__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-slots-themes__btn--secondary {
  background-color: #0A2463;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-slots-themes__btn--secondary:hover {
  background-color: #1a3f87;
  color: #fff;
  transform: translateY(-3px);
}

.page-slots-themes__btn--small {
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  background-color: #0A2463;
  color: #FFD700;
}

.page-slots-themes__btn--small:hover {
  background-color: #1a3f87;
  color: #fff;
  transform: translateY(-2px);
}

.page-slots-themes__why-choose-section,
.page-slots-themes__theme-categories,
.page-slots-themes__how-to-choose,
.page-slots-themes__tips-section,
.page-slots-themes__cta-section,
.page-slots-themes__faq-section,
.page-slots-themes__final-cta {
  padding: 80px 0;
}

.page-slots-themes__why-choose-section {
  background-color: #f8f8f8;
}

.page-slots-themes__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
  text-align: center;
}

.page-slots-themes__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-themes__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-slots-themes__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-slots-themes__feature-text {
  color: #666;
  font-size: 1em;
}

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

.page-slots-themes__category-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-slots-themes__category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.page-slots-themes__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-slots-themes__category-card h3 {
  padding: 20px 25px 0;
  font-size: 1.5em;
  color: #0A2463;
}

.page-slots-themes__category-card h3 a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slots-themes__category-card h3 a:hover {
  color: #FFD700;
}

.page-slots-themes__card-text {
  padding: 0 25px 20px;
  color: #666;
  flex-grow: 1;
}

.page-slots-themes__category-card .page-slots-themes__btn {
  margin: 0 25px 25px;
  align-self: flex-start;
}

.page-slots-themes__how-to-choose {
  background-color: #eef4f7;
}

.page-slots-themes__list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
}

.page-slots-themes__list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #444;
  border-left: 5px solid #FFD700;
}

.page-slots-themes__list li strong {
  color: #0A2463;
}

.page-slots-themes__tips-section {
  background-color: #f8f8f8;
}

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

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

.page-slots-themes__tip-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.page-slots-themes__tip-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 4px rgba(10, 36, 99, 0.5));
}

.page-slots-themes__tip-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-slots-themes__tip-text {
  color: #666;
}

.page-slots-themes__cta-section {
  background: linear-gradient(90deg, #0A2463 0%, #1a3f87 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-slots-themes__cta-section .page-slots-themes__section-title {
  color: #FFD700;
}

.page-slots-themes__cta-section .page-slots-themes__section-title::after {
  background-color: #fff;
}

.page-slots-themes__cta-section .page-slots-themes__section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

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

.page-slots-themes__small-text {
  font-size: 0.9em;
  margin-top: 30px;
  color: #cccccc;
}

.page-slots-themes__faq-section {
  background-color: #fff;
}

.page-slots-themes__faq-item {
  margin-bottom: 25px;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

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

.page-slots-themes__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
}

.page-slots-themes__faq-question.active::after {
  content: '-';
}

.page-slots-themes__faq-answer {
  font-size: 1.05em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-slots-themes__faq-answer.active {
  display: block;
}

.page-slots-themes__final-cta {
  background-color: #0A2463;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-slots-themes__final-cta .page-slots-themes__section-title {
  color: #FFD700;
}

.page-slots-themes__final-cta .page-slots-themes__section-title::after {
  background-color: #fff;
}

.page-slots-themes__final-cta .page-slots-themes__section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-slots-themes__hero-title {
    font-size: 2.8em;
  }
  .page-slots-themes__section-title {
    font-size: 2em;
  }
  .page-slots-themes__features-grid,
  .page-slots-themes__category-grid,
  .page-slots-themes__tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slots-themes__hero-section {
    padding: 80px 0;
  }
  .page-slots-themes__hero-title {
    font-size: 2.2em;
  }
  .page-slots-themes__hero-description {
    font-size: 1em;
  }
  .page-slots-themes__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-slots-themes__section-title {
    font-size: 1.8em;
  }
  .page-slots-themes__section-description {
    font-size: 0.95em;
  }
  .page-slots-themes__why-choose-section,
  .page-slots-themes__theme-categories,
  .page-slots-themes__how-to-choose,
  .page-slots-themes__tips-section,
  .page-slots-themes__cta-section,
  .page-slots-themes__faq-section,
  .page-slots-themes__final-cta {
    padding: 60px 0;
  }
  .page-slots-themes__features-grid,
  .page-slots-themes__category-grid,
  .page-slots-themes__tips-grid {
    grid-template-columns: 1fr;
  }
  .page-slots-themes__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots-themes__btn--primary,
  .page-slots-themes__btn--secondary {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-slots-themes__hero-section {
    padding: 60px 0;
  }
  .page-slots-themes__hero-title {
    font-size: 1.8em;
  }
  .page-slots-themes__hero-description {
    font-size: 0.9em;
  }
  .page-slots-themes__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-slots-themes__section-title {
    font-size: 1.5em;
  }
  .page-slots-themes__section-description {
    font-size: 0.9em;
  }
  .page-slots-themes__list li {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-slots-themes__faq-question {
    font-size: 1.2em;
  }
  .page-slots-themes__faq-answer {
    font-size: 0.95em;
  }
}