/* style/resources-slots-selection.css */

/* Variables */
:root {
  --page-resources-slots-selection-primary-color: #004AAD;
  --page-resources-slots-selection-accent-color: #FFD700;
  --page-resources-slots-selection-text-dark: #222222;
  --page-resources-slots-selection-text-light: #FFFFFF;
  --page-resources-slots-selection-background-light: #f5f5f5;
  --page-resources-slots-selection-background-dark: #003380; /* Darker variant of primary for contrast */
}

.page-resources-slots-selection {
  font-family: 'Arial', sans-serif;
  color: var(--page-resources-slots-selection-text-dark);
  line-height: 1.6;
}

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

/* Hero Section */
.page-resources-slots-selection__hero {
  background: linear-gradient(135deg, var(--page-resources-slots-selection-primary-color), var(--page-resources-slots-selection-background-dark));
  color: var(--page-resources-slots-selection-text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-resources-slots-selection__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.page-resources-slots-selection__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-resources-slots-selection__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: var(--page-resources-slots-selection-text-light);
}

.page-resources-slots-selection__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0; /* Slightly lighter for readability */
}

.page-resources-slots-selection__hero-subtitle a {
  color: var(--page-resources-slots-selection-accent-color);
  text-decoration: underline;
}

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

.page-resources-slots-selection__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-resources-slots-selection__btn--primary {
  background-color: var(--page-resources-slots-selection-accent-color);
  color: var(--page-resources-slots-selection-primary-color);
}

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

.page-resources-slots-selection__btn--secondary {
  background-color: transparent;
  color: var(--page-resources-slots-selection-text-light);
  border: 2px solid var(--page-resources-slots-selection-accent-color);
}

.page-resources-slots-selection__btn--secondary:hover {
  background-color: var(--page-resources-slots-selection-accent-color);
  color: var(--page-resources-slots-selection-primary-color);
  transform: translateY(-2px);
}

.page-resources-slots-selection__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

/* General Section Styling */
.page-resources-slots-selection__section {
  padding: 60px 0;
  background-color: var(--page-resources-slots-selection-background-light);
}

.page-resources-slots-selection__section:nth-of-type(even) {
  background-color: #FFFFFF;
}

