.page-fortunemouse {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-fortunemouse__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
  color: #F2FFF6;
}

.page-fortunemouse__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-fortunemouse__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6;
  letter-spacing: -0.03em;
}

.page-fortunemouse__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fortunemouse__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-fortunemouse__btn-primary,
.page-fortunemouse__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-fortunemouse__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
}

.page-fortunemouse__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fortunemouse__btn-secondary {
  background: none;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
}

.page-fortunemouse__btn-secondary:hover {
  background: #57E38D;
  color: #08160F; /* Background */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fortunemouse__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-fortunemouse__game-intro,
.page-fortunemouse__how-to-play,
.page-fortunemouse__faq-section {
  padding: 80px 0;
  background-color: #f5f5f5; /* Light background for contrast */
  color: #333333;
}

.page-fortunemouse__legal-compliance,
.page-fortunemouse__why-choose-us,
.page-fortunemouse__cta-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
  color: #F2FFF6;
}

.page-fortunemouse__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
  color: inherit;
}

.page-fortunemouse__game-intro .page-fortunemouse__section-title,
.page-fortunemouse__how-to-play .page-fortunemouse__section-title,
.page-fortunemouse__faq-section .page-fortunemouse__section-title {
  color: #11A84E; /* Main color on light background */
}

.page-fortunemouse__text-block {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: inherit;
}

.page-fortunemouse__game-intro .page-fortunemouse__text-block,
.page-fortunemouse__how-to-play .page-fortunemouse__text-block,
.page-fortunemouse__faq-section .page-fortunemouse__text-block {
  color: #333333;
}

.page-fortunemouse__legal-compliance .page-fortunemouse__text-block,
.page-fortunemouse__why-choose-us .page-fortunemouse__text-block,
.page-fortunemouse__cta-section .page-fortunemouse__text-block {
  color: #A7D9B8; /* Text Secondary */
}

.page-fortunemouse__highlight {
  color: #57E38D; /* Glow */
  font-weight: 600;
}

.page-fortunemouse__features-grid,
.page-fortunemouse__compliance-grid,
.page-fortunemouse__steps-grid,
.page-fortunemouse__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fortunemouse__feature-card,
.page-fortunemouse__compliance-item,
.page-fortunemouse__step-card,
.page-fortunemouse__benefit-card,
.page-fortunemouse__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6;
}

.page-fortunemouse__game-intro .page-fortunemouse__feature-card,
.page-fortunemouse__how-to-play .page-fortunemouse__step-card,
.page-fortunemouse__faq-section .page-fortunemouse__faq-item {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-fortunemouse__feature-card:hover,
.page-fortunemouse__compliance-item:hover,
.page-fortunemouse__step-card:hover,
.page-fortunemouse__benefit-card:hover,
.page-fortunemouse__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-fortunemouse__feature-title,
.page-fortunemouse__compliance-title,
.page-fortunemouse__step-title,
.page-fortunemouse__benefit-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #57E38D; /* Glow */
}

.page-fortunemouse__game-intro .page-fortunemouse__feature-title,
.page-fortunemouse__how-to-play .page-fortunemouse__step-title {
  color: #11A84E;
}

.page-fortunemouse__feature-description,
.page-fortunemouse__compliance-description,
.page-fortunemouse__step-description,
.page-fortunemouse__benefit-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

.page-fortunemouse__game-intro .page-fortunemouse__feature-description,
.page-fortunemouse__how-to-play .page-fortunemouse__step-description {
  color: #333333;
}

.page-fortunemouse__cta-read-more {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-fortunemouse__faq-list {
  margin-top: 40px;
}

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

.page-fortunemouse__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: #11A84E;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

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

.page-fortunemouse__faq-item summary:hover {
  background-color: #f0f0f0;
}

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

.page-fortunemouse__faq-toggle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-left: 15px;
  color: #11A84E;
}

.page-fortunemouse__faq-item[open] .page-fortunemouse__faq-toggle {
  color: #2AD16F;
}

.page-fortunemouse__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  text-align: left;
}

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

