.page-fortuneox {
  font-family: 'Roboto', sans-serif;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
  line-height: 1.6;
}

.page-fortuneox__section {
  padding: 60px 20px;
  text-align: center;
}

.page-fortuneox__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-fortuneox__title {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 25px;
  color: #FFB04D; /* Glow */
  line-height: 1.2;
}

.page-fortuneox__subtitle {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #FFA53A;
}

.page-fortuneox__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #FFF3E6;
}

.page-fortuneox__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.page-fortuneox__list li {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #FFF3E6;
  border-left: 4px solid #FFA53A;
  display: flex;
  align-items: center;
}

.page-fortuneox__list li::before {
  content: '✓';
  color: #FFB04D;
  font-weight: bold;
  margin-right: 10px;
}

.page-fortuneox__cta-button,
.page-fortuneox__btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Botão */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-fortuneox__cta-button:hover,
.page-fortuneox__btn-primary:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #FF8C1A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

.page-fortuneox__btn-center {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: fit-content;
}

/* Hero Section */
.page-fortuneox__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-color: #0D0E12;
  overflow: hidden;
}

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

.page-fortuneox__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

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

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

.page-fortuneox__hero-content h1 {
  font-size: clamp(2.5em, 5vw, 3.5em);
  font-weight: 900;
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
  line-height: 1.1;
  text-shadow: 0 0 15px rgba(255, 176, 77, 0.5);
}

.page-fortuneox__hero-content p {
  font-size: clamp(1.1em, 2vw, 1.3em);
  color: #FFF3E6;
  max-width: 800px;
  margin: 0 auto 25px auto;
}

/* Content Sections */
.page-fortuneox__dark-bg {
  background-color: #0D0E12;
  color: #FFF3E6;
}

.page-fortuneox__light-bg {
  background-color: #17191F; /* Card BG */
  color: #FFF3E6;
}

.page-fortuneox__introduction .page-fortuneox__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-fortuneox__gameplay .page-fortuneox__content-wrapper,
.page-fortuneox__mobile-access .page-fortuneox__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-fortuneox__gameplay .page-fortuneox__image-wrapper,
.page-fortuneox__mobile-access .page-fortuneox__image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
}

.page-fortuneox__gameplay .page-fortuneox__image-wrapper img,
.page-fortuneox__mobile-access .page-fortuneox__image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-fortuneox__gameplay .page-fortuneox__text-content,
.page-fortuneox__mobile-access .page-fortuneox__text-content {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  text-align: left;
}

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

.page-fortuneox__card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-fortuneox__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-fortuneox__card-title {
  font-size: 1.5em;
  font-weight: 700;
  color: #FFA53A;
  margin-bottom: 15px;
}

.page-fortuneox__card p {
  font-size: 1em;
  color: #FFF3E6;
  text-align: left;
}

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

/* FAQ Section */
details.page-fortuneox__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #A84F0C; /* Border */
  overflow: hidden;
  background: #17191F; /* Card BG */
}

details.page-fortuneox__faq-item summary.page-fortuneox__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: #FFF3E6;
}

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

details.page-fortuneox__faq-item summary.page-fortuneox__faq-question:hover {
  background: rgba(255, 165, 58, 0.1);
}

.page-fortuneox__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFA53A;
}

.page-fortuneox__faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: #FFB04D; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-fortuneox__faq-item .page-fortuneox__faq-answer {
  padding: 0 25px 25px;
  background: rgba(255, 165, 58, 0.05);
  border-radius: 0 0 8px 8px;
  text-align: left;
  font-size: 1em;
  color: #FFF3E6;
}

.page-fortuneox__faq-answer p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fortuneox__title {
    font-size: 2.5em;
  }
  .page-fortuneox__hero-content h1 {
    font-size: clamp(2em, 4vw, 3em);
  }
  .page-fortuneox__hero-content p {
    font-size: clamp(1em, 1.8vw, 1.2em);
  }
}

@media (max-width: 768px) {
  .page-fortuneox__section {
    padding: 40px 15px;
  }
  .page-fortuneox__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fortuneox__hero-image img {
    border-radius: 8px;
  }
  .page-fortuneox__hero-content h1 {
    font-size: clamp(1.8em, 7vw, 2.8em);
  }
  .page-fortuneox__hero-content p {
    font-size: clamp(0.9em, 3.5vw, 1.1em);
  }
  .page-fortuneox__cta-button,
  .page-fortuneox__btn-primary {
    padding: 12px 30px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0;
    margin-right: 0;
  }
  .page-fortuneox__title {
    font-size: 2em;
  }
  .page-fortuneox__subtitle {
    font-size: 1.5em;
  }
  .page-fortuneox__text-block {
    font-size: 0.95em;
  }
  .page-fortuneox__list li {
    font-size: 0.9em;
    padding: 12px 15px;
  }
  .page-fortuneox__gameplay .page-fortuneox__content-wrapper,
  .page-fortuneox__mobile-access .page-fortuneox__content-wrapper {
    flex-direction: column;
  }
  .page-fortuneox__gameplay .page-fortuneox__image-wrapper,
  .page-fortuneox__mobile-access .page-fortuneox__image-wrapper {
    max-width: 100%;
  }
  .page-fortuneox__gameplay .page-fortuneox__text-content,
  .page-fortuneox__mobile-access .page-fortuneox__text-content {
    max-width: 100%;
    text-align: center;
  }
  .page-fortuneox__features-grid,
  .page-fortuneox__advantages-grid,
  .page-fortuneox__bonuses-grid {
    grid-template-columns: 1fr;
  }
  .page-fortuneox__card {
    padding: 20px;
  }
  .page-fortuneox__card-title {
    font-size: 1.3em;
  }
  .page-fortuneox__card p {
    font-size: 0.9em;
  }
  details.page-fortuneox__faq-item summary.page-fortuneox__faq-question {
    padding: 15px 20px;
  }
  .page-fortuneox__faq-qtext {
    font-size: 1em;
  }
  .page-fortuneox__faq-toggle {
    font-size: 1.8em;
  }
  details.page-fortuneox__faq-item .page-fortuneox__faq-answer {
    padding: 0 20px 20px;
  }
  .page-fortuneox img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-fortuneox__section,
  .page-fortuneox__card,
  .page-fortuneox__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-fortuneox__list {
    padding-left: 0;
    padding-right: 0;
  }
  .page-fortuneox__list li {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-fortuneox__title {
    font-size: 1.8em;
  }
  .page-fortuneox__hero-content h1 {
    font-size: clamp(1.6em, 8vw, 2.5em);
  }
  .page-fortuneox__hero-content p {
    font-size: clamp(0.85em, 4vw, 1em);
  }
  .page-fortuneox__cta-button,
  .page-fortuneox__btn-primary {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-fortuneox__list li {
    font-size: 0.85em;
  }
}