.page-resources-slots-selection__section-title {
  font-size: 2.5em;
  color: var(--page-resources-slots-selection-primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-slots-selection__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-resources-slots-selection__section-description a {
  color: var(--page-resources-slots-selection-primary-color);
  text-decoration: underline;
}

.page-resources-slots-selection .highlight {
  color: var(--page-resources-slots-selection-accent-color);
}

/* Why Choose Section */
.page-resources-slots-selection__why-choose {
  background-color: var(--page-resources-slots-selection-background-light);
}

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

.page-resources-slots-selection__feature-item {
  background-color: #FFFFFF;
  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-resources-slots-selection__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-resources-slots-selection__feature-title {
  font-size: 1.5em;
  color: var(--page-resources-slots-selection-primary-color);
  margin-bottom: 15px;
}

.page-resources-slots-selection__feature-text {
  color: #666666;
}

.page-resources-slots-selection__feature-text a {
  color: var(--page-resources-slots-selection-primary-color);
  text-decoration: underline;
}

/* Game Types Section */
.page-resources-slots-selection__game-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-resources-slots-selection__game-type-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.page-resources-slots-selection__game-type-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-resources-slots-selection__game-type-title {
  font-size: 1.8em;
  color: var(--page-resources-slots-selection-primary-color);
  padding: 20px 25px 10px;
}

.page-resources-slots-selection__game-type-text {
  color: #666666;
  padding: 0 25px 25px;
}

.page-resources-slots-selection__game-type-text a {
  color: var(--page-resources-slots-selection-primary-color);
  text-decoration: underline;
}

/* Featured Games Section */
.page-resources-slots-selection__featured-games {
  background-color: var(--page-resources-slots-selection-background-light);
}

.page-resources-slots-selection__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-slots-selection__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-resources-slots-selection__game-card:hover {
  transform: translateY(-5px);
}

.page-resources-slots-selection__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-resources-slots-selection__game-card-title {
  font-size: 1.6em;
  color: var(--page-resources-slots-selection-primary-color);
  margin: 15px 0 10px;
}

.page-resources-slots-selection__game-card-text {
  color: #666666;
  padding: 0 20px 20px;
}

.page-resources-slots-selection__game-card-text a {
  color: var(--page-resources-slots-selection-primary-color);
  text-decoration: underline;
}

/* Tips Section */
.page-resources-slots-selection__tips {
  background-color: #FFFFFF;
}

.page-resources-slots-selection__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  gap: 30px;
}

.page-resources-slots-selection__tips-list li {
  background-color: var(--page-resources-slots-selection-background-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-slots-selection__tips-list h3 {
  font-size: 1.6em;
  color: var(--page-resources-slots-selection-primary-color);
  margin-bottom: 10px;
}

.page-resources-slots-selection__tips-list p {
  color: #555555;
}

.page-resources-slots-selection__tips-list p a {
  color: var(--page-resources-slots-selection-primary-color);
  text-decoration: underline;
}

/* Promotions Section */
.page-resources-slots-selection__promotions {
  background-color: var(--page-resources-slots-selection-background-dark);
  color: var(--page-resources-slots-selection-text-light);
}

.page-resources-slots-selection__promotions .page-resources-slots-selection__section-title,
.page-resources-slots-selection__promotions .page-resources-slots-selection__section-description {
  color: var(--page-resources-slots-selection-text-light);
}

.page-resources-slots-selection__promotions .page-resources-slots-selection__section-description a {
  color: var(--page-resources-slots-selection-accent-color);
}

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

.page-resources-slots-selection__promo-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-resources-slots-selection__promo-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-slots-selection__promo-title {
  font-size: 1.5em;
  color: var(--page-resources-slots-selection-accent-color);
  margin-bottom: 10px;
}

.page-resources-slots-selection__promo-text {
  color: #E0E0E0;
}

.page-resources-slots-selection__promo-text a {
  color: var(--page-resources-slots-selection-accent-color);
  text-decoration: underline;
}

.page-resources-slots-selection__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

/* Final CTA Section */
.page-resources-slots-selection__cta-final {
  background-color: var(--page-resources-slots-selection-primary-color);
  color: var(--page-resources-slots-selection-text-light);
  text-align: center;
}

.page-resources-slots-selection__cta-final .page-resources-slots-selection__section-title,
.page-resources-slots-selection__cta-final .page-resources-slots-selection__section-description {
  color: var(--page-resources-slots-selection-text-light);
}

.page-resources-slots-selection__cta-final .page-resources-slots-selection__section-description a {
  color: var(--page-resources-slots-selection-accent-color);
}

.page-resources-slots-selection__final-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-resources-slots-selection__faq {
  background-color: var(--page-resources-slots-selection-background-light);
}

.page-resources-slots-selection__faq-item {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.page-resources-slots-selection__faq-item h3 {
  font-size: 1.4em;
  color: var(--page-resources-slots-selection-primary-color);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-slots-selection__faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-resources-slots-selection__faq-item.active h3::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-slots-selection__faq-item p {
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-resources-slots-selection__faq-item.active p {
  max-height: 200px; /* Adjust based on expected content length */
  padding-top: 10px;
}

.page-resources-slots-selection__faq-item p a {
  color: var(--page-resources-slots-selection-primary-color);
  text-decoration: underline;
}

.page-resources-slots-selection__faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-slots-selection__hero-title {
    font-size: 2.8em;
  }

  .page-resources-slots-selection__hero-subtitle {
    font-size: 1.1em;
  }

  .page-resources-slots-selection__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-slots-selection__hero {
    padding: 60px 0;
    min-height: 400px;
  }

  .page-resources-slots-selection__hero-title {
    font-size: 2.2em;
  }

  .page-resources-slots-selection__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-slots-selection__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-slots-selection__btn {
    width: 80%;
    max-width: 300px;
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-slots-selection__section {
    padding: 40px 0;
  }

  .page-resources-slots-selection__section-title {
    font-size: 1.8em;
  }

  .page-resources-slots-selection__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-resources-slots-selection__feature-title,
  .page-resources-slots-selection__game-type-title,
  .page-resources-slots-selection__game-card-title,
  .page-resources-slots-selection__promo-title,
  .page-resources-slots-selection__tips-list h3,
  .page-resources-slots-selection__faq-item h3 {
    font-size: 1.3em;
  }

  .page-resources-slots-selection__final-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-slots-selection__hero-title {
    font-size: 1.8em;
  }

  .page-resources-slots-selection__hero-subtitle {
    font-size: 0.9em;
  }

  .page-resources-slots-selection__btn {
    width: 90%;
    padding: 10px 20px;
  }

  .page-resources-slots-selection__section-title {
    font-size: 1.5em;
  }

  .page-resources-slots-selection__feature-item,
  .page-resources-slots-selection__game-type-item,
  .page-resources-slots-selection__game-card,
  .page-resources-slots-selection__promo-item,
  .page-resources-slots-selection__tips-list li,
  .page-resources-slots-selection__faq-item {
    padding: 20px;
  }

  .page-resources-slots-selection__feature-title,
  .page-resources-slots-selection__game-type-title,
  .page-resources-slots-selection__game-card-title,
  .page-resources-slots-selection__promo-title,
  .page-resources-slots-selection__tips-list h3,
  .page-resources-slots-selection__faq-item h3 {
    font-size: 1.2em;
  }
}