.page-fortune-ox {
  font-family: 'Arial', sans-serif;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
  line-height: 1.6;
}

.page-fortune-ox__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #140C0C; /* Background */
  position: relative;
  overflow: hidden;
}

.page-fortune-ox__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

.page-fortune-ox__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-fortune-ox__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
  border-radius: 10px;
}

.page-fortune-ox__main-title {
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size for H1 */
}

.page-fortune-ox__hero-description {
  color: #FFF1E8; /* Text Main */
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-fortune-ox__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
  color: #ffffff; /* White text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-fortune-ox__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-fortune-ox__cta-button--secondary {
  background: #6A1E1E; /* Deep Red */
  margin-left: 15px;
}

.page-fortune-ox__cta-button--secondary:hover {
  background: #7E0D0D;
}

.page-fortune-ox__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #140C0C; /* Background */
  text-align: center;
}

.page-fortune-ox__video-container {
  width: 100%; /* Important for desktop */
  max-width: 1000px;
  margin: 20px auto;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-fortune-ox__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  width: 100%; /* Important for desktop */
  max-width: 100%;
}

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

.page-fortune-ox__video-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.page-fortune-ox__video-cta:hover {
  transform: translateY(-2px);
}

.page-fortune-ox__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #140C0C; /* Background */
  color: #FFF1E8; /* Text Main */
}

.page-fortune-ox__section-title {
  color: #F3C54D; /* Gold */
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-fortune-ox__sub-title {
  color: #E53030; /* Aux color */\  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-fortune-ox__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #FFF1E8;
}

.page-fortune-ox__image-container {
  margin: 40px 0;
  text-align: center;
}

.page-fortune-ox__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-fortune-ox__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #FFF1E8;
}

.page-fortune-ox__list-item {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.page-fortune-ox__faq-container {
  margin-top: 40px;
}

.page-fortune-ox__faq-item {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF1E8;
}

.page-fortune-ox__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  color: #F3C54D; /* Gold */
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-fortune-ox__faq-question:hover {
  background-color: #2A1212; /* Slightly darker hover */
}

.page-fortune-ox__faq-item[open] > .page-fortune-ox__faq-question {
  background-color: #2A1212; /* Card BG */
}

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

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

.page-fortune-ox__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #FFF1E8;
}

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

.page-fortune-ox__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-fortune-ox__button-group--center {
  text-align: center;
}

.page-fortune-ox__cta-button--primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
  color: #ffffff;
}

/* Ensure all content images meet minimum size requirements */
.page-fortune-ox img {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-fortune-ox__hero-content {
    padding: 15px;
  }

  .page-fortune-ox__main-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
  }

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

  .page-fortune-ox__sub-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-fortune-ox__hero-section {
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .page-fortune-ox__hero-content {
    max-width: 100%;
    border-radius: 0;
  }

  .page-fortune-ox__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .page-fortune-ox__hero-description {
    font-size: 1rem;
  }

  .page-fortune-ox__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fortune-ox__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-fortune-ox__button-group {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
  }

  .page-fortune-ox__video-section {
    padding-top: 10px !important; /* body handles header offset */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fortune-ox__video-container,
  .page-fortune-ox__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-fortune-ox video,
  .page-fortune-ox__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fortune-ox__content-area {
    padding: 30px 15px;
  }

  .page-fortune-ox__section-title {
    font-size: 1.8rem;
  }

  .page-fortune-ox__sub-title {
    font-size: 1.4rem;
  }

  .page-fortune-ox__paragraph,
  .page-fortune-ox__list-item {
    font-size: 1rem;
  }

  .page-fortune-ox__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .page-fortune-ox__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }

  .page-fortune-ox img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-fortune-ox__image-container,
  .page-fortune-ox__card,
  .page-fortune-ox__faq-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
}