/* About Page Styles */

/* Hero Section */
.about_hero_tp63_wrapper {
  min-height: 60vh;
  background: linear-gradient(135deg, #0a1128 0%, #1a2342 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about_hero_tp63_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 255, 234, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(112, 0, 255, 0.05) 0%,
      transparent 50%
    );
  animation: about_pulse_tp63 8s ease-in-out infinite;
}

.about_hero_tp63_container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.about_hero_tp63_content {
  text-align: center;
  color: #ffffff;
}

.about_hero_tp63_content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about_hero_tp63_content p {
  font-size: 1.2rem;
  color: #b8b8b8;
  max-width: 600px;
  margin: 0 auto;
}

/* Story Section */
.about_story_tp63_wrapper {
  padding: 6rem 0;
  background: #0a1128;
}

.about_story_tp63_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about_story_tp63_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story_content_tp63 h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.story_content_tp63 p {
  color: #b8b8b8;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.story_stats_tp63 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat_item_tp63 {
  text-align: center;
}

.stat_number_tp63 {
  display: block;
  color: #00ffea;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat_text_tp63 {
  color: #b8b8b8;
  font-size: 0.9rem;
}

.story_image_tp63 img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Values Section */
.values_tp63_wrapper {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a1128 0%, #1a2342 100%);
}

.values_tp63_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.values_tp63_title {
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 4rem;
}

.values_tp63_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value_card_tp63 {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.value_card_tp63:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}

.value_card_tp63 i {
  font-size: 2.5rem;
  color: #00ffea;
  margin-bottom: 1.5rem;
}

.value_card_tp63 h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.value_card_tp63 p {
  color: #b8b8b8;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Team Section */
.team_tp63_wrapper {
  padding: 6rem 0;
  background: #0a1128;
}

.team_tp63_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.team_tp63_title {
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 4rem;
}

.team_tp63_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team_card_tp63 {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.team_card_tp63:hover {
  transform: translateY(-10px);
}

.team_image_tp63 {
  height: 300px;
  overflow: hidden;
}

.team_image_tp63 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  
}

.team_info_tp63 {
  padding: 2rem;
  text-align: center;
}

.team_info_tp63 h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.team_info_tp63 span {
  color: #00ffea;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 1rem;
}

.team_info_tp63 p {
  color: #b8b8b8;
  font-size: 0.9rem;
}

@keyframes about_pulse_tp63 {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
  .about_hero_tp63_content h1 {
    font-size: 2.8rem;
  }

  .about_story_tp63_grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .values_tp63_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team_tp63_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .about_hero_tp63_content h1 {
    font-size: 2.2rem;
  }

  .story_stats_tp63 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .team_tp63_grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .about_hero_tp63_content h1 {
    font-size: 1.8rem;
  }

  .values_tp63_grid {
    grid-template-columns: 1fr;
  }
}

/* section for you tube content */
/* YouTube Content Section Styles */
.youtube_content_wd84_wrapper {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a1128 0%, #1a2342 100%);
  position: relative;
  overflow: hidden;
}

.youtube_content_wd84_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 255, 234, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(112, 0, 255, 0.05) 0%,
      transparent 50%
    );
  animation: youtube_pulse_wd84 8s ease-in-out infinite;
}

.youtube_content_wd84_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.youtube_content_wd84_header {
  text-align: center;
  margin-bottom: 4rem;
}

.youtube_content_wd84_title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.youtube_content_wd84_title_line {
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.youtube_content_wd84_subtitle {
  color: #b8b8b8;
  font-size: 1.2rem;
}

.youtube_content_wd84_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.video_card_wd84 {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.video_card_wd84:hover {
  transform: translateY(-10px);
  border-color: #00ffea;
  box-shadow: 0 20px 40px rgba(0, 255, 234, 0.1);
}

.video_card_wd84.featured {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 234, 0.1),
    rgba(112, 0, 255, 0.1)
  );
  border-color: #00ffea;
}

