/* style/fortune-ox.css */
.page-fortune-ox {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Fundo principal */
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

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

.page-fortune-ox__section {
  padding: 60px 0;
  text-align: center;
}

.page-fortune-ox__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #F2C14E; /* Main Color */
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-fortune-ox h1, .page-fortune-ox h2, .page-fortune-ox h3 {
  color: #F2C14E;
}

.page-fortune-ox p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-fortune-ox a {
  color: #FFD36B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-fortune-ox a:hover {
  color: #F2C14E;
}

/* Hero Section */
.page-fortune-ox__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(180deg, #0A0A0A 0%, #111111 100%);
  border-bottom: 2px solid #3A2A12;
}

.page-fortune-ox__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-fortune-ox__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-fortune-ox__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid #FFD36B;
}

.page-fortune-ox__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-fortune-ox__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFD36B;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-fortune-ox__hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #FFF6D6;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-fortune-ox__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fortune-ox__cta-button:hover {
  background: linear-gradient(180deg, #FFE082 0%, #E6B53A 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-fortune-ox__cta-button--large {
  padding: 18px 50px;
  font-size: 22px;
}

/* Intro Section */
.page-fortune-ox__intro-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Why Play Section */
.page-fortune-ox__why-play-section {
  background-color: #111111;
  border-top: 1px solid #3A2A12;
  border-bottom: 1px solid #3A2A12;
}

.page-fortune-ox__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fortune-ox__card {
  background: #111111;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fortune-ox__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.2);
}

.page-fortune-ox__card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #FFD36B;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-fortune-ox__card-title {
  font-size: 24px;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-fortune-ox__card p {
  font-size: 16px;
  color: #FFF6D6;
}

.page-fortune-ox__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fortune-ox__btn-primary:hover {
  background: linear-gradient(180deg, #FFE082 0%, #E6B53A 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.3);
}

.page-fortune-ox__btn-wide {
  width: auto;
  margin-top: 40px;
  padding: 15px 40px;
  font-size: 20px;
}

/* How to Play Section */
.page-fortune-ox__numbered-list {
  list-style: none;
  counter-reset: item;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
}

.page-fortune-ox__numbered-list li {
  counter-increment: item;
  margin-bottom: 30px;
  padding-left: 60px;
  position: relative;
  color: #FFF6D6;
}

.page-fortune-ox__numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #F2C14E;
  color: #0A0A0A;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-fortune-ox__list-title {
  font-size: 20px;
  color: #FFD36B;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-fortune-ox__list-title + p {
  font-size: 17px;
}

.page-fortune-ox__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-fortune-ox__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: #FFD36B;
  text-decoration: none;
  border: 2px solid #FFD36B;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-fortune-ox__btn-secondary:hover {
  background-color: #FFD36B;
  color: #111111;
  box-shadow: 0 4px 10px rgba(255, 211, 107, 0.3);
}

/* Game Features Section */
.page-fortune-ox__game-features-section {
  background-color: #111111;
  border-top: 1px solid #3A2A12;
  border-bottom: 1px solid #3A2A12;
}

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

.page-fortune-ox__feature-card {
  background: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-fortune-ox__feature-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #FFD36B;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Tips Section */
.page-fortune-ox__bullet-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
}

.page-fortune-ox__bullet-list li {
  margin-bottom: 25px;
  padding-left: 40px;
  position: relative;
  color: #FFF6D6;
}

.page-fortune-ox__bullet-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #F2C14E;
  font-size: 28px;
  line-height: 1;
  font-weight: bold;
}

/* Mobile Section */
.page-fortune-ox__mobile-section {
  background-color: #0A0A0A;
}

.page-fortune-ox__mobile-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-fortune-ox__mobile-content img {
  max-width: 45%;
  height: auto;
  border-radius: 12px;
  border: 2px solid #FFD36B;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-fortune-ox__mobile-text {
  max-width: 55%;
}

.page-fortune-ox__mobile-text p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* FAQ Section */
.page-fortune-ox__faq-section {
  background-color: #111111;
  border-top: 1px solid #3A2A12;
}

.page-fortune-ox__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

details.page-fortune-ox__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #3A2A12;
  overflow: hidden;
  background: #0A0A0A;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

details.page-fortune-ox__faq-item summary.page-fortune-ox__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFD36B;
  font-size: 18px;
  font-weight: bold;
}

details.page-fortune-ox__faq-item summary.page-fortune-ox__faq-question::-webkit-details-marker {
  display: none;
}

details.page-fortune-ox__faq-item summary.page-fortune-ox__faq-question:hover {
  background: #1A1A1A;
}

.page-fortune-ox__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  color: #FFD36B;
}

.page-fortune-ox__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F2C14E;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-fortune-ox__faq-item .page-fortune-ox__faq-answer {
  padding: 0 25px 20px;
  background: #111111;
  border-radius: 0 0 10px 10px;
  color: #FFF6D6;
  font-size: 16px;
}

.page-fortune-ox__cta-final-section {
  background-color: #0A0A0A;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fortune-ox__section-title {
    font-size: 30px;
  }
  .page-fortune-ox p {
    font-size: 17px;
  }
  .page-fortune-ox__card-title {
    font-size: 22px;
  }
  .page-fortune-ox__mobile-content {
    flex-direction: column;
    text-align: center;
  }
  .page-fortune-ox__mobile-content img,
  .page-fortune-ox__mobile-text {
    max-width: 100%;
  }
  .page-fortune-ox__mobile-content img {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-fortune-ox__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fortune-ox__hero-image img {
    border-radius: 8px;
  }
  .page-fortune-ox__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-fortune-ox__hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }
  .page-fortune-ox__cta-button {
    padding: 12px 30px;
    font-size: 18px;
    margin-top: 20px;
    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-fortune-ox__cta-button--large {
    padding: 15px 40px;
    font-size: 20px;
  }

  .page-fortune-ox__section {
    padding: 40px 0;
  }
  .page-fortune-ox__section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .page-fortune-ox p {
    font-size: 16px;
  }
  .page-fortune-ox__grid-layout, .page-fortune-ox__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-fortune-ox__card, .page-fortune-ox__feature-card {
    padding: 20px;
  }
  .page-fortune-ox__card img, .page-fortune-ox__feature-card img, .page-fortune-ox__mobile-content img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-fortune-ox__numbered-list, .page-fortune-ox__bullet-list {
    margin: 30px auto;
    padding: 0 15px;
  }
  .page-fortune-ox__numbered-list li, .page-fortune-ox__bullet-list li {
    padding-left: 45px;
  }
  .page-fortune-ox__numbered-list li::before {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
  .page-fortune-ox__list-title {
    font-size: 18px;
  }
  .page-fortune-ox__faq-list {
    padding: 0 15px;
  }
  details.page-fortune-ox__faq-item summary.page-fortune-ox__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-fortune-ox__faq-qtext {
    font-size: 16px;
  }
  .page-fortune-ox__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  details.page-fortune-ox__faq-item .page-fortune-ox__faq-answer {
    padding: 0 20px 15px;
    font-size: 15px;
  }

  .page-fortune-ox__btn-primary,
  .page-fortune-ox__btn-secondary {
    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-fortune-ox__cta-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-fortune-ox__container {
    padding: 0 15px;
  }
  .page-fortune-ox__section,
  .page-fortune-ox__card,
  .page-fortune-ox__feature-card,
  .page-fortune-ox__mobile-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}