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

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

.page-slots__section {
  padding: 60px 0;
  text-align: center;
}

.page-slots__section-title {
  font-size: 2.8em;
  color: #003366;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-slots__description {
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-slots__highlight {
  color: #003366;
  font-weight: bold;
}

/* Hero Section */
.page-slots__hero-section {
  background: linear-gradient(135deg, #003366 0%, #004488 100%);
  color: #fff;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

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

.page-slots__hero-section > .page-slots__container {
  z-index: 1;
}

.page-slots__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #FFCC00;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-slots__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 900px;
  opacity: 0.9;
}

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

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

.page-slots__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-slots__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-slots__btn--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-slots__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-3px);
}

.page-slots__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust to show part of the image */
  right: -100px;
  width: 500px;
  height: 500px;
  opacity: 0.2;
  z-index: 0;
}

.page-slots__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Why Choose Section */
.page-slots__why-choose {
  background-color: #fff;
}

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

.page-slots__feature-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 51, 102, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #003366;
}

.page-slots__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 51, 102, 0.15);
}

.page-slots__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.2));
}

.page-slots__feature-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-slots__feature-item p {
  color: #444;
  font-size: 1em;
}

.page-slots__text-link {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
  transition: color 0.3s ease;
}

.page-slots__text-link:hover {
  color: #FFCC00;
}

/* Game Types Section */
.page-slots__game-types {
  background-color: #f0f8ff;
}

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

.page-slots__game-type-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e0e0e0;
}

.page-slots__game-type-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-slots__game-type-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-slots__game-type-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-slots__game-type-item p {
  color: #555;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slots__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 25px;
  background-color: #003366;
  color: #fff;
}

.page-slots__btn--small:hover {
  background-color: #004488;
  transform: translateY(-2px);
}

/* Guide Section */
.page-slots__guide {
  background-color: #fff;
}

.page-slots__guide-content {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.page-slots__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-slots__list li {
  background-color: #f8f8f8;
  border-left: 5px solid #FFCC00;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-slots__list-title {
  font-size: 1.5em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-slots__list li p {
  color: #444;
  margin-bottom: 10px;
}

/* Tips Section */
.page-slots__tips {
  background-color: #f0f8ff;
}

.page-slots__tips .page-slots__list li {
  border-left: 5px solid #003366;
}

.page-slots__cta-banner {
    background-color: #003366;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.3);
}

.page-slots__cta-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    flex-shrink: 0;
}

.page-slots__cta-content {
    flex-grow: 1;
}

.page-slots__cta-title {
    font-size: 2em;
    color: #FFCC00;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-slots__cta-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Call to Action Section */
.page-slots__call-to-action {
  background-color: #fff;
  padding: 80px 0;
}

.page-slots__actions-large {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.page-slots__btn--hero {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 50px;
  background-color: #FFCC00;
  color: #003366;
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.5);
}

.page-slots__btn--hero:hover {
  background-color: #e6b800;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 204, 0, 0.7);
}

.page-slots__btn--hero-secondary {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 50px;
  background-color: transparent;
  color: #003366;
  border: 2px solid #003366;
}

.page-slots__btn--hero-secondary:hover {
  background-color: #003366;
  color: #fff;
  transform: translateY(-4px);
}

/* FAQ Section */
.page-slots__faq {
  background-color: #f0f8ff;
}

.page-slots__faq-list {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 40px;
}

.page-slots__faq-item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-slots__faq-question {
  font-size: 1.3em;
  color: #003366;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  position: relative;
  background-color: #e6f2ff;
  border-bottom: 1px solid #d0e0f0;
}

.page-slots__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-slots__faq-item.active .page-slots__faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.page-slots__faq-answer {
  padding: 0 25px;
  margin: 0;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-slots__faq-item.active .page-slots__faq-answer {
  max-height: 200px; /* Adjust based on content */
  padding: 15px 25px 20px 25px;
}

/* Related Pages Section */
.page-slots__related-pages {
  background-color: #fff;
}

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

.page-slots__detail-item {
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slots__detail-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-slots__detail-title a {
  color: #003366;
  text-decoration: none;
}

.page-slots__detail-title a:hover {
  color: #FFCC00;
  text-decoration: underline;
}

.page-slots__detail-description {
  color: #555;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots__hero-title {
    font-size: 3em;
  }
  .page-slots__hero-description {
    font-size: 1.2em;
  }
  .page-slots__section-title {
    font-size: 2.2em;
  }
  .page-slots__cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .page-slots__cta-image {
      margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-slots__hero-section {
    padding: 80px 0;
  }
  .page-slots__hero-title {
    font-size: 2.5em;
  }
  .page-slots__hero-description {
    font-size: 1.1em;
  }
  .page-slots__hero-actions {
    flex-direction: column;
  }
  .page-slots__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-slots__section {
    padding: 40px 0;
  }
  .page-slots__section-title {
    font-size: 1.8em;
  }
  .page-slots__actions-large {
    flex-direction: column;
    gap: 20px;
  }
  .page-slots__btn--hero, .page-slots__btn--hero-secondary {
    width: 100%;
    max-width: 300px;
  }
  .page-slots__hero-image-wrapper {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-slots__hero-title {
    font-size: 2em;
  }
  .page-slots__hero-description {
    font-size: 1em;
  }
  .page-slots__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-slots__section-title {
    font-size: 1.6em;
  }
  .page-slots__feature-item, .page-slots__game-type-item, .page-slots__detail-item {
    padding: 20px;
  }
  .page-slots__list li {
    padding: 15px 20px;
  }
  .page-slots__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-slots__faq-question::after {
    right: 20px;
  }
  .page-slots__faq-answer {
    padding: 10px 20px 15px 20px;
  }
  .page-slots__cta-title {
      font-size: 1.5em;
  }
  .page-slots__cta-text {
      font-size: 0.9em;
  }
}