/* style/blog-how-to-use-39go99-app-ios-features.css */

.page-blog-how-to-use-39go99-app-ios-features {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main for dark background */
  background-color: #08160F; /* Background color */
}

.page-blog-how-to-use-39go99-app-ios-features h1,
.page-blog-how-to-use-39go99-app-ios-features h2,
.page-blog-how-to-use-39go99-app-ios-features h3 {
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-how-to-use-39go99-app-ios-features h1 {
  font-size: clamp(2em, 4vw, 3.5em); /* Using clamp for responsive H1 */
  max-width: 900px;
}

.page-blog-how-to-use-39go99-app-ios-features h2 {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: #57E38D; /* Glow color for section titles */
  text-align: center;
  margin-top: 40px;
  margin-bottom: 25px;
}

.page-blog-how-to-use-39go99-app-ios-features h3 {
  font-size: clamp(1.4em, 2.5vw, 2em);
  color: #F2C14E; /* Gold color for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-how-to-use-39go99-app-ios-features p {
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-use-39go99-app-ios-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom for content */
  overflow: hidden;
  min-height: 500px;
}

.page-blog-how-to-use-39go99-app-ios-features__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-blog-how-to-use-39go99-app-ios-features__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-how-to-use-39go99-app-ios-features__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-blog-how-to-use-39go99-app-ios-features__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-how-to-use-39go99-app-ios-features__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-use-39go99-app-ios-features__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-blog-how-to-use-39go99-app-ios-features__btn-primary:hover {
  opacity: 0.9;
}

.page-blog-how-to-use-39go99-app-ios-features__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* Button top gradient color */
  border: 2px solid #2AD16F;
}

.page-blog-how-to-use-39go99-app-ios-features__btn-secondary:hover {
  background: #2AD16F;
  color: #11271B;
}

.page-blog-how-to-use-39go99-app-ios-features__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #08160F;
}

.page-blog-how-to-use-39go99-app-ios-features__section-intro {
  text-align: center;
  margin-bottom: 50px;
}

.page-blog-how-to-use-39go99-app-ios-features__section-description {
  max-width: 800px;
  margin: 0 auto 30px;
  color: #A7D9B8;
}

.page-blog-how-to-use-39go99-app-ios-features__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px;
  box-sizing: border-box;
  background-color: #08160F;
}

.page-blog-how-to-use-39go99-app-ios-features__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Adjust max-width as needed */
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  box-sizing: border-box;
}

.page-blog-how-to-use-39go99-app-ios-features__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
}

.page-blog-how-to-use-39go99-app-ios-features__article {
  margin-top: 50px;
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-how-to-use-39go99-app-ios-features__article-title {
  color: #F2FFF6;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-blog-how-to-use-39go99-app-ios-features__article-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-use-39go99-app-ios-features__faq-list {
  margin-top: 30px;
}

.page-blog-how-to-use-39go99-app-ios-features__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-use-39go99-app-ios-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #13994A; /* Darker button gradient color */
  color: #F2FFF6;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-use-39go99-app-ios-features__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-use-39go99-app-ios-features__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-use-39go99-app-ios-features__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-blog-how-to-use-39go99-app-ios-features__faq-answer {
  padding: 0 20px;
  color: #A7D9B8;
  background-color: #0A4B2C;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-blog-how-to-use-39go99-app-ios-features__faq-item[open] .page-blog-how-to-use-39go99-app-ios-features__faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding-top: 15px;
  padding-bottom: 15px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-blog-how-to-use-39go99-app-ios-features {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-use-39go99-app-ios-features__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-how-to-use-39go99-app-ios-features__hero-content {
    padding: 15px;
  }

  .page-blog-how-to-use-39go99-app-ios-features h1 {
    font-size: 2em; /* Adjusted for mobile */
  }

  .page-blog-how-to-use-39go99-app-ios-features h2 {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-how-to-use-39go99-app-ios-features h3 {
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-how-to-use-39go99-app-ios-features__content-area,
  .page-blog-how-to-use-39go99-app-ios-features__article {
    padding: 20px 15px;
  }

  /* Mobile image responsiveness */
  .page-blog-how-to-use-39go99-app-ios-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-use-39go99-app-ios-features__hero-image-wrapper,
  .page-blog-how-to-use-39go99-app-ios-features__video-section,
  .page-blog-how-to-use-39go99-app-ios-features__video-container,
  .page-blog-how-to-use-39go99-app-ios-features__video-wrapper,
  .page-blog-how-to-use-39go99-app-ios-features__section-intro,
  .page-blog-how-to-use-39go99-app-ios-features__article {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Mobile video responsiveness */
  .page-blog-how-to-use-39go99-app-ios-features video,
  .page-blog-how-to-use-39go99-app-ios-features__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-how-to-use-39go99-app-ios-features__video-section {
    padding-top: 10px !important;
  }

  /* Mobile button responsiveness */
  .page-blog-how-to-use-39go99-app-ios-features__cta-button,
  .page-blog-how-to-use-39go99-app-ios-features__btn-primary,
  .page-blog-how-to-use-39go99-app-ios-features__btn-secondary,
  .page-blog-how-to-use-39go99-app-ios-features a[class*="button"],
  .page-blog-how-to-use-39go99-app-ios-features a[class*="btn"] {
    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;
    margin-bottom: 10px; /* Add spacing between stacked buttons */
  }

  .page-blog-how-to-use-39go99-app-ios-features__cta-buttons,
  .page-blog-how-to-use-39go99-app-ios-features__button-group,
  .page-blog-how-to-use-39go99-app-ios-features__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
  }

  .page-blog-how-to-use-39go99-app-ios-features__faq-question {
    padding: 12px 15px;
    font-size: 0.9em;
  }

  .page-blog-how-to-use-39go99-app-ios-features__faq-answer {
    padding: 0 15px;
  }
}