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

.page-fortune-mouse__hero-section {
  position: relative;
  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;
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
  overflow: hidden;
}

.page-fortune-mouse__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  object-fit: cover;
  z-index: 1;
}

.page-fortune-mouse__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  margin-top: -100px; /* Adjust to place content below image but still visually connected */
  background-color: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-fortune-mouse__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fortune-mouse__description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
}

.page-fortune-mouse__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fortune-mouse__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-fortune-mouse__cta-button--secondary {
  background: #11271B; /* Card BG */
  color: #F2C14E; /* Gold */
  border: 2px solid #2E7A4E; /* Border */
}

.page-fortune-mouse__cta-button--secondary:hover {
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  border-color: #57E38D; /* Glow */
}

.page-fortune-mouse__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-fortune-mouse__game-overview,
.page-fortune-mouse__how-to-play,
.page-fortune-mouse__strategies,
.page-fortune-mouse__why-us,
.page-fortune-mouse__faq-section,
.page-fortune-mouse__final-cta {
  padding: 60px 0;
  text-align: center;
}

.page-fortune-mouse__game-overview {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-fortune-mouse__how-to-play {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-fortune-mouse__strategies {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-fortune-mouse__why-us {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-fortune-mouse__faq-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-fortune-mouse__final-cta {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-fortune-mouse__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-fortune-mouse__sub-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  font-weight: 600;
  color: #57E38D; /* Glow */
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-fortune-mouse__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
  text-align: left;
}

.page-fortune-mouse__image-content {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-fortune-mouse__list {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 700px;
  text-align: left;
}

.page-fortune-mouse__list-item {
  background-color: #11271B; /* Card BG */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid #2E7A4E; /* Border */
  font-size: 1.05em;
  color: #F2FFF6; /* Text Main */
}

.page-fortune-mouse__list-item strong {
  color: #F2C14E; /* Gold */
}

.page-fortune-mouse__list-benefits {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-fortune-mouse__list-item-benefit {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #A7D9B8; /* Text Secondary */
  min-height: 150px;
}

.page-fortune-mouse__list-item-benefit strong {
  color: #57E38D; /* Glow */
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

/* FAQ Styles */
.page-fortune-mouse__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fortune-mouse__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.15em;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
}

.page-fortune-mouse__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-fortune-mouse__faq-qtext {
  flex-grow: 1;
  color: #F2C14E; /* Gold */
}

.page-fortune-mouse__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-fortune-mouse__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-fortune-mouse__faq-item[open] .page-fortune-mouse__faq-question {
  background-color: #1E3A2A; /* Divider */
}

.page-fortune-mouse__faq-item details > summary {
  list-style: none;
}

.page-fortune-mouse__faq-item details > summary::-webkit-details-marker {
  display: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-fortune-mouse {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fortune-mouse__hero-content {
    margin-top: -50px;
    padding: 15px;
  }

  .page-fortune-mouse__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-fortune-mouse__description {
    font-size: clamp(0.9em, 2.5vw, 1em);
  }

  .page-fortune-mouse__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    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-fortune-mouse__section-title {
    font-size: clamp(1.6em, 6vw, 2.2em);
  }

  .page-fortune-mouse__sub-title {
    font-size: clamp(1.2em, 4vw, 1.6em);
  }

  .page-fortune-mouse__text-block {
    font-size: 0.95em;
  }

  .page-fortune-mouse__list-item-benefit {
    min-height: auto;
  }

  /* Mobile image responsiveness */
  .page-fortune-mouse img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fortune-mouse__section,
  .page-fortune-mouse__card,
  .page-fortune-mouse__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fortune-mouse__hero-section {
    padding-top: 10px !important;
  }

  /* Mobile button responsiveness */
  .page-fortune-mouse__cta-button,
  .page-fortune-mouse__btn-primary,
  .page-fortune-mouse__btn-secondary,
  .page-fortune-mouse a[class*="button"],
  .page-fortune-mouse 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-fortune-mouse__cta-buttons,
  .page-fortune-mouse__button-group,
  .page-fortune-mouse__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-fortune-mouse__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  /* Mobile video responsiveness (if any video was added) */
  .page-fortune-mouse video,
  .page-fortune-mouse__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fortune-mouse__video-section,
  .page-fortune-mouse__video-container,
  .page-fortune-mouse__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fortune-mouse__video-section {
    padding-top: 10px !important;
  }
}