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

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

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08160F;
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-slot-games__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.page-slot-games__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.page-slot-games__lead-text {
  font-size: 1.15rem;
  color: #F2FFF6;
  margin-bottom: 25px;
}

/* General Section Styling */
.page-slot-games__section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-slot-games__dark-section {
  background-color: #11271B;
  color: #F2FFF6;
}

.page-slot-games__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-slot-games__subsection-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #57E38D; /* Glow */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

/* Grid Layouts */
.page-slot-games__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.page-slot-games__grid-2-cols--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-slot-games__grid-2-cols--reverse .page-slot-games__grid-item:first-child {
  order: 2;
}

.page-slot-games__grid-2-cols--reverse .page-slot-games__grid-item:last-child {
  order: 1;
}

.page-slot-games__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games__grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Card Styles */
.page-slot-games__advantage-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-slot-games__card-title {
  font-size: 1.6rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games__card-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 6px;
  max-width: 400px; /* Ensure card images don't get too wide */
}

/* CTA Buttons */
.page-slot-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* For mobile responsiveness */
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
}

.page-slot-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-slot-games__btn-secondary:hover {
  background: #2AD16F;
  color: #11271B;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* How To Play Section */
.page-slot-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-slot-games__step-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-slot-games__step-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games__step-list,
.page-slot-games__tip-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.page-slot-games__step-list li,
.page-slot-games__tip-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__step-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2AD16F;
  font-weight: bold;
}

/* FAQ Section */
.page-slot-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-slot-games__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #11A84E; /* Primary Color */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-slot-games__faq-question:hover {
  background-color: #13994A;
}

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

.page-slot-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #F2FFF6;
}

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

.page-slot-games__faq-answer {
  padding: 20px 25px;
  background-color: #11271B; /* Card BG */
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

/* Video Promo Section */
.page-slot-games__video-promo-section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-slot-games__video-container {
  width: 100%; /* Desktop: width 100% alongside max-width */
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

.page-slot-games__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-slot-games__video-wrapper .page-slot-games__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block; /* Make the link cover the video */
  cursor: pointer;
}

.page-slot-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games__grid-2-cols {
    grid-template-columns: 1fr;
  }
  .page-slot-games__grid-2-cols--reverse .page-slot-games__grid-item:first-child {
    order: 1; /* Reset order for smaller screens */
  }
  .page-slot-games__grid-2-cols--reverse .page-slot-games__grid-item:last-child {
    order: 2;
  }
  .page-slot-games__hero-content {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__container {
    padding: 0 15px !important;
  }
  .page-slot-games__hero-section {
    padding: 40px 0 !important;
    padding-top: 10px !important;
  }
  .page-slot-games__section {
    padding: 40px 0 !important;
  }
  .page-slot-games__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .page-slot-games__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-slot-games__subsection-title {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
  }
  
  /* Images */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}