/* style/slots.css */
/* body background color is #08160F (dark), so text color should be light */

.page-slots {
  color: #F2FFF6; /* Text Main */
  background-color: transparent; /* Body handles actual background */
}

.page-slots__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
  overflow: hidden;
  box-sizing: border-box;
  background-color: #11271B; /* Card BG */
}

.page-slots__hero-image-wrapper {
  width: calc(100% - 30px); /* Account for padding */
  max-width: 1200px;
  position: relative;
  margin-bottom: 40px; /* Space between image and content */
  box-sizing: border-box;
}

.page-slots__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-slots__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative; /* Ensure it's in normal flow and not overlapping */
  z-index: 1;
}

.page-slots__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
}

.page-slots__description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-slots__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.page-slots__btn-primary,
.page-slots__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.page-slots__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  border: none;
}

.page-slots__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-slots__btn-secondary {
  background: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border color */
}

.page-slots__btn-secondary:hover {
  background: #2E7A4E; /* Border color */
  transform: translateY(-2px);
}

.page-slots__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

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

.page-slots__paragraph {
  font-size: 1rem;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 100%;
}

.page-slots__introduction-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-slots__game-types-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
}

.page-slots__grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slots__card {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  box-sizing: border-box;
  color: #F2FFF6; /* Text Main */
}

.page-slots__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-slots__card-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-slots__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

.page-slots__benefits-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-slots__benefits-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 800px;
  text-align: left;
}

.page-slots__benefits-list li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-slots__benefits-list li::before {
  content: '✔';
  color: #57E38D; /* Glow */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-slots__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-slots__guide-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
}

.page-slots__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slots__step-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 10px;
  padding: 30px;
  box-sizing: border-box;
  color: #F2FFF6; /* Text Main */
}

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

.page-slots__promotions-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-slots__promo-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 800px;
  text-align: left;
}

.page-slots__promo-list li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-slots__promo-list li::before {
  content: '🎁';
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-slots__faq-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
}

.page-slots__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

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

.page-slots__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  background-color: #1E3A2A; /* Divider for summary bg */
  position: relative;
  list-style: none; /* Remove default marker */
}

.page-slots__faq-question::-webkit-details-marker {
  display: none;
}

.page-slots__faq-question .page-slots__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  color: #57E38D; /* Glow */
  margin-left: 15px;
}

.page-slots__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

.page-slots__faq-item[open] .page-slots__faq-question {
  border-bottom: 1px solid #2E7A4E; /* Border color */
}

.page-slots__download-app-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
  text-align: center;
}

.page-slots__app-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-slots__qr-code {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border: 5px solid #F2FFF6; /* Text Main */
  border-radius: 10px;
}

.page-slots__conclusion-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-slots__hero-image-wrapper {
    margin-bottom: 30px;
  }
  .page-slots__main-title {
    margin-bottom: 15px;
  }
  .page-slots__description {
    margin-bottom: 25px;
  }
  .page-slots__section-title {
    margin-bottom: 30px;
  }
  .page-slots__container {
    padding: 30px 15px;
  }
  .page-slots__grid-3-col {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-slots__hero-section {
    padding: 10px 0 40px 0; /* Adjust padding for mobile */
  }
  .page-slots__hero-image-wrapper {
    margin-bottom: 20px;
    padding: 0 15px; /* Add padding here for image */
  }
  .page-slots__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem); /* Smaller H1 on mobile */
    margin-bottom: 10px;
  }
  .page-slots__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-slots__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots__btn-primary,
  .page-slots__btn-secondary {
    padding: 12px 20px;
    font-size: 0.95rem;
    width: calc(100% - 30px); /* Account for container padding */
    margin: 0 auto;
  }

  .page-slots__section-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
    margin-bottom: 25px;
  }
  .page-slots__paragraph {
    font-size: 0.95rem;
    text-align: left;
  }
  .page-slots__container {
    padding: 20px 15px;
  }
  .page-slots__grid-3-col,
  .page-slots__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slots__benefits-list,
  .page-slots__promo-list {
    margin-top: 20px;
  }
  .page-slots__benefits-list li,
  .page-slots__promo-list li {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .page-slots__card-title {
    font-size: 1.3rem;
  }
  .page-slots__step-title {
    font-size: 1.2rem;
  }
  .page-slots__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-slots__faq-answer {
    padding: 0 15px 15px 15px;
  }
  .page-slots__app-cta {
    flex-direction: column;
    gap: 20px;
  }

  /* Mobile responsive for images and containers */
  .page-slots img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-slots__section,
  .page-slots__card,
  .page-slots__container,
  .page-slots__hero-section,
  .page-slots__introduction-section,
  .page-slots__game-types-section,
  .page-slots__benefits-section,
  .page-slots__guide-section,
  .page-slots__promotions-section,
  .page-slots__faq-section,
  .page-slots__download-app-section,
  .page-slots__conclusion-section,
  .page-slots__cta-buttons,
  .page-slots__app-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  /* Specific adjustments for hero section padding for consistency */
  .page-slots__hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-slots__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Buttons within containers should also respect padding */
  .page-slots__cta-buttons a {
    margin: 0 auto; /* Center buttons if in column */
  }
}