/* FAQ Hero Section Styles */
.faq_hero_x8392 {
  position: relative;
  background: #0d1117;
  min-height: 100vh;
  color: #ffffff;
  overflow: hidden;
}

/* Market Ticker */
.market_ticker_wrap_y7263 {
  background: rgba(13, 17, 23, 0.95);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.ticker_container_z9182 {
  display: flex;
  gap: 2rem;
  animation: ticker_slide_h2738 20s linear infinite;
  white-space: nowrap;
}

.ticker_item_k4738 {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.25rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}

.price_up_m2937 {
  margin-left: 0.5rem;
  color: #00f7a1;
}

.price_down_n3847 {
  margin-left: 0.5rem;
  color: #ff3b77;
}

/* Hero Container */
.hero_main_container_p6374 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero_content_wrapper_q2837 {
  animation: slide_in_left_i3847 1s ease-out;
}

.hero_title_r9283 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero_subtitle_s7364 {
  font-size: 1.25rem;
  color: #8f9bb3;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Search Box */
.search_section_t4738 {
  margin-bottom: 3rem;
}

.search_box_u2937 {
  background: #1a1f29;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  border: 1px solid #2a303c;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.search_box_u2937:focus-within {
  border-color: #00d2ff;
  box-shadow: 0 8px 30px rgba(0, 210, 255, 0.15);
  transform: translateY(-2px);
}

.search_icon_v8273 {
  color: #8f9bb3;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.search_input_w3847 {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  width: 100%;
}

.search_input_w3847::placeholder {
  color: #8f9bb3;
}

.popular_tags_x9283 {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.popular_tags_x9283 span {
  color: #8f9bb3;
}

.tag_item_y4738 {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tag_item_y4738:hover {
  background: rgba(0, 210, 255, 0.1);
  border-color: #00d2ff;
  transform: translateY(-2px);
}

/* Stats Section */
.stats_grid_z1827 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat_card_a9283 {
  background: #1a1f29;
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.3s ease;
  border: 1px solid #2a303c;
}

.stat_card_a9283:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-color: #00d2ff;
}

.stat_icon_b4738 {
  width: 56px;
  height: 56px;
  background: rgba(0, 210, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #00d2ff;
}

.stat_number_d8273 {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, #ffffff, #8f9bb3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat_label_e3847 {
  color: #8f9bb3;
  font-size: 0.95rem;
}

/* Hero Graphic */
.hero_graphic_f2738 {
  position: relative;
  animation: slide_in_right_j4738 1s ease-out;
}

.crypto_chart_g9283 {
  width: 100%;
  height: 400px;
  background: #1a1f29;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid #2a303c;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.crypto_chart_g9283::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #00d2ff, #3a7bd5);
  opacity: 0.05;
}

/* Animations */
@keyframes slide_in_left_i3847 {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide_in_right_j4738 {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ticker_slide_h2738 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Mobile and Tablet Responsive */
@media (max-width: 1200px) {
  .hero_main_container_p6374 {
    padding: 3rem 1.5rem;
    gap: 3rem;
  }

  .hero_title_r9283 {
    font-size: 3rem;
  }
}

@media (max-width: 1024px) {
  .hero_main_container_p6374 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero_graphic_f2738 {
    display: none;
  }

  .stats_grid_z1827 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero_title_r9283 {
    font-size: 2.5rem;
  }

  .hero_subtitle_s7364 {
    font-size: 1.1rem;
  }

  .stats_grid_z1827 {
    grid-template-columns: 1fr;
  }

  .stat_card_a9283 {
    padding: 1.25rem;
  }

  .search_box_u2937 {
    padding: 1rem;
  }

  .popular_tags_x9283 {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero_main_container_p6374 {
    padding: 2rem 1rem;
  }

  .hero_title_r9283 {
    font-size: 2rem;
  }

  .stat_icon_b4738 {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .stat_number_d8273 {
    font-size: 1.5rem;
  }
}

.faq_content_section_x7392 {
  background: #0d1117;
  padding: 5rem 2rem;
}

.faq_container_y8273 {
  max-width: 1200px;
  margin: 0 auto;
}

.faq_categories_z9384 {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.category_btn_a4738 {
  background: #1a1f29;
  border: 1px solid #2a303c;
  color: #8f9bb3;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.category_btn_a4738:hover {
  background: #2a303c;
  color: #ffffff;
  transform: translateY(-2px);
}

.active_category_b2937 {
  background: #00d2ff;
  color: #ffffff;
  border-color: #00d2ff;
}

.faq_grid_c8273 {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.faq_item_d3847 {
  background: #1a1f29;
  border-radius: 16px;
  border: 1px solid #2a303c;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq_item_d3847:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.faq_question_e9283 {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq_question_e9283:hover {
  background: #2a303c;
}

.faq_question_e9283 h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
}

.expand_icon_f4738 {
  color: #00d2ff;
  transition: transform 0.3s ease;
}

.faq_item_d3847.active .expand_icon_f4738 {
  transform: rotate(45deg);
}

.faq_answer_g2937 {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #151b27;
}

.faq_item_d3847.active .faq_answer_g2937 {
  padding: 1.5rem;
  max-height: 500px;
}

.faq_answer_g2937 p {
  color: #8f9bb3;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.learn_more_h8273 {
  color: #00d2ff;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.learn_more_h8273:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.faq_support_i7384 {
  text-align: center;
  margin-top: 4rem;
}

.support_card_j2937 {
  background: linear-gradient(135deg, #1a1f29, #2a303c);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid #2a303c;
  max-width: 500px;
  margin: 0 auto;
}

.support_icon_k8273 {
  width: 80px;
  height: 80px;
  background: rgba(0, 210, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #00c103;
}

.support_card_j2937 h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.support_card_j2937 p {
  color: #8f9bb3;
  margin-bottom: 2rem;
}

.contact_btn_l4738 {
  background: #21f700;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact_btn_l4738:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 210, 255, 0.2);
}

@media (max-width: 768px) {
  .faq_content_section_x7392 {
    padding: 3rem 1rem;
  }

  .category_btn_a4738 {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .faq_question_e9283 h3 {
    font-size: 1rem;
  }

  .support_card_j2937 {
    padding: 2rem 1.5rem;
  }
}
