/* style/slot-games.css */
.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

.page-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

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

.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  height: auto;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-slot-games__hero-content-wrapper {
  position: relative; /* Relative to hero section, not absolutely on image */
  width: 100%;
  padding: 40px 0;
  background: rgba(8, 22, 15, 0.7); /* Semi-transparent background for readability */
  margin-top: -100px; /* Pull up slightly to overlap image bottom */
  z-index: 1;
}

.page-slot-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-slot-games__hero-description {
  font-size: 1.2rem;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-slot-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-slot-games__cta-buttons--center {
  margin-top: 40px;
}

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

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-slot-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
  filter: brightness(1.1);
}

.page-slot-games__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* Brighter Green from Button gradient */
  border: 2px solid #2E7A4E; /* Border */
}

.page-slot-games__btn-secondary:hover {
  transform: translateY(-3px);
  background: #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
}

.page-slot-games__section-title,
.page-slot-games__heading-2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-slot-games__heading-3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #22C768; /* Auxiliary Color */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #57E38D; /* Glow */
  padding-left: 15px;
}

.page-slot-games__paragraph {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-slot-games__paragraph strong {
  color: #F2FFF6; /* Text Main */
}

.page-slot-games__paragraph a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

.page-slot-games__paragraph a:hover {
  text-decoration: underline;
}

.page-slot-games__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-slot-games__list-item {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-slot-games__list-item::before {
  content: '✓';
  color: #2AD16F; /* Brighter Green from Button gradient */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-slot-games__ordered-list {
  list-style: decimal;
  padding-left: 30px;
  margin-bottom: 20px;
}

.page-slot-games__ordered-list .page-slot-games__list-item {
  padding-left: 0;
  margin-bottom: 15px;
  color: #A7D9B8;
}

.page-slot-games__ordered-list .page-slot-games__list-item::before {
  content: none;
}

.page-slot-games__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

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

.page-slot-games__game-card {
  background: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-slot-games__game-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games__game-card-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-slot-games__game-card-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 15px;
  margin-bottom: 25px;
}

.page-slot-games__game-card-button {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page-slot-games__game-card-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.page-slot-games__dark-section {
  background-color: #0A4B2C; /* Deep Green */
}

.page-slot-games__table-of-contents {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  margin: 40px auto;
  padding: 40px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__toc-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.page-slot-games__toc-list li a {
  display: block;
  background-color: #08160F; /* Background */
  color: #A7D9B8; /* Text Secondary */
  padding: 12px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__toc-list li a:hover {
  background-color: #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
}

.page-slot-games__faq-list {
  margin-top: 40px;
}

.page-slot-games__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-slot-games__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  list-style: none; /* Remove default marker */
}

.page-slot-games__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit */
}

.page-slot-games__faq-item[open] summary .page-slot-games__faq-toggle {
  content: '−';
}

.page-slot-games__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #57E38D; /* Glow */
  margin-left: 15px;
}

.page-slot-games__faq-answer {
  padding: 0 20px 20px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05rem;
}

.page-slot-games__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-slot-games__heading-2 {
    font-size: 2rem;
  }
  .page-slot-games__heading-3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-slot-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-slot-games__container {
    padding: 0 15px;
  }
  .page-slot-games__section-spacing {
    padding: 40px 0;
  }
  .page-slot-games__hero-section {
    padding-bottom: 40px;
  }
  .page-slot-games__hero-content-wrapper {
    margin-top: -60px;
    padding: 30px 0;
  }
  .page-slot-games__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-slot-games__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    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__cta-buttons,
  .page-slot-games__button-group,
  .page-slot-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__video-section,
  .page-slot-games__video-container,
  .page-slot-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-slot-games__video-section {
    padding-top: 10px !important;
  }
  .page-slot-games__game-cards-grid {
    grid-template-columns: 1fr;
  }
  .page-slot-games__game-card-image {
    height: auto; /* Allow auto height on mobile */
  }
  .page-slot-games__faq-item summary {
    font-size: 1.05rem;
    padding: 15px;
  }
  .page-slot-games__faq-answer {
    padding: 0 15px 15px 15px;
  }
  .page-slot-games__toc-list {
    grid-template-columns: 1fr;
  }
}