.video_frame_wd84 {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video_frame_wd84 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video_info_wd84 {
  padding: 2rem;
  position: relative;
}

.featured_badge_wd84 {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
}

.video_info_wd84 h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.video_meta_wd84 {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.video_meta_wd84 span {
  color: #b8b8b8;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.video_meta_wd84 i {
  color: #00ffea;
}

.video_info_wd84 p {
  color: #b8b8b8;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.video_tags_wd84 {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.video_tags_wd84 span {
  background: rgba(255, 255, 255, 0.05);
  color: #00ffea;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* Video Playlist Styles */
.video_playlist_wd84 {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
}

.video_playlist_wd84 h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.playlist_grid_wd84 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.playlist_item_wd84 {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.playlist_item_wd84:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.playlist_thumbnail_wd84 {
  position: relative;
  width: 120px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
}

.playlist_thumbnail_wd84 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duration_badge_wd84 {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.7rem;
}

.playlist_info_wd84 {
  flex: 1;
}

.playlist_info_wd84 h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.playlist_info_wd84 span {
  color: #b8b8b8;
  font-size: 0.8rem;
}

@keyframes youtube_pulse_wd84 {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
  .youtube_content_wd84_grid {
    grid-template-columns: 1fr;
  }

  .playlist_grid_wd84 {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .youtube_content_wd84_title {
    font-size: 2.2rem;
  }

  .playlist_item_wd84 {
    flex-direction: column;
  }

  .playlist_thumbnail_wd84 {
    width: 100%;
    height: 200px;
  }
}

@media screen and (max-width: 480px) {
  .youtube_content_wd84_title {
    font-size: 1.8rem;
  }

  .video_meta_wd84 {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* CMEGCVJ,HCRWFERCFVUJKWEV */
/* Market Insights Section Styles */
.market_insights_lm95_wrapper {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a1128 0%, #1a2342 100%);
  position: relative;
  overflow: hidden;
}

.market_insights_lm95_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 255, 234, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(112, 0, 255, 0.05) 0%,
      transparent 50%
    );
  animation: insights_pulse_lm95 8s ease-in-out infinite;
}

.market_insights_lm95_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.market_insights_lm95_header {
  text-align: center;
  margin-bottom: 4rem;
}

.market_insights_lm95_title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.market_insights_lm95_title_line {
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #00ffea, #7000ff);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.market_insights_lm95_subtitle {
  color: #b8b8b8;
  font-size: 1.2rem;
}

.market_insights_lm95_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.insight_card_lm95 {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
}

.insight_card_lm95:hover {
  transform: translateY(-10px);
  border-color: #00ffea;
  box-shadow: 0 20px 40px rgba(0, 255, 234, 0.1);
}

.card_header_lm95 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.card_header_lm95 h3 {
  color: #ffffff;
  font-size: 1.5rem;
}

.market_status_lm95 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #00ffea;
  font-size: 0.9rem;
}

.status_dot_lm95 {
  width: 8px;
  height: 8px;
  background: #00ffea;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.market_chart_lm95 {
  height: 200px;
  margin-bottom: 2rem;
}

.market_stats_lm95 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat_item_lm95 {
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}

.stat_label_lm95 {
  display: block;
  color: #b8b8b8;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.stat_value_lm95 {
  display: block;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat_change_lm95 {
  font-size: 0.9rem;
  font-weight: 500;
}

.positive .stat_change_lm95 {
  color: #00ff88;
}

.negative .stat_change_lm95 {
  color: #ff4466;
}

/* Analysis Card Styles */
.analysis_date_lm95 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #b8b8b8;
  font-size: 0.9rem;
}

.analysis_content_lm95 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.analysis_item_lm95 {
  display: flex;
  gap: 1rem;
}

.analysis_icon_lm95 {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ffea;
  font-size: 1.2rem;
}

.analysis_text_lm95 h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.analysis_text_lm95 p {
  color: #b8b8b8;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* News Feed Styles */
.news_filter_lm95 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #b8b8b8;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.news_filter_lm95:hover {
  color: #00ffea;
}

.news_list_lm95 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news_item_lm95 {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news_item_lm95:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.news_time_lm95 {
  display: block;
  color: #00ffea;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.news_item_lm95 p {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.news_tags_lm95 {
  display: flex;
  gap: 0.5rem;
}

.news_tags_lm95 span {
  background: rgba(255, 255, 255, 0.05);
  color: #b8b8b8;
  padding: 0.3rem 0.6rem;
  border-radius: 15px;
  font-size: 0.8rem;
}

@keyframes insights_pulse_lm95 {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 255, 234, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 255, 234, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 255, 234, 0);
  }
}

/* Responsive Design */
@media screen and (max-width: 968px) {
  .market_insights_lm95_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insight_card_lm95.overview {
    grid-column: span 2;
  }
}

@media screen and (max-width: 768px) {
  .market_insights_lm95_grid {
    grid-template-columns: 1fr;
  }

  .insight_card_lm95.overview {
    grid-column: auto;
  }

  .market_insights_lm95_title {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 480px) {
  .market_insights_lm95_title {
    font-size: 1.8rem;
  }

  .market_stats_lm95 {
    grid-template-columns: 1fr;
  }
}
