/* style/blog-fly88-new-user-guide.css */

:root {
  --fly88-primary-color: #11A84E;
  --fly88-secondary-color: #22C768;
  --fly88-card-bg: #11271B;
  --fly88-background: #08160F;
  --fly88-text-main: #F2FFF6;
  --fly88-text-secondary: #A7D9B8;
  --fly88-border-color: #2E7A4E;
  --fly88-glow-color: #57E38D;
  --fly88-gold-color: #F2C14E;
  --fly88-divider-color: #1E3A2A;
  --fly88-deep-green: #0A4B2C;
  --fly88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-fly88-new-user-guide {
  color: var(--fly88-text-main); /* Light text on dark body background */
  background-color: var(--fly88-background);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-blog-fly88-new-user-guide__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 600px; /* Limit hero image height */
  overflow: hidden;
}

.page-blog-fly88-new-user-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-fly88-new-user-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: 40px; /* Space below image */
  padding: 0 20px;
}

.page-blog-fly88-new-user-guide__main-title {
  font-weight: 700;
  color: var(--fly88-text-main);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}

.page-blog-fly88-new-user-guide__lead-text {
  font-size: 1.15em;
  color: var(--fly88-text-secondary);
  margin-bottom: 30px;
}

.page-blog-fly88-new-user-guide__section {
  padding: 60px 20px;
  border-bottom: 1px solid var(--fly88-divider-color);
}

.page-blog-fly88-new-user-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-fly88-new-user-guide__section-title {
  font-size: 2.5em;
  color: var(--fly88-gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-blog-fly88-new-user-guide__sub-title {
  font-size: 1.8em;
  color: var(--fly88-text-main);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-fly88-new-user-guide__step-title {
  font-size: 2em;
  color: var(--fly88-secondary-color);
  margin-top: 35px;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-blog-fly88-new-user-guide__text-block {
  font-size: 1.05em;
  color: var(--fly88-text-secondary);
  margin-bottom: 20px;
}

.page-blog-fly88-new-user-guide__text-block a {
  color: var(--fly88-gold-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-fly88-new-user-guide__text-block a:hover {
  color: var(--fly88-glow-color);
  text-decoration: underline;
}

.page-blog-fly88-new-user-guide__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--fly88-text-secondary);
}

.page-blog-fly88-new-user-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-fly88-new-user-guide__list-item strong {
  color: var(--fly88-text-main);
}

.page-blog-fly88-new-user-guide__btn-primary,
.page-blog-fly88-new-user-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-fly88-new-user-guide__btn-primary {
  background: var(--fly88-button-gradient);
  color: #ffffff; /* Button text always white */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-fly88-new-user-guide__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-fly88-new-user-guide__btn-secondary {
  background: transparent;
  color: var(--fly88-secondary-color);
  border: 2px solid var(--fly88-secondary-color);
}

.page-blog-fly88-new-user-guide__btn-secondary:hover {
  background: var(--fly88-secondary-color);
  color: var(--fly88-background);
  transform: translateY(-2px);
}

.page-blog-fly88-new-user-guide__btn-center {
  display: block;
  margin: 30px auto;
  max-width: 300px;
}

.page-blog-fly88-new-user-guide__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
  max-width: 400px;
}

.page-blog-fly88-new-user-guide__image-wrapper {
  margin: 40px 0;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-fly88-new-user-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-fly88-new-user-guide__faq-list {
  margin-top: 30px;
}

.page-blog-fly88-new-user-guide__faq-item {
  background-color: var(--fly88-card-bg);
  border: 1px solid var(--fly88-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-fly88-new-user-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--fly88-text-main);
  cursor: pointer;
  background-color: var(--fly88-deep-green);
  transition: background-color 0.3s ease;
}

.page-blog-fly88-new-user-guide__faq-question:hover {
  background-color: var(--fly88-primary-color);
}

.page-blog-fly88-new-user-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--fly88-gold-color);
  margin-left: 15px;
}

.page-blog-fly88-new-user-guide__faq-answer {
  padding: 0 25px;
  color: var(--fly88-text-secondary);
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog-fly88-new-user-guide__faq-item[open] .page-blog-fly88-new-user-guide__faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px 25px 25px;
}

.page-blog-fly88-new-user-guide__faq-item[open] .page-blog-fly88-new-user-guide__faq-question .page-blog-fly88-new-user-guide__faq-toggle {
  content: '−';
}

.page-blog-fly88-new-user-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-fly88-new-user-guide__faq-item summary {
  list-style: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-fly88-new-user-guide__main-title {
    font-size: 2.8em;
  }
  .page-blog-fly88-new-user-guide__section-title {
    font-size: 2em;
  }
  .page-blog-fly88-new-user-guide__step-title {
    font-size: 1.8em;
  }
  .page-blog-fly88-new-user-guide__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-blog-fly88-new-user-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-fly88-new-user-guide__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-blog-fly88-new-user-guide__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }
  .page-blog-fly88-new-user-guide__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-blog-fly88-new-user-guide__lead-text {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-blog-fly88-new-user-guide__section {
    padding: 40px 15px;
  }
  .page-blog-fly88-new-user-guide__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-fly88-new-user-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-fly88-new-user-guide__step-title {
    font-size: 1.6em;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-blog-fly88-new-user-guide__sub-title {
    font-size: 1.4em;
  }
  .page-blog-fly88-new-user-guide__text-block,
  .page-blog-fly88-new-user-guide__list-item {
    font-size: 0.95em;
  }
  .page-blog-fly88-new-user-guide__btn-primary,
  .page-blog-fly88-new-user-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-blog-fly88-new-user-guide__btn-center {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .page-blog-fly88-new-user-guide__btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-blog-fly88-new-user-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px;
    min-height: 200px;
  }
  .page-blog-fly88-new-user-guide__image-wrapper {
    margin: 30px 0;
  }
  .page-blog-fly88-new-user-guide__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-blog-fly88-new-user-guide__faq-item[open] .page-blog-fly88-new-user-guide__faq-answer {
    padding: 10px 20px 20px 20px;
  }
}