/* style/fortunemouse.css */

/* Base styles for the Fortune Mouse page */
.page-fortunemouse {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

.page-fortunemouse__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-fortunemouse__section {
  padding: 40px 0;
  text-align: center;
  position: relative;
}

.page-fortunemouse__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.page-fortunemouse__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-fortunemouse__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.page-fortunemouse__hero-image-wrapper {
  width: 100%;
  position: relative;
  order: 1; /* Image above content */
}

.page-fortunemouse__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-fortunemouse__hero-content {
  order: 2; /* Content below image */
  padding: 40px 20px;
  max-width: 900px;
  z-index: 2;
  text-align: center;
}

.page-fortunemouse__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-fortunemouse__description {
  font-size: clamp(1em, 2.5vw, 1.3em);
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-fortunemouse__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  color: #F2FFF6; /* Text Main */
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fortunemouse__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

/* Section Backgrounds */
.page-fortunemouse__dark-bg {
  background-color: #08160F; /* Background */
}

.page-fortunemouse__card-bg {
  background-color: #11271B; /* Card BG */
}

/* Image content */
.page-fortunemouse__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Border */
}

/* Lists */
.page-fortunemouse__list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 30px auto;
  text-align: left;
}

.page-fortunemouse__list-item {
  background-color: #11271B; /* Card BG */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #A7D9B8; /* Text Secondary */
  border-left: 5px solid #2AD16F;
  font-size: 1.05em;
}

.page-fortunemouse__list-item strong {
  color: #F2FFF6; /* Text Main */
}

/* Video Section */
.page-fortunemouse__video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Border */
  width: 100%; /* Ensure width is 100% for desktop */
}

.page-fortunemouse__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

/* Advantages Grid */
.page-fortunemouse__grid-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fortunemouse__advantage-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-fortunemouse__card-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-fortunemouse__card-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

/* Testimonials */
.page-fortunemouse__testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fortunemouse__testimonial-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid #2E7A4E; /* Border */
}

.page-fortunemouse__testimonial-text {
  font-style: italic;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-fortunemouse__testimonial-author {
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  font-size: 0.95em;
}

/* FAQ Section */
.page-fortunemouse__faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-fortunemouse__faq-item {
  background-color: #11271B; /* Card BG */
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-fortunemouse__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none; /* For details/summary */
}

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

.page-fortunemouse__faq-qtext {
  flex-grow: 1;
}

.page-fortunemouse__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #2AD16F;
}

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

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

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

/* Final CTA Section */
.page-fortunemouse__section--cta-final {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
  border-top: 5px solid #22C768;
}

.page-fortunemouse__section--cta-final .page-fortunemouse__section-title {
  color: #F2FFF6;
}

.page-fortunemouse__section--cta-final .page-fortunemouse__text-block {
  color: #A7D9B8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fortunemouse__hero-content {
    padding: 30px 15px;
  }
  .page-fortunemouse__section-title {
    font-size: 2em;
  }
  .page-fortunemouse__text-block {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-fortunemouse__hero-section {
    padding-top: 10px !important;
  }
  .page-fortunemouse__hero-content {
    padding: 20px 15px;
  }
  .page-fortunemouse__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-fortunemouse__description {
    font-size: clamp(0.9em, 3vw, 1.1em);
  }
  .page-fortunemouse__section-title {
    font-size: 1.8em;
  }
  .page-fortunemouse__text-block {
    font-size: 0.95em;
  }
  .page-fortunemouse__btn {
    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;
  }
  .page-fortunemouse__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-fortunemouse__image-content,
  .page-fortunemouse__card-image {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
    display: block !important;
  }
  .page-fortunemouse__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    margin: 30px auto;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
  .page-fortunemouse__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-fortunemouse__grid-advantages,
  .page-fortunemouse__testimonial-grid {
    grid-template-columns: 1fr;
  }
  .page-fortunemouse__advantage-card,
  .page-fortunemouse__testimonial-card {
    padding: 20px;
  }
  .page-fortunemouse__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-fortunemouse__faq-answer {
    padding: 0 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-fortunemouse__section-title {
    font-size: 1.5em;
  }
  .page-fortunemouse__btn {
    font-size: 0.9em;
  }
}