.page-fortunemouse {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 0; /* Handled by body padding-top in shared.css */
}

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

.page-fortunemouse__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0 40px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
}

.page-fortunemouse__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

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

.page-fortunemouse__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-fortunemouse__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
  line-height: 1.2;
}

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

.page-fortunemouse__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

.page-fortunemouse__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(34, 199, 104, 0.4);
}

.page-fortunemouse__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-fortunemouse__btn-secondary:hover {
  transform: translateY(-2px);
  background-color: rgba(42, 209, 111, 0.1);
}

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

.page-fortunemouse__subtitle {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: #2AD16F; /* Main color from gradient */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-fortunemouse__game-overview-section,
.page-fortunemouse__why-chegoubet-section,
.page-fortunemouse__faq-section,
.page-fortunemouse__final-cta-section {
  width: 100%;
  padding: 80px 0;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-fortunemouse__how-to-play-section,
.page-fortunemouse__strategy-section {
  width: 100%;
  padding: 80px 0;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-fortunemouse__grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-fortunemouse__grid-layout--reverse {
  grid-template-areas: "image text";
}

.page-fortunemouse__grid-layout--reverse .page-fortunemouse__image-wrapper {
  grid-area: image;
}

.page-fortunemouse__grid-layout--reverse .page-fortunemouse__text-block {
  grid-area: text;
}

.page-fortunemouse__text-block p,
.page-fortunemouse__text-block ol,
.page-fortunemouse__text-block ul {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
}

.page-fortunemouse__text-block--dark p,
.page-fortunemouse__text-block--dark ol,
.page-fortunemouse__text-block--dark ul {
  color: #F2FFF6; /* Text Main */
}

.page-fortunemouse__feature-list,
.page-fortunemouse__step-list,
.page-fortunemouse__strategy-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-fortunemouse__feature-list li,
.page-fortunemouse__step-list li,
.page-fortunemouse__strategy-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-fortunemouse__feature-list strong,
.page-fortunemouse__step-list strong,
.page-fortunemouse__strategy-list strong {
  color: #F2C14E; /* Gold */
}

.page-fortunemouse__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

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

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

.page-fortunemouse__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.4);
}

.page-fortunemouse__benefit-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-fortunemouse__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2AD16F; /* Main color from gradient */
  margin-bottom: 15px;
}

.page-fortunemouse__benefit-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

.page-fortunemouse__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fortunemouse__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fortunemouse__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.15rem;
  color: #F2FFF6; /* Text Main */
  list-style: none;
  transition: background-color 0.3s ease;
}

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

.page-fortunemouse__faq-item summary:hover {
  background-color: rgba(34, 199, 104, 0.1);
}

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

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

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

.page-fortunemouse__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
}

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

.page-fortunemouse__final-cta-section {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-fortunemouse__final-cta-section .page-fortunemouse__description {
  margin-bottom: 40px;
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-fortunemouse {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-fortunemouse__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  .page-fortunemouse__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-fortunemouse__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-fortunemouse__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-fortunemouse__description {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    margin-bottom: 25px;
  }

  .page-fortunemouse__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    margin-bottom: 10px; /* Space between stacked buttons */
  }

  .page-fortunemouse__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-fortunemouse__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-fortunemouse__grid-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .page-fortunemouse__grid-layout--reverse {
    grid-template-areas: unset; /* Reset for mobile */
  }

  .page-fortunemouse__game-overview-section,
  .page-fortunemouse__how-to-play-section,
  .page-fortunemouse__why-chegoubet-section,
  .page-fortunemouse__strategy-section,
  .page-fortunemouse__faq-section,
  .page-fortunemouse__final-cta-section {
    padding: 40px 0;
  }

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

  .page-fortunemouse__image-content,
  .page-fortunemouse__benefit-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-fortunemouse__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .page-fortunemouse__benefit-card {
    padding: 25px;
  }

  .page-fortunemouse__card-title {
    font-size: 1.3rem;
  }

  .page-fortunemouse__faq-item summary {
    padding: 15px 20px;
    font-size: 1.05rem;
  }

  .page-fortunemouse__faq-answer {
    padding: 10px 20px 15px 20px;
    font-size: 0.95rem;
  }
}