/* style/slots.css */
.page-slots {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #0A192F; /* Deep blue background */
  line-height: 1.6;
}

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

.page-slots__highlight {
  color: #FFD700; /* Golden yellow for highlights */
}

/* --- Hero Section --- */
.page-slots__hero-section {
  background: linear-gradient(135deg, #0A192F, #1A2E4C);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure sufficient height */
}

.page-slots__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  z-index: 1;
}

.page-slots__hero-section > .page-slots__container {
  position: relative;
  z-index: 2;
}

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

.page-slots__hero-description {
  font-size: 1.3em;
  color: #C0C0C0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slots__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, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.page-slots__btn--primary {
  background-color: #FFD700; /* Golden yellow */
  color: #0A192F;
}

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

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

.page-slots__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

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

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

.page-slots__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-slots__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for contrast */
}

/* --- General Section Styles --- */
.page-slots__section {
  padding: 80px 0;
  text-align: center;
}

.page-slots__section-title {
  font-size: 2.8em;
  color: #FFFFFF;
  margin-bottom: 40px;
  position: relative;
}

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

.page-slots__description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #C0C0C0;
}

/* --- Feature Cards / Grid --- */
.page-slots__grid {
  display: grid;
  gap: 30px;
  margin-top: 50px;
}

.page-slots__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-slots__grid--2-cols {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.page-slots__feature-card,
.page-slots__type-card,
.page-slots__detail-card {
  background-color: #1A2E4C; /* Slightly lighter blue */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots__feature-card:hover,
.page-slots__type-card:hover,
.page-slots__detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-slots__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-slots__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

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

.page-slots__card-title a:hover {
  color: #E6C200;
  text-decoration: underline;
}

.page-slots__type-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* --- How to Play Steps --- */
.page-slots__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
}

.page-slots__steps-list li {
  background-color: #1A2E4C;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.page-slots__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  flex-shrink: 0;
  line-height: 1;
}

.page-slots__step-title {
  font-size: 1.6em;
  color: #FFFFFF;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-slots__steps-list li p {
  flex-grow: 1;
  color: #C0C0C0;
  margin-bottom: 15px;
}

/* --- Mobile Gaming Section --- */
.page-slots__mobile-gaming {
  background-color: #0A192F;
  padding: 80px 0;
}

.page-slots__mobile-gaming > .page-slots__container {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-slots__mobile-content {
  flex: 1;
}

.page-slots__mobile-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* --- Promotions Section --- */
.page-slots__promo-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 800px;
  text-align: left;
}

.page-slots__promo-list li {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-slots__promo-icon {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.7));
}

.page-slots__promo-cta {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Responsible Gaming Section --- */
.page-slots__responsible-image {
  max-width: 200px;
  margin: 30px auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

/* --- Explore Categories / Detail Pages List --- */
.page-slots__explore-categories {
  background-color: #1A2E4C;
}

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

.page-slots__detail-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Push button to bottom */
}

.page-slots__detail-card p {
  flex-grow: 1;
  margin-bottom: 20px;
}

/* --- FAQ Section --- */
.page-slots__faq {
  text-align: left;
}

.page-slots__accordion {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots__accordion-item {
  background-color: #1A2E4C;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slots__accordion-header {
  width: 100%;
  background-color: #2A3B5C; /* Darker shade for header */
  color: #FFFFFF;
  padding: 20px 30px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-slots__accordion-header:hover {
  background-color: #3B4C6D;
}

.page-slots__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-slots__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-slots__accordion-content {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-slots__accordion-content.active {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 30px;
}

.page-slots__accordion-content p {
  color: #C0C0C0;
  margin-bottom: 15px;
}

.page-slots__accordion-content .page-slots__btn--small {
  margin-top: 10px;
}

/* --- CTA Bottom Section --- */
.page-slots__cta-bottom {
  background: linear-gradient(45deg, #FFD700, #E6C200);
  padding: 80px 0;
  text-align: center;
  color: #0A192F;
}

.page-slots__cta-title {
  font-size: 3em;
  color: #0A192F;
  margin-bottom: 20px;
}

.page-slots__cta-title .page-slots__highlight {
  color: #0A192F;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.page-slots__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #333333;
}

.page-slots__cta-actions {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-slots__cta-actions .page-slots__btn--primary {
  background-color: #0A192F;
  color: #FFD700;
}

.page-slots__cta-actions .page-slots__btn--primary:hover {
  background-color: #1A2E4C;
  color: #FFD700;
}

.page-slots__cta-actions .page-slots__btn--secondary {
  background-color: transparent;
  color: #0A192F;
  border: 2px solid #0A192F;
}

.page-slots__cta-actions .page-slots__btn--secondary:hover {
  background-color: #0A192F;
  color: #FFD700;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-slots__hero-title {
    font-size: 2.8em;
  }
  .page-slots__section-title {
    font-size: 2.2em;
  }
  .page-slots__grid--2-cols {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  .page-slots__mobile-gaming > .page-slots__container {
    flex-direction: column;
    text-align: center;
  }
  .page-slots__mobile-image-wrapper {
    margin-top: 40px;
  }
  .page-slots__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-slots__hero-title {
    font-size: 2.2em;
  }
  .page-slots__hero-description {
    font-size: 1.1em;
  }
  .page-slots__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-slots__section {
    padding: 60px 0;
  }
  .page-slots__section-title {
    font-size: 1.8em;
  }
  .page-slots__description {
    font-size: 1em;
  }
  .page-slots__grid--3-cols,
  .page-slots__grid--2-cols {
    grid-template-columns: 1fr;
  }
  .page-slots__steps-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-slots__step-number {
    margin-bottom: 15px;
  }
  .page-slots__detail-pages-list {
    grid-template-columns: 1fr;
  }
  .page-slots__cta-title {
    font-size: 2em;
  }
  .page-slots__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-slots__hero-section {
    padding: 80px 0;
  }
  .page-slots__hero-title {
    font-size: 1.8em;
  }
  .page-slots__hero-description {
    font-size: 0.95em;
  }
  .page-slots__section-title {
    font-size: 1.5em;
  }
  .page-slots__card-title {
    font-size: 1.5em;
  }
  .page-slots__step-title {
    font-size: 1.3em;
  }
  .page-slots__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-slots__accordion-content {
    padding: 15px 20px;
  }
  .page-slots__cta-title {
    font-size: 1.8em;
  }
  .page-slots__btn--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}