.page-fortunedragon {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Light text for dark body background */
  background-color: #0A0A0A; /* Body background from shared.css */
}

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

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

.page-fortunedragon__dark-bg {
  background-color: #0A0A0A;
  color: #FFF6D6;
}

.page-fortunedragon__section-title {
  font-size: 3em;
  font-weight: bold;
  color: #FFD36B;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-fortunedragon__subsection-title {
  font-size: 2em;
  font-weight: 600;
  color: #F2C14E;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-fortunedragon p {
  font-size: 1.1em;
  margin-bottom: 1em;
  color: #E0E0E0;
}

.page-fortunedragon strong {
  color: #FFD36B;
}

.page-fortunedragon a {
  color: #F2C14E;
  text-decoration: none;
}

.page-fortunedragon a:hover {
  text-decoration: underline;
}

.page-fortunedragon__list {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 800px;
  text-align: left;
}

.page-fortunedragon__list li {
  background: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  font-size: 1.05em;
  display: flex;
  align-items: center;
  color: #FFF6D6;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-fortunedragon__list li::before {
  content: '⚡'; /* Unicode lightning bolt for emphasis */
  margin-right: 10px;
  color: #FFD36B;
  font-size: 1.2em;
}

/* HERO Section */
.page-fortunedragon__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 */
  overflow: hidden;
}

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

.page-fortunedragon__hero-image {
  width: 100%;
  margin-bottom: 30px;
  order: 1; /* Image first */
}

.page-fortunedragon__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.4);
}

.page-fortunedragon__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  order: 2; /* Content second */
}

.page-fortunedragon__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em);
  font-weight: 800;
  color: #FFD36B;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 211, 107, 0.7);
}

.page-fortunedragon__intro-text {
  font-size: clamp(1.1em, 2vw, 1.3em);
  color: #E0E0E0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-fortunedragon__image-wrapper {
  margin: 40px auto;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-fortunedragon__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

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

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

.page-fortunedragon__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(242, 193, 78, 0.2);
}

.page-fortunedragon__feature-title {
  font-size: 1.6em;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-fortunedragon__feature-item p {
  font-size: 1em;
  color: #E0E0E0;
}

.page-fortunedragon__bonus-list {
  margin-top: 30px;
}

/* FAQ Section */
details.page-fortunedragon__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12;
  overflow: hidden;
  background: #111111;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

details.page-fortunedragon__faq-item summary.page-fortunedragon__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: 1.15em;
  font-weight: 600;
}

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

details.page-fortunedragon__faq-item summary.page-fortunedragon__faq-question:hover {
  background: rgba(242, 193, 78, 0.1);
}

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

.page-fortunedragon__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F2C14E;
  flex-shrink: 0;
  margin-left: 15px;
  width: 32px;
  text-align: center;
  transition: transform 0.3s ease;
}

details.page-fortunedragon__faq-item[open] .page-fortunedragon__faq-toggle {
  transform: rotate(45deg);
}

details.page-fortunedragon__faq-item .page-fortunedragon__faq-answer {
  padding: 0 25px 20px;
  background: #0A0A0A;
  border-top: 1px solid #3A2A12;
  border-radius: 0 0 8px 8px;
  color: #E0E0E0;
  text-align: left;
  font-size: 1em;
}

.page-fortunedragon__faq-answer p {
  margin-top: 15px;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-fortunedragon__section-title {
    font-size: 2.5em;
  }
  .page-fortunedragon__subsection-title {
    font-size: 1.8em;
  }
  .page-fortunedragon__hero-image img {
    border-radius: 8px;
  }
  .page-fortunedragon__image-wrapper img {
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .page-fortunedragon__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-fortunedragon__container {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-fortunedragon__section {
    padding: 40px 0;
  }

  .page-fortunedragon__section-title {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .page-fortunedragon__subsection-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-fortunedragon p {
    font-size: 1em;
  }

  .page-fortunedragon__list li {
    padding: 12px 15px;
    font-size: 0.95em;
  }

  .page-fortunedragon__hero-content {
    padding: 0 10px;
  }

  .page-fortunedragon__main-title {
    font-size: 2.2em;
  }

  .page-fortunedragon__intro-text {
    font-size: 1em;
  }

  .page-fortunedragon__cta-button {
    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;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-fortunedragon__feature-item {
    padding: 20px;
  }

  .page-fortunedragon__feature-title {
    font-size: 1.4em;
  }

  details.page-fortunedragon__faq-item summary.page-fortunedragon__faq-question {
    padding: 15px;
    font-size: 1em;
  }

  .page-fortunedragon__faq-qtext {
    font-size: 0.95em;
  }

  .page-fortunedragon__faq-toggle {
    font-size: 24px;
    width: 28px;
  }

  details.page-fortunedragon__faq-item .page-fortunedragon__faq-answer {
    padding: 0 15px 15px;
  }

  /* Mobile image responsiveness */
  .page-fortunedragon img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}