/* style/slot-games.css */

/* Base styles for the page */
.page-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-slot-games a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games a:hover {
  color: #e6c200;
}

.page-slot-games__link--highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Section styles */
.page-slot-games__section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-slot-games__dark-bg {
  background-color: #1A2B4C;
  color: #ffffff;
}

.page-slot-games__light-bg {
  background-color: #f8f9fa;
  color: #333333;
}

.page-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.page-slot-games__section-title {
  font-size: 38px;
  margin-bottom: 20px;
  color: inherit;
  font-weight: 700;
}

.page-slot-games__section-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: inherit;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-slot-games__hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 120px; /* Adjust for fixed header */
  padding-bottom: 80px;
  text-align: left;
  background-color: #1A2B4C;
}

.page-slot-games__hero-content {
  flex: 1;
  max-width: 600px;
}

.page-slot-games__main-title {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.page-slot-games__subtitle {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-slot-games__hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.page-slot-games__btn-primary {
  background-color: #FFD700;
  color: #1A2B4C;
  border: 2px solid #FFD700;
}

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

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

.page-slot-games__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
  transform: translateY(-2px);
}

.page-slot-games__hero-image-wrapper {
  flex: 1;
  max-width: 600px;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.page-slot-games__features .page-slot-games__section-title {
  color: #1A2B4C;
}

.page-slot-games__features .page-slot-games__section-description {
  color: #555555;
}

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

.page-slot-games__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  text-align: left;
}

.page-slot-games__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: block;
  margin-left: 0;
}

.page-slot-games__feature-title {
  font-size: 24px;
  color: #1A2B4C;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-slot-games__feature-description {
  font-size: 16px;
  color: #555555;
}

/* Popular Games Section */
.page-slot-games__popular-games .page-slot-games__section-title,
.page-slot-games__popular-games .page-slot-games__section-description {
  color: #ffffff;
}

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

.page-slot-games__game-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-slot-games__game-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.page-slot-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-slot-games__game-title {
  font-size: 22px;
  color: #FFD700;
  margin: 15px 10px 5px;
  font-weight: 600;
}

.page-slot-games__game-provider {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 15px;
}

.page-slot-games__play-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B4C;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.page-slot-games__game-card:hover .page-slot-games__play-button {
  opacity: 1;
  transform: translateY(0);
}

.page-slot-games__button-wrapper {
  margin-top: 50px;
}

.page-slot-games__btn-small {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background-color: #1A2B4C;
  color: #FFD700;
  border: 1px solid #1A2B4C;
  margin-top: 15px;
}

.page-slot-games__btn-small:hover {
  background-color: #FFD700;
  color: #1A2B4C;
  border-color: #FFD700;
}

/* Guide Section */
.page-slot-games__guide .page-slot-games__section-title {
  color: #1A2B4C;
}

.page-slot-games__guide .page-slot-games__section-description {
  color: #555555;
}

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

.page-slot-games__guide-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  color: #333333;
}

.page-slot-games__guide-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__guide-title {
  font-size: 24px;
  color: #1A2B4C;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-slot-games__guide-text {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-slot-games__promotions .page-slot-games__section-title,
.page-slot-games__promotions .page-slot-games__section-description {
  color: #ffffff;
}

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

.page-slot-games__promo-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-slot-games__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-slot-games__promo-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
  font-weight: 700;
}

.page-slot-games__promo-description {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-slot-games__btn-promo {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B4C;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.page-slot-games__btn-promo:hover {
  background-color: #e6c200;
}

/* FAQ Section */
.page-slot-games__faq .page-slot-games__section-title {
  color: #1A2B4C;
}

.page-slot-games__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #1A2B4C;
}

.page-slot-games__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-slot-games__faq-question:active {
  background: #eeeeee;
}

.page-slot-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #1A2B4C;
}

.page-slot-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-slot-games__faq-item.active .page-slot-games__faq-toggle {
  color: #1A2B4C;
  transform: rotate(45deg);
}

.page-slot-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
  padding: 0 25px;
  opacity: 0;
  color: #555555;
  background-color: #f9f9f9;
  border-top: 1px solid #eeeeee;
}

.page-slot-games__faq-item.active .page-slot-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

.page-slot-games__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

/* CTA Section */
.page-slot-games__cta {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #1A2B4C;
  color: #ffffff;
}

.page-slot-games__cta-title {
  font-size: 42px;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-slot-games__cta-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__cta-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games__hero-section {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }

  .page-slot-games__hero-content {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .page-slot-games__hero-image-wrapper {
    max-width: 80%;
  }

  .page-slot-games__main-title {
    font-size: 40px;
  }

  .page-slot-games__subtitle {
    font-size: 18px;
  }

  .page-slot-games__hero-actions {
    justify-content: center;
  }

  .page-slot-games__section-title {
    font-size: 32px;
  }

  .page-slot-games__section-description {
    font-size: 16px;
  }

  .page-slot-games__feature-grid,
  .page-slot-games__game-grid,
  .page-slot-games__guide-steps,
  .page-slot-games__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-slot-games__cta-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .page-slot-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-slot-games__section,
  .page-slot-games__container,
  .page-slot-games__hero-section,
  .page-slot-games__feature-card,
  .page-slot-games__game-card,
  .page-slot-games__guide-item,
  .page-slot-games__promo-card,
  .page-slot-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games__hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
    gap: 30px;
  }

  .page-slot-games__main-title {
    font-size: 32px;
  }

  .page-slot-games__subtitle {
    font-size: 16px;
  }

  .page-slot-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    width: 100%;
  }

  .page-slot-games__section {
    padding: 60px 15px;
  }

  .page-slot-games__section-title {
    font-size: 28px;
  }

  .page-slot-games__section-description {
    font-size: 15px;
  }

  .page-slot-games__feature-grid,
  .page-slot-games__game-grid,
  .page-slot-games__guide-steps,
  .page-slot-games__promo-grid {
    gap: 20px;
  }

  .page-slot-games__feature-title {
    font-size: 20px;
  }

  .page-slot-games__feature-icon {
    width: 60px;
    height: 60px;
  }

  .page-slot-games__game-image {
    height: 160px;
  }

  .page-slot-games__game-title {
    font-size: 18px;
  }

  .page-slot-games__promo-image {
    height: 180px;
  }

  .page-slot-games__promo-title {
    font-size: 20px;
  }

  .page-slot-games__faq-question {
    padding: 15px 20px;
  }

  .page-slot-games__faq-question h3 {
    font-size: 16px;
  }

  .page-slot-games__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-slot-games__faq-answer {
    padding: 0 20px;
  }

  .page-slot-games__faq-item.active .page-slot-games__faq-answer {
    padding: 15px 20px !important;
  }

  .page-slot-games__cta-title {
    font-size: 30px;
  }

  .page-slot-games__cta-description {
    font-size: 16px;
  }

  .page-slot-games__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-slot-games__main-title {
    font-size: 28px;
  }

  .page-slot-games__section-title {
    font-size: 24px;
  }

  .page-slot-games__cta-title {
    font-size: 26px;
  }

  .page-slot-games__hero-section {
    padding-top: 80px; /* Smaller padding for smaller screens */
  }
}