/* Links within text blocks */
.page-fortunemouse a {
  color: #57E38D; /* Glow */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fortunemouse a:hover {
  color: #2AD16F;
  text-decoration: underline;
}

.page-fortunemouse__game-intro a,
.page-fortunemouse__how-to-play a,
.page-fortunemouse__faq-section a {
  color: #11A84E;
}

.page-fortunemouse__game-intro a:hover,
.page-fortunemouse__how-to-play a:hover,
.page-fortunemouse__faq-section a:hover {
  color: #0A4B2C;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fortunemouse__hero-content {
    padding: 0 15px;
  }
  .page-fortunemouse__hero-image {
    margin-top: 30px;
  }
  .page-fortunemouse__section-title {
    margin-bottom: 30px;
  }
  .page-fortunemouse__text-block {
    margin-bottom: 20px;
  }
  .page-fortunemouse__features-grid,
  .page-fortunemouse__compliance-grid,
  .page-fortunemouse__steps-grid,
  .page-fortunemouse__benefits-grid {
    gap: 20px;
  }
  .page-fortunemouse__feature-card,
  .page-fortunemouse__compliance-item,
  .page-fortunemouse__step-card,
  .page-fortunemouse__benefit-card,
  .page-fortunemouse__faq-item {
    padding: 25px;
  }
  .page-fortunemouse__faq-item summary {
    padding: 18px 20px;
    font-size: 1.1rem;
  }
  .page-fortunemouse__faq-answer {
    padding: 18px 20px;
  }
}

@media (max-width: 768px) {
  .page-fortunemouse__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-fortunemouse__main-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .page-fortunemouse__subtitle {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  }
  .page-fortunemouse__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-fortunemouse__btn-primary,
  .page-fortunemouse__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-fortunemouse__hero-image,
  .page-fortunemouse img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-height: 200px !important;
  }
  .page-fortunemouse__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 25px;
  }
  .page-fortunemouse__text-block {
    font-size: 0.95rem;
  }
  .page-fortunemouse__features-grid,
  .page-fortunemouse__compliance-grid,
  .page-fortunemouse__steps-grid,
  .page-fortunemouse__benefits-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .page-fortunemouse__feature-card,
  .page-fortunemouse__compliance-item,
  .page-fortunemouse__step-card,
  .page-fortunemouse__benefit-card,
  .page-fortunemouse__faq-item {
    padding: 20px;
  }
  .page-fortunemouse__feature-title,
  .page-fortunemouse__compliance-title,
  .page-fortunemouse__step-title,
  .page-fortunemouse__benefit-title {
    font-size: 1.3rem;
  }
  .page-fortunemouse__feature-description,
  .page-fortunemouse__compliance-description,
  .page-fortunemouse__step-description,
  .page-fortunemouse__benefit-description {
    font-size: 0.9rem;
  }
  .page-fortunemouse__game-intro,
  .page-fortunemouse__how-to-play,
  .page-fortunemouse__faq-section,
  .page-fortunemouse__legal-compliance,
  .page-fortunemouse__why-choose-us,
  .page-fortunemouse__cta-section {
    padding: 50px 0;
  }
  .page-fortunemouse__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-fortunemouse__cta-read-more {
    flex-direction: column;
  }
  .page-fortunemouse__cta-read-more .page-fortunemouse__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .page-fortunemouse__hero-section {
    padding: 30px 10px;
    padding-top: 10px !important;
  }
  .page-fortunemouse__main-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }
  .page-fortunemouse__subtitle {
    font-size: clamp(0.85rem, 4vw, 1rem);
  }
  .page-fortunemouse__btn-primary,
  .page-fortunemouse__btn-secondary {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  .page-fortunemouse__section-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .page-fortunemouse__text-block {
    font-size: 0.9rem;
  }
  .page-fortunemouse__feature-card,
  .page-fortunemouse__compliance-item,
  .page-fortunemouse__step-card,
  .page-fortunemouse__benefit-card,
  .page-fortunemouse__faq-item {
    padding: 15px;
  }
  .page-fortunemouse__faq-item summary {
    padding: 15px;
    font-size: 1rem;
  }
  .page-fortunemouse__faq-answer {
    padding: 15px;
  }
}