/* style/fortunemouse.css */
.page-fortunemouse {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #F5F7FA; /* Background color for the body */
}

.page-fortunemouse__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px;
  background-color: #E53935; /* Primary brand color for hero */
  color: #ffffff;
  overflow: hidden;
}

.page-fortunemouse__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-fortunemouse__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(0.8); /* Slightly dim the image for text readability */
}

.page-fortunemouse__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-fortunemouse__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
}

.page-fortunemouse__hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fortunemouse__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-fortunemouse__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-fortunemouse__section {
  padding: 60px 0;
}

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

.page-fortunemouse__section-title {
  font-size: 2.5rem;
  color: #E53935;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-fortunemouse__text-block {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  color: #333333;
}

.page-fortunemouse__highlight {
  font-weight: bold;
  color: #E53935;
}

.page-fortunemouse__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.page-fortunemouse__btn-primary:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
}

.page-fortunemouse__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-fortunemouse__dark-bg {
  background-color: #E53935;
  color: #ffffff;
}

.page-fortunemouse__dark-bg .page-fortunemouse__section-title,
.page-fortunemouse__dark-bg .page-fortunemouse__text-block,
.page-fortunemouse__dark-bg .page-fortunemouse__list-item,
.page-fortunemouse__dark-bg .page-fortunemouse__highlight {
  color: #ffffff;
}

.page-fortunemouse__dark-bg a {
  color: #FF5A4F; /* Lighter accent for links on dark background */
}

.page-fortunemouse__dark-bg a:hover {
  text-decoration: underline;
}

.page-fortunemouse__ordered-list,
.page-fortunemouse__unordered-list {
  list-style-type: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.page-fortunemouse__list-item {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #333333;
}

.page-fortunemouse__list-item::before {
  content: '✓';
  color: #E53935;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-fortunemouse__dark-bg .page-fortunemouse__list-item::before {
  color: #FF5A4F;
}

.page-fortunemouse__faq-section {
  background-color: #F5F7FA;
}

.page-fortunemouse__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-fortunemouse__faq-item {
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fortunemouse__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  color: #333333;
  background-color: #f9f9f9;
  border-bottom: 1px solid #E0E0E0;
}

.page-fortunemouse__faq-item[open] .page-fortunemouse__faq-question {
  border-bottom: 1px solid #E0E0E0;
}

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

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

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

.page-fortunemouse__faq-answer {
  padding: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.page-fortunemouse__cta-final-section {
  background-color: #FF5A4F;
  text-align: center;
  color: #ffffff;
}

.page-fortunemouse__cta-final-section .page-fortunemouse__section-title {
  color: #ffffff;
}

.page-fortunemouse__cta-final-section .page-fortunemouse__text-block {
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fortunemouse__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3rem;
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-fortunemouse__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-fortunemouse__hero-description {
    font-size: 1.1rem;
  }

  .page-fortunemouse__section-title {
    font-size: 2rem;
  }

  .page-fortunemouse__text-block,
  .page-fortunemouse__list-item,
  .page-fortunemouse__faq-question,
  .page-fortunemouse__faq-answer {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-fortunemouse__hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 30px 15px;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    box-sizing: border-box;
  }

  .page-fortunemouse__hero-section {
    padding: 10px 0 0;
  }

  .page-fortunemouse__hero-image-wrapper {
    max-height: 300px;
  }

  .page-fortunemouse__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-fortunemouse__hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .page-fortunemouse__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-fortunemouse__section {
    padding: 40px 0;
  }

  .page-fortunemouse__container {
    padding: 0 15px;
  }

  .page-fortunemouse__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-fortunemouse__text-block,
  .page-fortunemouse__list-item,
  .page-fortunemouse__faq-question,
  .page-fortunemouse__faq-answer {
    font-size: 0.95rem;
  }

  .page-fortunemouse__list-item {
    padding-left: 25px;
  }

  .page-fortunemouse__list-item::before {
    left: 0;
  }

  .page-fortunemouse__cta-button,
  .page-fortunemouse__btn-primary,
  .page-fortunemouse__btn-secondary,
  .page-fortunemouse a[class*="button"],
  .page-fortunemouse 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-fortunemouse__cta-buttons,
  .page-fortunemouse__button-group,
  .page-fortunemouse__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-fortunemouse__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  .page-fortunemouse img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fortunemouse__section,
  .page-fortunemouse__card,
  .page-fortunemouse__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-fortunemouse video,
  .page-fortunemouse__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-fortunemouse__video-section,
  .page-fortunemouse__video-container,
  .page-fortunemouse__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-fortunemouse__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-fortunemouse__hero-content {
    padding: 20px 10px;
  }

  .page-fortunemouse__main-title {
    font-size: clamp(1.5rem, 9vw, 2.2rem);
  }

  .page-fortunemouse__hero-description {
    font-size: 0.9rem;
  }

  .page-fortunemouse__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .page-fortunemouse__section-title {
    font-size: 1.5rem;
  }

  .page-fortunemouse__text-block,
  .page-fortunemouse__list-item,
  .page-fortunemouse__faq-question,
  .page-fortunemouse__faq-answer {
    font-size: 0.875rem;
  }
}

/* Ensure content area images are not smaller than 200px display size */
.page-fortunemouse img:not(.page-fortunemouse__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

.page-fortunemouse__hero-image {
  filter: brightness(0.7);
}