/* style/slot-games-classic-slots-introduction.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-slot-games-classic-slots-introduction {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-slot-games-classic-slots-introduction__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0a0a0a; /* Ensure hero background is dark */
  overflow: hidden; /* Ensure content within hero doesn't overflow */
}

.page-slot-games-classic-slots-introduction__hero-image-wrapper {
  width: 100%;
  max-width: 100%; /* Ensure wrapper doesn't exceed 100% width */
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-slot-games-classic-slots-introduction__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-width: 100%; /* Ensure image is responsive */
}

.page-slot-games-classic-slots-introduction__hero-content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
  color: #ffffff; /* Ensure text is light on dark hero background */
}

.page-slot-games-classic-slots-introduction__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
}

.page-slot-games-classic-slots-introduction__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-slot-games-classic-slots-introduction__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

/* General Section Styles */
.page-slot-games-classic-slots-introduction__section {
  padding: 60px 20px;
  background-color: #0a0a0a; /* Dark background for sections */
  color: #ffffff; /* Light text for sections */
}

.page-slot-games-classic-slots-introduction__dark-section {
  background-color: #1a1a1a; /* Slightly different dark background for contrast */
}

.page-slot-games-classic-slots-introduction__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-slot-games-classic-slots-introduction__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-slot-games-classic-slots-introduction__text-block p {
  margin-bottom: 1em;
  color: #f0f0f0;
}

/* Buttons */
.page-slot-games-classic-slots-introduction__btn-primary,
.page-slot-games-classic-slots-introduction__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-classic-slots-introduction__btn-primary {
  background-color: #26A9E0; /* Primary brand color */
  color: #ffffff; /* White text for primary button */
  border: 2px solid #26A9E0;
}

.page-slot-games-classic-slots-introduction__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-slot-games-classic-slots-introduction__btn-secondary {
  background-color: transparent;
  color: #26A9E0; /* Brand color text for secondary button */
  border: 2px solid #26A9E0;
}

.page-slot-games-classic-slots-introduction__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Grid Layout */
.page-slot-games-classic-slots-introduction__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Cards */
.page-slot-games-classic-slots-introduction__card {
  background-color: rgba(255, 255, 255, 0.05); /* Semi-transparent white background */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff; /* Light text for card */
}

.page-slot-games-classic-slots-introduction__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

.page-slot-games-classic-slots-introduction__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-slot-games-classic-slots-introduction__card-description {
  font-size: 1em;
  color: #e0e0e0;
}

/* Numbered List */
.page-slot-games-classic-slots-introduction__numbered-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-slot-games-classic-slots-introduction__numbered-list li {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #26A9E0;
  border-radius: 5px;
  font-size: 1.1em;
  color: #ffffff;
}

.page-slot-games-classic-slots-introduction__numbered-list li strong {
  color: #26A9E0;
}

/* Feature Grid */
.page-slot-games-classic-slots-introduction__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-classic-slots-introduction__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-slot-games-classic-slots-introduction__feature-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-slot-games-classic-slots-introduction__feature-item p {
  color: #e0e0e0;
}

.page-slot-games-classic-slots-introduction__image-wrapper {
  margin-top: 50px;
  text-align: center;
}

.page-slot-games-classic-slots-introduction__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

/* Bullet List */
.page-slot-games-classic-slots-introduction__bullet-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-slot-games-classic-slots-introduction__bullet-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-slot-games-classic-slots-introduction__bullet-list li::before {
  content: '★'; /* Custom bullet point */
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
}

/* FAQ Section */
.page-slot-games-classic-slots-introduction__faq-section {
  padding-bottom: 80px;
}

.page-slot-games-classic-slots-introduction__faq-list {
  margin-top: 40px;
}

.page-slot-games-classic-slots-introduction__faq-item {
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-slot-games-classic-slots-introduction__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
  list-style: none; /* Remove default marker for summary */
}

.page-slot-games-classic-slots-introduction__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-slot-games-classic-slots-introduction__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-slot-games-classic-slots-introduction__faq-qtext {
  flex-grow: 1;
}

.page-slot-games-classic-slots-introduction__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-slot-games-classic-slots-introduction__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05em;
  color: #e0e0e0;
  /* For details tag, content is shown/hidden by browser, no max-height needed */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-slot-games-classic-slots-introduction__hero-content {
    max-width: 768px;
  }

  .page-slot-games-classic-slots-introduction__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-slot-games-classic-slots-introduction__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-classic-slots-introduction__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-slot-games-classic-slots-introduction__hero-content {
    margin: 20px auto;
    padding: 0 15px;
  }

  .page-slot-games-classic-slots-introduction__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-slot-games-classic-slots-introduction__hero-description {
    font-size: 1em;
  }

  .page-slot-games-classic-slots-introduction__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-slot-games-classic-slots-introduction__btn-primary,
  .page-slot-games-classic-slots-introduction__btn-secondary,
  .page-slot-games-classic-slots-introduction a[class*="button"],
  .page-slot-games-classic-slots-introduction a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-classic-slots-introduction__section {
    padding: 40px 15px;
  }

  .page-slot-games-classic-slots-introduction__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-classic-slots-introduction__section-title {
    font-size: 1.8em;
  }

  .page-slot-games-classic-slots-introduction__grid-layout,
  .page-slot-games-classic-slots-introduction__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games-classic-slots-introduction__card,
  .page-slot-games-classic-slots-introduction__feature-item {
    padding: 20px;
  }

  .page-slot-games-classic-slots-introduction__numbered-list li,
  .page-slot-games-classic-slots-introduction__bullet-list li {
    font-size: 1em;
  }

  .page-slot-games-classic-slots-introduction__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-slot-games-classic-slots-introduction__faq-answer {
    padding: 0 20px 15px;
  }

  /* Image responsiveness */
  .page-slot-games-classic-slots-introduction img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games-classic-slots-introduction__section,
  .page-slot-games-classic-slots-introduction__card,
  .page-slot-games-classic-slots-introduction__container,
  .page-slot-games-classic-slots-introduction__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}