/* style/slot-games.css */

/* Base styles for the page, assuming a dark body background from shared.css */
.page-slot-games {
  background-color: var(--background-color, #08160F); /* Fallback if shared.css doesn't define */
  color: #F2FFF6; /* Main text color for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Headings */
.page-slot-games h1,
.page-slot-games h2,
.page-slot-games h3,
.page-slot-games h4,
.page-slot-games h5,
.page-slot-games h6 {
  color: #F2FFF6; /* Main text color */
  margin-bottom: 1rem;
  font-weight: bold;
  line-height: 1.2;
}

.page-slot-games h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size for H1 */
  text-align: center;
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #F2C14E; /* Gold for main title */
}

.page-slot-games h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #57E38D; /* Glow color for H2 */
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #1E3A2A; /* Divider color */
}

.page-slot-games h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #A7D9B8; /* Secondary text color for H3 */
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Paragraphs and lists */
.page-slot-games p,
.page-slot-games li {
  color: #F2FFF6; /* Main text color */
  margin-bottom: 1rem;
}

.page-slot-games ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Sections and Containers */
.page-slot-games__section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small decorative padding, body handles --header-offset */
  text-align: center;
  background-color: #0A4B2C; /* Deep Green background for hero */
}

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

.page-slot-games__text-block {
  padding: 20px;
  background-color: #11271B; /* Card BG color */
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-slot-games__cta-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}

/* Buttons */
.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-slot-games__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Light text for dark button */
  border: 2px solid #2AD16F;
}

.page-slot-games__cta-button--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(87, 227, 141, 0.4); /* Glow effect */
}

.page-slot-games__cta-button--secondary {
  background-color: transparent;
  color: #57E38D; /* Glow color for secondary button text */
  border: 2px solid #57E38D;
}

.page-slot-games__cta-button--secondary:hover {
  background-color: #57E38D;
  color: #08160F; /* Dark text for light button hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(87, 227, 141, 0.4);
}

/* Image responsiveness */
.page-slot-games img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* FAQ Section */
.page-slot-games__faq-section {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  background-color: #11271B; /* Card BG color */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #1E3A2A; /* Divider color */
  padding-bottom: 15px;
}

.page-slot-games__faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: #F2FFF6; /* Main text color */
  list-style: none; /* For details/summary */
}

.page-slot-games__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-slot-games__faq-qtext {
  flex-grow: 1;
}

.page-slot-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 10px;
  color: #57E38D; /* Glow color */
}

.page-slot-games__faq-answer {
  padding: 10px 0 5px 0;
  color: #A7D9B8; /* Secondary text color */
  font-size: 0.95rem;
}

.page-slot-games__image-container {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__image-container img {
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-slot-games h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-slot-games h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .page-slot-games h3 {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
  }

  .page-slot-games p,
  .page-slot-games li,
  .page-slot-games__faq-answer {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-slot-games__section,
  .page-slot-games__faq-section {
    padding: 20px 15px;
  }

  .page-slot-games__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }

  .page-slot-games__cta-section {
    flex-direction: column;
    align-items: center;
  }

  .page-slot-games__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__image-container,
  .page-slot-games__faq-section,
  .page-slot-games__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}