* {
  font-family: Montserrat, sans-serif;
}
.containers {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
body {
  margin: 0;
  padding: 0;
}
.icon {
  color: #f4c203;
  font-size: 20px;
}
.iconText {
  color: #dd5339;
}
a {
  color: inherit;
  text-decoration: none;
}
body {
  font-family: Inter, sans-serif;
  margin: 0;
  padding: 0;
  color: #000;
  background-color: #fff;
}
.home-page-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 60px;
}
.homePageNav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-content: center;
  flex-direction: row;
  color: #fff;
  z-index: 1000;
}
.homePageNav a {
  color: #fff;
  text-decoration: none;
}
.standardBtn {
  background-color: #dd5339;
  color: #fff;
  padding: 10px 30px;
  border: none;
  margin: 2px;
  border-radius: 5px;
  transition: 0.5s;
  cursor: pointer;
}
.standardBtn:hover {
  background-color: #dd5339;
}
.navStart {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.navServiceLinks {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.navEnd {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: row;
}
.navEnd p {
  margin: 5px;
}
.iconSection {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
}
.usFlag {
  width: 30px;
  margin: 20px;
}
.footer-modern {
  width: 100%;
  background: linear-gradient(90deg, #000 60%, #dd5339);
  color: #fff;
  padding: 40px 0 10px;
  font-size: 1rem;
  box-shadow: 0 -2px 24px #a23cf414;
}
.footer-modern-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-brand {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-brand .icon {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 8px;
}
.footer-brand div {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 2px;
  width: 100%;
  text-align: center;
}
.footer-brand p {
  width: 100%;
  text-align: center;
}
.footer-links {
  flex: 2 1 400px;
  display: flex;
  justify-content: center;
}
.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links h4 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.footer-links a {
  color: #e0d7f7;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-social {
  flex: 1 1 120px;
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: flex-end;
}
.footer-social a {
  color: #fff;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #dd5339;
}
.footer-modern-bottom {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  font-size: 0.98rem;
  color: #e0d7f7;
  letter-spacing: 1px;
  opacity: 0.7;
}
.hamburgerBtn {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin-left: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  z-index: 1101;
  display: none;
}
.mobileMenu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #1f0b3af7;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  animation: fadeInMenu 0.3s ease-out forwards;
}
.mobileMenuLinks {
  width: 80vw;
  max-width: 320px;
  background: #fff;
  color: #000;
  box-shadow: -2px 0 24px #19002e14;
  padding: 16px 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 100vh;
  animation: slideInMenu 0.3s ease-out forwards;
}
.mobileMenuLinks a {
  color: #dd5339;
  font-size: 1.15rem;
  text-decoration: none;
  font-weight: 500;
}
.mobileMenuLinks a:hover {
  color: #000;
}
.mobileMenuLinks .standardBtn {
  margin-top: 10px;
  font-size: 1.08rem;
  width: 100%;
}
.closeMenuBtn {
  background: none;
  border: none;
  color: #dd5339;
  font-size: 2.2rem;
  margin-left: auto;
  padding: 18px 18px 0 0;
  cursor: pointer;
}
@keyframes fadeInMenu {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInMenu {
  0% {
    transform: translate(100%);
  }
  to {
    transform: translate(0);
  }
}
.desktopOnly {
  display: flex;
}
.mobileOnly {
  display: none;
}
@media (max-width: 1000px) {
  .footer-modern-content,
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer-social {
    justify-content: center;
  }
  .navEnd {
    width: 10%;
  }
  .animated-img img {
    width: 150px !important;
    height: 150px !important;
  }
  .hamburgerBtn {
    display: block;
  }
  .homePageFirstSection h3 {
    width: 95%;
  }
  .tradechartImg {
    width: 100%;
  }
  .homePageFirstSection h1 {
    font-size: 200%;
    padding: 0;
  }
  .imageSectionThird {
    width: 100%;
    max-width: 300px;
  }
  .imageSectionThird img {
    width: 100%;
  }
  .textSectionThird {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .textSectionThird p {
    font-size: 120%;
    width: 95%;
    color: #303030;
    text-align: center;
  }
  .homePageSecondSection {
    flex-direction: column;
  }
  .discoveryArea {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .animationPoint {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
  }
  .textSectionThird h1 {
    text-align: center;
  }
  .boxesDirection {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .homrPageThirdSection {
    flex-direction: column;
  }
  .homePageFourthSection h3 {
    width: 95%;
    text-align: center;
  }
}
@media (max-width: 1200px) {
  .navServiceLinks.desktopOnly,
  .navEnd .desktopOnly,
  .usFlag.desktopOnly {
    display: none !important;
  }
  .mobileOnly {
    display: inline-flex !important;
  }
  .homePageNav {
    height: 60px;
    padding: 0 10px;
  }
  .iconSection h3.iconText {
    font-size: 1.1rem;
  }
  .hamburgerBtn {
    display: block;
  }
  .navEnd {
    width: 10%;
  }
}
@media (max-width: 1000px) {
  .animated-img img {
    width: 100px !important;
    height: 100px !important;
    margin-left: 50px;
  }
  .hamburgerBtn {
    display: block;
  }
  .navEnd {
    width: 10%;
  }
  .homrPageThirdSection {
    flex-direction: column;
  }
}
:root {
  --primary-bg: #ffffff;
  --secondary-bg: #f8fafc;
  --accent-purple: #dd5339;
  --light-purple: #ff694b;
  --dark-text: #350900;
  --gray-text: #64748b;
  --light-gray: #f1f5f9;
  --white: #ffffff;
  --white-80: rgba(255, 255, 255, 0.8);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-20: rgba(255, 255, 255, 0.2);
  --dark-overlay: #350900;
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: #350900;
  --gradient-primary: linear-gradient(
    135deg,
    #ffffff 0%,
    #f8fafc 50%,
    #ffffff 100%
  );
  --gradient-accent: linear-gradient(135deg, #dd5339 0%, #f86447 100%);
  --gradient-hero: linear-gradient(135deg, black 0%, black 50%, black 100%);
}
._container_n9k8s_27 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
._header_n9k8s_34 {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #fffffff2;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid black;
  padding: 16px 0;
}
._headerContent_n9k8s_45 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
._logo_n9k8s_51 {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark-text);
}
._logoIcon_n9k8s_59 {
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
._logoText_n9k8s_72 {
  font-size: 24px;
  font-weight: 700;
}
._nav_n9k8s_77 {
  display: flex;
  gap: 32px;
}
._nav_n9k8s_77 a {
  color: var(--gray-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
._nav_n9k8s_77 a:hover {
  color: var(--accent-purple);
}
._headerButtons_n9k8s_93 {
  display: flex;
  gap: 16px;
}
._btn_n9k8s_98 {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}
._btnGhost_n9k8s_112 {
  background: transparent;
  color: var(--gray-text);
  border: 1px solid transparent;
}
._btnGhost_n9k8s_112:hover {
  background: var(--light-gray);
  color: var(--accent-purple);
}
._btnPrimary_n9k8s_123 {
  background: var(--accent-purple);
  color: var(--white);
  box-shadow: 0 4px 15px #dd5339;
}
._btnPrimary_n9k8s_123:hover {
  background: #dd5339;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #dd5339;
}
._mobileMenuBtn_n9k8s_135 {
  display: none;
  background: none;
  border: none;
  color: var(--dark-text);
  font-size: 24px;
  cursor: pointer;
}
._mobileMenu_n9k8s_135 {
  display: none;
  padding: 20px 0;
  border-top: 1px solid #2c0700;
}
._mobileNav_n9k8s_150 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
._mobileNav_n9k8s_150 a {
  color: var(--gray-text);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
}
._mobileButtons_n9k8s_163 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
._hero_n9k8s_171 {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
  width: 100%;
  padding: 30px 0;
}
._hero_n9k8s_171:before {
  content: "";
  position: absolute;
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, black 0%, transparent 70%);
  border-radius: 50%;
  animation: _float_n9k8s_1 6s ease-in-out infinite;
}
._hero_n9k8s_171:after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(192, 132, 252, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: _float_n9k8s_1 6s ease-in-out infinite reverse;
}
._heroContent_n9k8s_206 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
._heroTitle_n9k8s_215 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}
._gradientText_n9k8s_222 {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
._heroSubtitle_n9k8s_229 {
  font-size: 1.5rem;
  color: #fffc;
  margin-bottom: 32px;
  line-height: 1.5;
}
._heroButtons_n9k8s_236 {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}
._btnLg_n9k8s_242 {
  padding: 16px 32px;
  font-size: 18px;
}
._statsGrid_n9k8s_247 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
._statItem_n9k8s_253 {
  text-align: center;
}
._statValue_n9k8s_257 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light-purple);
  display: block;
}
._statLabel_n9k8s_264 {
  color: #fff9;
  font-size: 14px;
  margin-top: 4px;
}
._dashboardPreview_n9k8s_271 {
  background: #ffffff1a;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 40px #0003;
}
._dashboardHeader_n9k8s_280 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
._dashboardTitle_n9k8s_287 {
  font-size: 20px;
  font-weight: 600;
}
._trendIndicator_n9k8s_292 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #10b981;
  font-weight: 600;
}
._portfolioValue_n9k8s_300 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
._portfolioLabel_n9k8s_306 {
  color: var(--light-purple);
  margin-bottom: 24px;
}
._chartContainer_n9k8s_311 {
  height: 160px;
  background: linear-gradient(135deg, #4b0d00, #c084fc33);
  border-radius: 12px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
  padding: 16px;
  margin-bottom: 24px;
}
._chartBar_n9k8s_323 {
  background: var(--gradient-accent);
  border-radius: 4px 4px 0 0;
  width: 12px;
}
._assetsList_n9k8s_329 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
._assetItem_n9k8s_335 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #ffffff1a;
  border-radius: 12px;
  transition: all 0.3s ease;
}
._assetInfo_n9k8s_345 {
  display: flex;
  align-items: center;
  gap: 12px;
}
._assetIcon_n9k8s_351 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}
._btcIcon_n9k8s_363 {
  background: #f7931a;
}
._ethIcon_n9k8s_367 {
  background: #627eea;
}
._spyIcon_n9k8s_371 {
  background: #1e40af;
}
._assetDetails_n9k8s_375 h4 {
  font-weight: 600;
  margin-bottom: 2px;
}
._assetAmount_n9k8s_380 {
  font-size: 12px;
  color: #fff9;
}
._assetValue_n9k8s_385 {
  text-align: right;
}
._assetPrice_n9k8s_389 {
  font-weight: 600;
  margin-bottom: 2px;
}
._assetChange_n9k8s_394 {
  font-size: 12px;
  color: #10b981;
}
._positive_n9k8s_399 {
  color: #10b981;
}
._negative_n9k8s_403 {
  color: #ef4444;
}
._section_n9k8s_408 {
  padding: 80px 0;
  position: relative;
}
._sectionHeader_n9k8s_413 {
  text-align: center;
  margin-bottom: 64px;
}
._sectionTitle_n9k8s_418 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}
._sectionSubtitle_n9k8s_424 {
  font-size: 1.25rem;
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto;
}
._featuresGrid_n9k8s_432 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}
._featureCard_n9k8s_438 {
  background: var(--white);
  border: 1px solid #470c00;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px #470c00;
}
._featureCard_n9k8s_438:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px #000;
}
._featureIcon_n9k8s_453 {
  width: 64px;
  height: 64px;
  background: var(--gradient-accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
  color: #fff;
}
._featureTitle_n9k8s_466 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark-text);
}
._featureDescription_n9k8s_473 {
  color: var(--gray-text);
  line-height: 1.6;
}
._cryptoSpotlight_n9k8s_479 {
  background: var(--secondary-bg);
  overflow: hidden;
}
._cryptoContent_n9k8s_484 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
._cryptoText_n9k8s_491 h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark-text);
}
._cryptoDescription_n9k8s_498 {
  font-size: 1.25rem;
  color: var(--gray-text);
  margin-bottom: 32px;
  line-height: 1.6;
}
._cryptoFeatures_n9k8s_505 {
  margin-bottom: 32px;
}
._cryptoFeature_n9k8s_505 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--gray-text);
}
._cryptoFeature_n9k8s_505 i {
  color: var(--accent-purple);
  width: 20px;
}
._cryptoPrices_n9k8s_522 {
  background: var(--white);
  border: 1px solid black;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px #000;
}
._pricesHeader_n9k8s_530 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
._pricesTitle_n9k8s_537 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-text);
}
._liveIndicator_n9k8s_543 {
  color: #10b981;
  font-size: 14px;
}
._priceItem_n9k8s_548 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--light-gray);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
._priceItem_n9k8s_548:hover {
  background: #000;
}
._cryptoInfo_n9k8s_563 {
  display: flex;
  align-items: center;
  gap: 16px;
}
._cryptoIcon_n9k8s_569 {
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}
._cryptoName_n9k8s_581 {
  font-weight: 600;
  color: var(--dark-text);
}
._cryptoSymbol_n9k8s_586 {
  color: var(--gray-text);
  font-size: 14px;
}
._priceData_n9k8s_591 {
  text-align: right;
}
._cryptoPrice_n9k8s_522 {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark-text);
}
._priceChange_n9k8s_601 {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}
._cryptoSummary_n9k8s_608 {
  margin-top: 24px;
  padding: 20px;
  background: var(--gradient-accent);
  border-radius: 12px;
  text-align: center;
  color: #fff;
}
._summaryValue_n9k8s_617 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
._summaryLabel_n9k8s_623 {
  font-size: 14px;
  opacity: 0.9;
}
._advantagesGrid_n9k8s_629 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
._advantageCard_n9k8s_635 {
  background: var(--white);
  border: 1px solid black;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px #000;
}
._advantageCard_n9k8s_635:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px #000;
}
._advantageIcon_n9k8s_649 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  color: var(--accent-purple);
}
._advantageTitle_n9k8s_656 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark-text);
}
._advantageDescription_n9k8s_663 {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 1.6;
}
._authPage_n9k8s_670 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  padding: 24px;
}
._authContainer_n9k8s_679 {
  width: 100%;
  max-width: 450px;
}
._authCard_n9k8s_684 {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px #0000001a;
}
._authLogo_n9k8s_691 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
._authTitle_n9k8s_699 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: var(--dark-text);
}
._authSubtitle_n9k8s_707 {
  text-align: center;
  color: var(--gray-text);
  margin-bottom: 32px;
}
._authForm_n9k8s_713 {
  margin-bottom: 24px;
}
._formGroup_n9k8s_717 {
  margin-bottom: 20px;
}
._formRow_n9k8s_721 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
._formGroup_n9k8s_717 label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-text);
}
._formGroup_n9k8s_717 input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}
._formGroup_n9k8s_717 input:focus {
  outline: none;
  border-color: var(--accent-purple);
}
._formOptions_n9k8s_748 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
._checkboxLabel_n9k8s_755 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-text);
}
._forgotLink_n9k8s_763 {
  color: var(--accent-purple);
  text-decoration: none;
  font-size: 14px;
}
._btnFull_n9k8s_769 {
  width: 100%;
  justify-content: center;
}
._authDivider_n9k8s_774 {
  text-align: center;
  margin: 24px 0;
  position: relative;
  color: var(--gray-text);
  font-size: 14px;
}
._authDivider_n9k8s_774:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e2e8f0;
  z-index: 1;
}
._authDivider_n9k8s_774 span {
  background: var(--white);
  padding: 0 16px;
  position: relative;
  z-index: 2;
}
._socialButtons_n9k8s_800 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
._btnSocial_n9k8s_807 {
  background: var(--light-gray);
  color: var(--gray-text);
  border: 1px solid #e2e8f0;
  justify-content: center;
}
._btnSocial_n9k8s_807:hover {
  background: #e2e8f0;
}
._authSwitch_n9k8s_818 {
  text-align: center;
  color: var(--gray-text);
}
._authSwitch_n9k8s_818 a {
  color: var(--accent-purple);
  text-decoration: none;
  font-weight: 500;
}
@keyframes _float_n9k8s_1 {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
._trustMetrics_n9k8s_836 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}
._metricCard_n9k8s_843 {
  background: var(--white);
  border: 1px solid black;
  border-radius: 18px;
  padding: 32px 20px;
  text-align: center;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  box-shadow: 0 4px 16px #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}
._metricCard_n9k8s_843:hover {
  box-shadow: 0 10px 32px #000;
  transform: translateY(-4px) scale(1.03);
}
._metricValue_n9k8s_861 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-purple);
  margin-bottom: 8px;
}
._metricLabel_n9k8s_868 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 6px;
}
._metricDescription_n9k8s_875 {
  color: var(--gray-text);
  font-size: 0.98rem;
  opacity: 0.85;
}
._securitySection_n9k8s_882 {
  background: var(--secondary-bg);
  border-radius: 20px;
  padding: 48px 32px;
  margin-bottom: 0;
  margin-top: 32px;
  box-shadow: 0 4px 24px #000;
}
._securityContent_n9k8s_891 {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}
._securityText_n9k8s_899 {
  flex: 1 1 340px;
  min-width: 280px;
}
._securityText_n9k8s_899 h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--dark-text);
}
._securityDescription_n9k8s_911 {
  color: var(--gray-text);
  font-size: 1.08rem;
  margin-bottom: 18px;
}
._securityFeatures_n9k8s_917 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
._securityFeature_n9k8s_917 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-text);
  font-size: 1rem;
}
._securityFeature_n9k8s_917 i {
  color: var(--accent-purple);
  font-size: 1.1rem;
}
._securityVisual_n9k8s_936 {
  flex: 1 1 260px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
._securityCard_n9k8s_944 {
  background: var(--white);
  border: 1.5px solid black;
  border-radius: 18px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 16px #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
._securityCard_n9k8s_944:hover {
  box-shadow: 0 10px 32px #a23cf421;
  transform: translateY(-4px) scale(1.03);
}
._securityIcon_n9k8s_962 {
  background: var(--gradient-accent);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #fff;
  font-size: 2rem;
}
._securityTitle_n9k8s_975 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-purple);
  margin-bottom: 8px;
}
._protectedAmount_n9k8s_982 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
}
._protectionDescription_n9k8s_989 {
  color: var(--gray-text);
  font-size: 1rem;
  opacity: 0.85;
}
@media (max-width: 900px) {
  ._securityContent_n9k8s_891 {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  ._securityVisual_n9k8s_936 {
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  ._trustMetrics_n9k8s_836 {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  ._securitySection_n9k8s_882 {
    padding: 28px 8px;
  }
  ._securityCard_n9k8s_944 {
    padding: 24px 8px;
  }
}
@media (max-width: 1024px) {
  ._heroContent_n9k8s_206,
  ._cryptoContent_n9k8s_484 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  ._heroTitle_n9k8s_215 {
    font-size: 3.5rem;
  }
  ._sectionTitle_n9k8s_418 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  ._nav_n9k8s_77,
  ._headerButtons_n9k8s_93 {
    display: none;
  }
  ._navOpen_n9k8s_1042,
  ._buttonsOpen_n9k8s_1043 {
    display: flex;
  }
  ._mobileMenuBtn_n9k8s_135,
  ._mobileMenu_n9k8s_135 {
    display: block;
  }
  ._heroTitle_n9k8s_215 {
    font-size: 2.5rem;
  }
  ._heroSubtitle_n9k8s_229 {
    font-size: 1.25rem;
  }
  ._statsGrid_n9k8s_247 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  ._heroButtons_n9k8s_236 {
    flex-direction: column;
    gap: 16px;
  }
  ._featuresGrid_n9k8s_432,
  ._advantagesGrid_n9k8s_629,
  ._formRow_n9k8s_721,
  ._socialButtons_n9k8s_800 {
    grid-template-columns: 1fr;
  }
  ._authCard_n9k8s_684 {
    padding: 32px 24px;
  }
}
@media (max-width: 480px) {
  ._container_n9k8s_27 {
    padding: 0 16px;
  }
  ._heroTitle_n9k8s_215,
  ._sectionTitle_n9k8s_418 {
    font-size: 2rem;
  }
  ._authCard_n9k8s_684 {
    padding: 24px;
  }
}
.signup-interface {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(120deg, #f5f1fa 60%, #dd5339);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding-top: 80px;
}
.formInputsSign {
  box-sizing: border-box;
}
.signupForm {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px #a23cf41a;
  padding: 40px 32px 32px;
  max-width: 400px;
  width: 100%;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.topLayer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 1.5rem;
  color: #dd5339;
  font-weight: 700;
  letter-spacing: 1px;
  width: 100%;
  justify-content: center;
  font-size: 150%;
  text-align: center;
}
.welcomeBack {
  width: 100%;
  text-align: center;
}
.formInputsSign {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.formInputsSign input[type="text"],
.formInputsSign input[type="email"],
.formInputsSign input[type="password"] {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 16px;
  border: 1.5px solid #e3d7f7;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  background: #faf8fd;
  color: #000;
  transition: border 0.2s;
}
.formInputsSign input:focus {
  border: 1.5px solid #dd5339;
  background: #fff;
}
.passwordInputWrapper {
  position: relative;
  width: 100%;
}
.togglePassword {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #dd5339;
  font-size: 1.1rem;
  opacity: 0.8;
  transition: color 0.2s;
}
.togglePassword:hover {
  color: #000;
  opacity: 1;
}
.termsRow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  margin-top: 8px;
  color: #000;
}
.termsRow a {
  color: #dd5339;
  text-decoration: underline;
  margin: 0 2px;
}
.signupBtn {
  width: 100%;
  background: linear-gradient(90deg, #dd5339 60%, #000);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px 0;
  font-size: 1.08rem;
  font-weight: 700;
  margin-top: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s;
}
.signupBtn:hover {
  background: linear-gradient(90deg, #000 60%, #dd5339);
}
.orDivider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 10px;
}
.orDivider span {
  flex: 1;
  height: 1px;
  background: #e3d7f7;
}
.orDivider p {
  margin: 0;
  color: #dd5339;
  font-weight: 500;
  font-size: 1rem;
}
.googleBtn {
  width: 100%;
  background: #fff;
  color: #000;
  border: 1.5px solid #dd5339;
  border-radius: 12px;
  padding: 12px 0;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    background 0.2s,
    color 0.2s;
}
.googleBtn:hover {
  background: #dd5339;
  color: #fff;
}
.forgotRow {
  margin-top: 12px;
  text-align: right;
}
.forgotLink {
  color: #dd5339;
  font-size: 0.98rem;
  text-decoration: none;
  transition: color 0.2s;
}
.forgotLink:hover {
  color: #000;
  text-decoration: underline;
}
.loginRow {
  margin-top: 18px;
  text-align: center;
  font-size: 1rem;
  color: #000;
}
.loginRow a {
  color: #dd5339;
  text-decoration: underline;
  margin-left: 4px;
}
.codeModal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  padding: 24px;
  background: #ffffff1f;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: 0 -4px 40px #0003;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.codeModalContent {
  max-width: 400px;
  width: 100%;
  text-align: center;
  background: #ffffff14;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 24px #0000001a;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.codeModalContent h4 {
  color: #000;
  margin-bottom: 8px;
  font-weight: 600;
}
.codeModalContent p {
  font-size: 0.95rem;
  color: #5a5a5a;
  margin-bottom: 16px;
}
.codeBoxes {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}
.codeInput {
  width: 42px;
  height: 50px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 12px;
  background: #ffffff26;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 6px #00000026;
  color: #000;
  outline: none;
  transition:
    border 0.2s ease,
    background 0.3s ease;
}
.codeInput:focus {
  border: 2px solid #dd5339;
  background: #fff3;
}
.verifyBtn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #a23cf4e6, #1f0b3ae6);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 18px #a23cf433;
  transition:
    background 0.2s ease,
    transform 0.1s ease;
}
.verifyBtn:hover {
  transform: translateY(-1px);
}
.verifyBtn:disabled {
  background: #000;
  color: #fff9;
  cursor: not-allowed;
  box-shadow: none;
  transition: 0.3s;
}
@media (max-width: 600px) {
  .signup-interface {
    background: #fff;
  }
  .signupForm {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 18px;
    max-width: 100vw;
    margin: 0;
    align-items: stretch;
  }
  .formInputsSign {
    padding: 0 5vw;
    gap: 14px;
  }
  .formInputsSign input[type="text"],
  .formInputsSign input[type="email"],
  .formInputsSign input[type="password"] {
    font-size: 0.98rem;
    padding: 12px;
  }
  .iconText {
    font-size: 1rem;
  }
  .signupBtn,
  .googleBtn {
    font-size: 0.98rem;
    padding: 12px 0;
  }
  .formInputsSign {
    box-sizing: border-box;
  }
}
.authpage-interface {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(120deg, #f5f1fa 60%, #dd5339);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding-top: 80px;
}
.authpage-form {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px #a23cf41a;
  padding: 40px 32px 32px;
  max-width: 400px;
  width: 100%;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.authpage-formInputs {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-sizing: border-box;
}
.authpage-formInputs input[type="email"],
.authpage-formInputs input[type="password"],
.authpage-formInputs input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 16px;
  border: 1.5px solid #e3d7f7;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  background: #faf8fd;
  color: #000;
  transition: border 0.2s;
}
.authpage-formInputs input:focus {
  border: 1.5px solid #dd5339;
  background: #fff;
}
.authpage-passwordInputWrapper {
  position: relative;
  width: 100%;
}
.authpage-togglePassword {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #dd5339;
  font-size: 1.1rem;
  opacity: 0.8;
  transition: color 0.2s;
}
.authpage-togglePassword:hover {
  color: #000;
  opacity: 1;
}
.authpage-forgotRow {
  margin-top: 4px;
  text-align: right;
}
.authpage-forgotLink {
  color: #dd5339;
  font-size: 0.98rem;
  text-decoration: none;
  transition: color 0.2s;
}
.authpage-forgotLink:hover {
  color: #000;
  text-decoration: underline;
}
.authpage-loginBtn {
  width: 100%;
  background: linear-gradient(90deg, #dd5339 60%, #000);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px 0;
  font-size: 1.08rem;
  font-weight: 700;
  margin-top: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s;
}
.authpage-loginBtn:hover {
  background: linear-gradient(90deg, #000 60%, #dd5339);
}
.authpage-orDivider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 10px;
}
.authpage-orDivider span {
  flex: 1;
  height: 1px;
  background: #e3d7f7;
}
.authpage-orDivider p {
  margin: 0;
  color: #dd5339;
  font-weight: 500;
  font-size: 1rem;
}
.authpage-googleBtn {
  width: 100%;
  background: #fff;
  color: #000;
  border: 1.5px solid #dd5339;
  border-radius: 12px;
  padding: 12px 0;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    background 0.2s,
    color 0.2s;
}
.authpage-googleBtn:hover {
  background: #dd5339;
  color: #fff;
}
.authpage-loginRow {
  margin-top: 18px;
  text-align: center;
  font-size: 1rem;
  color: #000;
}
.authpage-loginRow a {
  color: #dd5339;
  text-decoration: underline;
  margin-left: 4px;
}
@media (max-width: 600px) {
  .authpage-form {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 18px;
    max-width: 100vw;
    margin: 0;
    align-items: stretch;
  }
  .authpage-interface {
    background: #fff;
  }
  .authpage-formInputs {
    padding: 0 5vw;
    gap: 14px;
  }
  .authpage-formInputs input[type="email"],
  .authpage-formInputs input[type="password"] {
    font-size: 0.98rem;
    padding: 12px;
  }
  .authpage-topLayer {
    font-size: 1.1rem;
    padding: 20px 5vw 0;
  }
  .iconText {
    font-size: 1rem;
  }
  .authpage-loginBtn,
  .authpage-googleBtn {
    font-size: 0.98rem;
    padding: 12px 0;
  }
}
.userDashboard {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 70px;
  padding-bottom: 20px;
}
.DashboardNavigationIntergace {
  width: 100%;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-bottom: 1px solid rgb(194, 194, 194);
}
.unread-count {
  position: absolute;
  top: -5px;
  right: 10px;
  background-color: red;
  color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 10px;
}
.horizontal-interface {
  width: 100%;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-bottom: 1px solid rgb(194, 194, 194);
  z-index: 50;
}
.searchbox {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.search-area {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
}
.search-area input {
  width: 30%;
  padding: 5px 10px 5px 35px;
  border-radius: 5px;
  border: none;
  outline: none;
  background-color: #e9e9e9;
  height: 30px;
}
.nav-dp {
  width: 70px;
  height: 70px;
  border-radius: 70px;
}
.bsElaem {
  position: absolute;
  left: 33.5%;
  top: 33%;
  color: #000;
  border-radius: 30px;
}
.dashboard-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1f0b3a73;
  z-index: 1000;
  transition: opacity 0.3s;
}
.SideNavD {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #000;
  color: #fff;
  padding-top: 5px;
  z-index: 1100;
  transition:
    width 0.3s cubic-bezier(0.77, 0, 0.18, 1),
    box-shadow 0.3s;
  box-shadow: 2px 0 24px #1f0b3a14;
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}
.SideNavD.expanded {
  width: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.SideNavD.collapsed {
  width: 70px;
}
.side-nav-top {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}
.close,
.expand {
  cursor: pointer;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
.close svg,
.expand svg {
  width: 30px;
  height: 30px;
  color: #dd5339;
}
.side-nav-profile-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.nav-dp {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid #dd5339;
  object-fit: cover;
}
.nav-items-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
}
.nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 8px;
  transition:
    background 0.18s,
    color 0.18s;
  position: relative;
}
.item-icon {
  width: 34px;
  min-width: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.item-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
  transition: color 0.18s;
}
.nav-item:hover .item-icon svg,
.nav-item.hovered .item-icon svg {
  color: #dd5339;
}
.item-name {
  margin-left: 18px;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition:
    opacity 0.2s,
    margin 0.2s;
  color: inherit;
  position: relative;
}
.SideNavD.collapsed .item-name {
  margin-left: 0;
  opacity: 0;
  width: 0;
  pointer-events: none;
}
.SideNavD.collapsed .nav-item:hover .item-name,
.SideNavD.collapsed .nav-item.hovered .item-name {
  opacity: 1;
  width: auto;
  pointer-events: auto;
}
.sidebar-tooltip {
  position: absolute;
  left: 44px;
  top: 50%;
  transform: translateY(-50%) scale(0.95);
  background: #fff;
  color: #000;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 12px #1f0b3a1a;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1000px;
  transition:
    opacity 0.18s,
    transform 0.18s;
}
.nav-item.hovered .sidebar-tooltip,
.nav-item:hover .sidebar-tooltip {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  pointer-events: auto;
}
@media (max-width: 900px) {
  .SideNavD.expand {
    overflow-y: scroll;
  }
  .search-area input {
    width: 75%;
    padding: 5px 10px 5px 35px;
    border-radius: 5px;
    border: none;
    outline: none;
    background-color: #e9e9e9;
    height: 30px;
  }
  .bsElaem {
    position: absolute;
    left: 10%;
    top: 33%;
    color: #000;
    border-radius: 30px;
  }
}
.notification-panel-interface {
  position: fixed;
  top: 60px;
  right: 30px;
  width: 400px;
  height: 500px;
  background-color: #000;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0 0 12px #0003;
  overflow: hidden;
  padding-bottom: 30px;
}
.when-theres-no-notification {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
}
.no-notification-div {
  font-size: 60px;
  margin-bottom: 12px;
}
.notifications-if-there-is {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.scrolls {
  overflow-y: scroll;
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scrolls::-webkit-scrollbar {
  width: 6px;
}
.scrolls::-webkit-scrollbar-thumb {
  background: #dd5339;
  border-radius: 4px;
}
.scrolls::-webkit-scrollbar-track {
  background: #000;
}
.notification {
  display: flex;
  height: 50px;
  align-items: center;
  padding: 12px 10px;
  border-radius: 12px;
  text-decoration: none;
  background-color: #dd5339;
  transition: background 0.2s ease;
}
.notification:hover {
  background-color: #dd5339;
}
.read {
  opacity: 0.8;
}
.unread {
  font-weight: 600;
}
.icon-area {
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.notificationText {
  flex: 1;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
}
.notificationText p {
  margin: 2px 0;
}
.actual-text {
  font-size: 14px;
}
.time-note {
  font-size: 12px;
  color: #ddd;
}
.top-area-notification {
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  color: #fff;
}
.top-area-notification p {
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .notification-panel-interface {
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 100vh;
    border-radius: 0;
  }
}
.app-feed-interface {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  margin-top: 5px;
}
.app-feed-main {
  flex: 1;
  height: 300px;
  overflow-y: scroll;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  flex-direction: column;
}
.app-feed-main::-webkit-scrollbar {
  width: 10px;
}
@media screen and (max-width: 768px) {
  .app-feed-main {
    scrollbar-width: none;
    padding-right: 0;
    margin-top: 10px;
    height: 100%;
  }
  .app-feed-main::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .app-feed-notice {
    display: none;
  }
}
.app-feed-notice {
  width: 45%;
  flex-shrink: 0;
  position: sticky;
  top: 20px;
  height: fit-content;
  border-radius: 8px;
  padding: 16px;
  font-size: 14px;
  color: #444;
  box-shadow: 0 0 10px #0000000d;
  overflow-y: scroll;
}
.app-feed-card {
  background: #fff;
  width: 95%;
  max-width: 600px;
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px #0000000d;
  border: 1px solid gray;
}
.app-feed-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.app-feed-header img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #dd5339;
}
.app-feed-header h4 {
  margin: 0;
  font-size: 16px;
  color: #222;
}
.app-feed-header p {
  margin: 0;
  font-size: 12px;
  color: #777;
}
.app-feed-content p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 12px;
}
.app-feed-read-more {
  color: #dd5339;
  font-weight: 500;
  cursor: pointer;
  margin-left: 4px;
}
.app-feed-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.app-feed-image:hover {
  transform: scale(1.01);
}
.app-feed-actions {
  display: flex;
  gap: 20px;
  margin-top: 14px;
}
.app-feed-actions button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  transition: all 0.2s ease;
}
.app-feed-actions button:hover {
  color: #dd5339;
}
.app-feed-icon svg {
  width: 20px;
  height: 20px;
  transition: all 0.2s ease;
}
.app-feed-like-btn.liked {
  color: #dd5339;
}
.app-feed-like-btn.liked svg {
  fill: #dd5339;
}
.app-feed-skeleton {
  background: #f0f0f0;
  animation: pulse 1.5s infinite ease-in-out;
}
.app-feed-skel-header {
  width: 120px;
  height: 16px;
  background: #ddd;
  margin-bottom: 8px;
  border-radius: 4px;
}
.app-feed-skel-line {
  height: 12px;
  background: #ddd;
  margin: 6px 0;
  border-radius: 4px;
}
.app-feed-skel-line.short {
  width: 60%;
}
.app-feed-skel-line.long {
  width: 90%;
}
.app-feed-skel-img {
  height: 200px;
  background: #ccc;
  border-radius: 10px;
  margin-top: 10px;
}
@keyframes pulse {
  0% {
    background-color: #f0f0f0;
  }
  50% {
    background-color: #e2e2e2;
  }
  to {
    background-color: #f0f0f0;
  }
}
.app-feed-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #141414f2;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-feed-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 30px #0006;
}
.geo-map-container {
  border-radius: 10px;
  margin-top: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.geo-map-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #111;
  margin-bottom: 25px;
}
.world-map {
  width: 100% !important;
  height: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.world-map-tooltip {
  border-radius: 5px;
  font-weight: 500;
  padding: 8px;
}
.sliding-stocks-component {
  position: relative;
  width: 100%;
  height: 50px;
  overflow: hidden;
  background-color: #000;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.sliding-stocks-component:before,
.sliding-stocks-component:after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.sliding-stocks-component:before {
  left: 0;
  background: linear-gradient(to right, #000, #000);
}
.sliding-stocks-component:after {
  right: 0;
  background: linear-gradient(to left, #000, #000);
}
.sliding-track {
  display: flex;
  width: max-content;
  animation: slide-left 200s linear infinite;
  z-index: 1;
}
@keyframes slide-left {
  0% {
    transform: translate(0);
  }
  to {
    transform: translate(-50%);
  }
}
.stock-item {
  display: flex;
  align-items: center;
  padding: 0 20px;
  min-width: 150px;
  font-size: 14px;
  white-space: nowrap;
}
.stock-symbol {
  font-weight: 600;
  margin-right: 6px;
  color: #dd5339;
}
.stock-price {
  margin-right: 6px;
}
.stock-change.positive {
  color: #00ff95;
}
.stock-change.negative {
  color: #ff4b4b;
}
@media (max-width: 600px) {
  .stock-item {
    padding: 0 10px;
    font-size: 12px;
  }
}
.user-market-page {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  flex-direction: column;
}
.market {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.market-p,
.explpore-m {
  width: 100%;
  text-align: start;
  margin: 5px 5px 5px 25px;
}
.market-items {
  width: 100%;
  overflow: hidden;
}
.scrollables {
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  align-items: stretch;
}
.marketItem {
  min-width: 380px;
  height: 250px;
  border-radius: 10px;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
}
.marketItem img {
  width: 100px;
}
.boldItemsMrkt,
.lightItemsMrkt {
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.bitcoin-card {
  background: linear-gradient(135deg, #f7931a, #ffb347);
  color: #fff;
}
.amazon-card {
  background: linear-gradient(135deg, #232f3e, #000);
  color: #fff;
}
.cardano-card {
  background: linear-gradient(135deg, #0033ad, #001c55);
  color: #fff;
}
.etherum-card {
  background: linear-gradient(135deg, #0a0a23, #3c3c3c);
  color: #fff;
}
.testla-card {
  background: linear-gradient(135deg, #e82127, #9a0000);
  color: #fff;
}
.ishares-card {
  background: linear-gradient(135deg, #00a651, #2e7d32);
  color: #fff;
}
@media (max-width: 900px) {
  .market {
    width: 95%;
  }
  .marketItem {
    min-width: 300px;
    height: 250px;
    border-radius: 10px;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
  }
}
.copyTraders {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-top: 50px;
}
.traders {
  width: 100%;
  overflow: hidden;
}
.tradersTop {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}
.tradersTop h1 {
  font-weight: 700;
  margin: 5px 0;
}
.tradersTop p {
  color: gray;
  margin: 2px 0 20px;
}
.trader {
  min-width: 220px;
  background-color: #fff;
  box-shadow: 0 0 15px #0003;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 10px;
  padding: 5px 0;
  border-radius: 10px;
  height: 300px;
}
.traders-image {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 160px;
  margin-bottom: 10px;
}
.traders-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.traders-name {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.traders-name p {
  margin: 2px;
}
.traders-name-bold {
  font-weight: 700;
}
.return-on-investment {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.return-on-investment h1 {
  font-size: 110%;
  margin-top: 10px;
}
.return-label {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.return-label p {
  font-size: 80%;
  margin: 0;
  color: gray;
}
.green {
  color: #0dce0d;
}
.username {
  color: gray;
}
.red {
  color: red;
}
.skeleton {
  background-color: #f0f0f0;
  animation: pulse 1.5s infinite ease-in-out;
}
.skeleton-img {
  width: 120px;
  height: 120px;
  border-radius: 160px;
  background-color: #ddd;
}
.skeleton-line {
  height: 10px;
  background-color: #ddd;
  border-radius: 5px;
  margin: 5px 0;
}
.skeleton-line.short {
  width: 60px;
}
.skeleton-line.shorter {
  width: 40px;
}
.skeleton-line.tiny {
  width: 30px;
}
@keyframes pulse {
  0% {
    background-color: #eee;
  }
  50% {
    background-color: #ddd;
  }
  to {
    background-color: #eee;
  }
}
.smart-profiles-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.smart-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  text-align: center;
}
.smart-profiles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
}
.smart-profile-card {
  width: 100%;
  max-width: 300px;
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 25px #0006;
  transition: transform 0.3s ease;
}
.smart-profile-card:hover {
  transform: scale(1.02);
}
.smart-profile-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: #fff;
  text-align: left;
}
.smart-profile-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 5px;
}
.smart-profile-profit {
  font-size: 1.1rem;
  font-weight: 500;
  color: #00ff8c;
  margin: 0 0 8px;
}
.smart-profile-extra {
  font-size: 0.9rem;
  color: #ccc;
}
@media screen and (max-width: 768px) {
  .smart-profiles-grid {
    flex-direction: column;
    align-items: center;
  }
  .smart-profile-card {
    max-width: 90%;
  }
}
.invested-assets-container {
  width: 100%;
  background-color: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.invested-assets-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
.invested-assets-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.asset-card {
  background-color: #1a1a1a;
  border: 1px solid #2c2c2c;
  color: #fff;
  border-radius: 14px;
  padding: 20px;
  width: 250px;
  height: 180px;
  box-shadow: 0 4px 12px #00000059;
  position: relative;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.asset-card:hover {
  border-color: #00ffb3;
  box-shadow: 0 0 20px #00ffb333;
}
.asset-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.asset-name {
  font-weight: 600;
  font-size: 1rem;
}
.asset-value {
  font-size: 1rem;
  color: #00ff8c;
  font-weight: 500;
}
.asset-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.asset-bar {
  width: 100%;
  height: 8px;
  background-color: #2e2e2e;
  border-radius: 10px;
  overflow: hidden;
}
.asset-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ff8c, #00c2ff);
  transition: width 0.4s ease-in-out;
}
.asset-percent {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 5px;
}
.asset-hover-info {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: #141414f2;
  padding: 15px;
  font-size: 0.85rem;
  color: #ccc;
  transition: bottom 0.3s ease;
  border-top: 1px solid #2c2c2c;
}
.asset-card:hover .asset-hover-info {
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .asset-card {
    width: 90%;
    height: auto;
  }
  .asset-hover-info {
    position: static;
    border-top: none;
    padding-top: 10px;
    margin-top: 10px;
    background: transparent;
    color: #bbb;
  }
  .asset-card:hover .asset-hover-info {
    bottom: unset;
  }
}
.cryptoComponent {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.etf-component {
  width: 100%;
  box-sizing: border-box;
}
.etf-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.etf-filters {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.etf-filters select {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
}
.etf-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.etf-row {
  display: grid;
  grid-template-columns: 60px repeat(8, 1fr);
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafafa;
  transition: background 0.2s ease;
}
.etf-row:hover {
  background: #f0f8ff;
}
.etf-head {
  background: #e6f0ff;
  font-weight: 700;
}
.etf-logo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-transform: uppercase;
}
.etf-load-more {
  margin-top: 20px;
  padding: 10px 18px;
  background: #dd5339;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.etf-load-more:hover {
  background: #c47cff;
}
@media screen and (max-width: 768px) {
  .etf-row {
    grid-template-columns: repeat(2, 1fr);
    font-size: 12px;
  }
  .etf-head {
    display: none;
  }
}
.wallet-interface {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 10px;
}
.area {
  width: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.wallet-interface-user-balance-area {
  background-color: #fff;
  width: 100%;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 10px;
  box-shadow:
    0 4px 8px #00000026,
    0 6px 20px #0000001a;
}
.wallet-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wallet-top p {
  margin: 10px;
  font-weight: 700;
  font-size: 15px;
  color: #a5a5a5;
}
.wallet-actual-balanec {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}
.wallet-actual-balanec p,
.wallet-actual-balanec button {
  margin: 6px 20px;
}
.wallet-actual-balanec p {
  font-size: 220%;
  font-weight: 700;
}
.wallet-actual-balanec button {
  padding: 10px 40px;
  background-color: #dd5339;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.6s ease-in;
}
.wallet-actual-balanec button:hover {
  background-color: #c782ff;
}
.bar {
  width: 70%;
  height: 1px;
  background-color: #bbb;
  border-radius: 2px;
}
.walletSeelction-Method {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  margin: 8px 0;
  padding: 0 8px;
}
.walletSeelction-Method div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.walletSeelction-Method input[type="radio"] {
  accent-color: #dd5339;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.walletSeelction-Method p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 500;
  color: #25124b;
  background: none;
  width: auto;
}
.wallet-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0009;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.wallet-modal {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 30px #0003;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.wallet-modal input {
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}
.wallet-modal button {
  background-color: #dd5339;
  color: #fff;
  border: none;
  padding: 10px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
}
.wallet-modal button:hover {
  background-color: #c782ff;
}
.wallet-modal-close {
  background-color: #eee !important;
  color: #333 !important;
}
.wallet-channel-card {
  padding: 15px;
  margin-bottom: 10px;
  background: #f9f9f9;
  border-left: 5px solid #dd5339;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .area {
    width: 97%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.portfolio-interface-area {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 70px;
  padding-bottom: 120px;
}
.skeleton {
  background: #f0f0f0;
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 130px;
}
.skeleton-title,
.skeleton-line {
  background: #ccc;
  height: 20px;
  border-radius: 5px;
}
.skeleton-title {
  width: 60%;
  margin-bottom: 10px;
}
.skeleton-line {
  width: 90%;
  height: 16px;
  margin-bottom: 8px;
}
.skeleton-line.short {
  width: 60%;
}
.shimmer {
  background: linear-gradient(90deg, #e0e0e0 25%, #f8f8f8, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.3s infinite;
}
.tradePanel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500px;
  background-color: #fff;
  height: 100px;
  border: 1px solid grey;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.tradePanel div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1px solid rgb(224, 224, 224);
  height: 100%;
}
.tradePanel div p {
  margin: 2px;
  padding: 2px;
}
.mainValue {
  font-size: 160%;
  font-weight: 700;
}
.subText {
  color: gray;
}
.pnl-profit {
  color: #10b981;
}
.pnl-loss {
  color: #f87171;
}
.ovalueBal {
  color: #5252ff;
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  to {
    background-position: 200% 0;
  }
}
@media screen and (max-width: 768px) {
  .mainValue {
    font-size: 100%;
    font-weight: 700;
  }
  .subText {
    color: gray;
    font-size: 60%;
  }
}
.settings-interface-area {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 20px;
}
.settings-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.settings-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
}
.settings-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px #1f0b3a0f;
  width: 70%;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.settings-profile {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.settings-profile-pic {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ececec;
}
.settings-profile-name {
  font-size: 1.25rem;
  font-weight: 600;
}
.settings-profile-email {
  color: #888;
  font-size: 1rem;
  margin-top: 4px;
}
.settings-divider {
  margin: 24px 0;
  border: none;
  border-top: 1px solid #eee;
}
.settings-fields label {
  display: block;
  margin-bottom: 18px;
  font-weight: 500;
}
.settings-fields input {
  width: 90%;
  padding: 8px 12px;
  margin-top: 6px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  background: #fafbfc;
}
.settings-actions {
  margin-top: 24px;
}
.settings-loading {
  font-size: 1.1rem;
  color: #888;
}
.settings-section-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #000;
}
.settings-image-upload {
  margin-bottom: 20px;
}
.settings-image-upload input[type="file"] {
  display: block;
  margin-top: 8px;
}
.settings-fields label {
  display: flex;
  margin-bottom: 18px;
  font-weight: 500;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.settings-fields label p {
  width: 100%;
  text-align: start;
  margin-left: 20px;
}
.settings-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  font-size: 1rem;
  margin-right: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.settings-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
@media screen and (max-width: 768px) {
  .settings-card {
    width: 95%;
  }
}
._userProfileArea_135gz_1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 48px;
  padding-top: 40px;
}
._profileContainer_135gz_10 {
  width: 100%;
  max-width: 900px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
._profileCard_135gz_19 {
  background: #fff;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}
._profileHeader_135gz_28 {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-bottom: 18px;
}
._avatar_135gz_35 {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #dd5339;
}
._name_135gz_43 {
  font-size: 2rem;
  font-weight: 700;
  color: #25124b;
  display: flex;
  align-items: center;
  gap: 10px;
}
._verified_135gz_52 {
  color: #4f46e5;
  font-size: 1.3rem;
  margin-left: 6px;
}
._username_135gz_58 {
  color: #dd5339;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
._bio_135gz_65 {
  color: #64748b;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
._meta_135gz_71 {
  color: #888;
  font-size: 0.98rem;
  display: flex;
  gap: 18px;
  margin-top: 6px;
}
._badges_135gz_79 {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
._badge_135gz_79 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 16px;
  background: #f3e8ff;
  color: #dd5339;
}
._statsGrid_135gz_98 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 18px;
  margin-top: 18px;
}
._statValue_135gz_105 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #25124b;
}
._statLabel_135gz_111 {
  color: #888;
  font-size: 0.98rem;
}
._recentActivity_135gz_116 {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
}
._recentActivity_135gz_116 h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #dd5339;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
._activityList_135gz_132 {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  margin-top: 8px;
  overflow-x: scroll;
  width: 100%;
}
._activityItem_135gz_144 {
  display: grid;
  grid-template-columns: 70px 80px 90px 120px 110px 1fr;
  align-items: center;
  gap: 0;
  padding: 12px 0;
  border-bottom: 1px solid #f3e8ff;
  font-size: 1rem;
  background: #fff;
  transition: background 0.2s;
}
._activityItem_135gz_144:first-child {
  background: #f3e8ff;
  font-weight: 700;
  color: #dd5339;
  border-bottom: 2px solid #e9d5ff;
}
._activityItem_135gz_144:last-child {
  border-bottom: none;
}
._activityItem_135gz_144:not(:first-child):hover {
  background: #f3e8ff55;
}
._buy_135gz_171 {
  color: #10b981;
  font-weight: 700;
}
._sell_135gz_176 {
  color: #ef4444;
  font-weight: 700;
}
._asset_135gz_181 {
  font-weight: 600;
  color: #25124b;
}
._amount_135gz_186 {
  color: #4f46e5;
}
._value_135gz_190 {
  color: #dd5339;
  font-weight: 600;
}
._date_135gz_195 {
  color: #888;
  font-size: 0.97rem;
}
._copy-trade-button_135gz_200 {
  background: #dd5339;
  color: #fff;
  padding: 10px 18px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  margin-top: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}
._copy-trade-button_135gz_200:hover {
  background: #8d2ce3;
}
._copy-trade-modal_135gz_215 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #14001ecc;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
._modal-content_135gz_227 {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  text-align: center;
}
._modal-content_135gz_227 h3 {
  color: #dd5339;
  margin-bottom: 16px;
}
._trade-sequence_135gz_239 {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}
._trade-sequence_135gz_239 li {
  margin-bottom: 10px;
  color: #25124b;
}
._modal-close-btn_135gz_249 {
  background: #25124b;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
._copyTradeButton_135gz_260 {
  background: #dd5339;
  color: #fff;
  padding: 10px 18px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  margin-top: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
._copyTradeButton_135gz_260:hover {
  background: #8d2ce3;
}
._activityTableWrapper_135gz_279 {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  background: #f8fafc;
  margin-top: 8px;
}
._activityTable_135gz_279 {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
._activityTable_135gz_279 thead tr {
  background: #f3e8ff;
  color: #dd5339;
  font-weight: 700;
}
._activityTable_135gz_279 th,
._activityTable_135gz_279 td {
  padding: 12px 10px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #f3e8ff;
  white-space: nowrap;
}
._activityTable_135gz_279 th:last-child,
._activityTable_135gz_279 td:last-child {
  min-width: 120px;
}
._activityTable_135gz_279 tbody tr:last-child td {
  border-bottom: none;
}
._activityTable_135gz_279 tbody tr:hover {
  background: #f3e8ff55;
  transition: background 0.2s;
}
@media (max-width: 700px) {
  ._profileContainer_135gz_10 {
    padding: 0;
    margin: 0;
  }
  ._profileCard_135gz_19 {
    padding: 5px;
    width: 97%;
    margin-top: 20px;
  }
  ._profileHeader_135gz_28 {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  ._activityItem_135gz_144 {
    grid-template-columns: 60px 60px 70px 90px 80px 1fr;
    font-size: 0.97rem;
  }
  ._activityTable_135gz_279 {
    font-size: 0.97rem;
    min-width: 500px;
  }
  ._activityTable_135gz_279 th,
  ._activityTable_135gz_279 td {
    padding: 8px 6px;
  }
}
@media (max-width: 900px) {
  ._activityItem_135gz_144 {
    grid-template-columns: 60px 60px 70px 90px 80px 1fr;
    font-size: 0.97rem;
  }
}
@media (max-width: 600px) {
  ._activityItem_135gz_144 {
    grid-template-columns: 50px 50px 60px 70px 60px 1fr;
    font-size: 0.95rem;
    padding: 8px 0;
  }
  ._activityList_135gz_132 {
    border-radius: 8px;
  }
}
@media (max-width: 500px) {
  ._activityTable_135gz_279 {
    font-size: 0.95rem;
    min-width: 400px;
  }
}
.admin-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 20px;
}
.admin-post-area {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 10px;
  gap: 10px;
  background-color: #fff;
  box-shadow:
    0 4px 8px #00000026,
    0 6px 20px #0000001a;
  padding: 10px;
  border-radius: 10px;
}
.post-area-top {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
.img-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50px;
}
.top-input-admin {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
}
.top-input-admin input {
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
}
.bottom-admin {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  cursor: pointer;
}
.bottom-admin i {
  margin-left: 20px;
}
.upload-button-admin {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  flex-direction: column;
}
.buttonAdmin {
  background-color: #dd5339;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 10px #000;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s;
}
.buttonAdmin:hover {
  background-color: #dd5339;
  box-shadow: 0 6px 16px #000;
  transform: translateY(-2px);
}
.buttonAdmin:active {
  background-color: #ff684a;
  box-shadow: 0 2px 8px #000;
  transform: translateY(0);
}
.buttonAdmin:disabled {
  background-color: #d8c5fa;
  color: #eee;
  cursor: not-allowed;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .admin-post-area {
    width: 96%;
  }
}
.adminPaymentInterface {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 20px;
}
.add-payment-channels {
  width: 450px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow:
    0 4px 8px #00000026,
    0 6px 20px #0000001a;
  padding: 10px;
  border-radius: 10px;
}
.add-payment-channels input {
  width: 300px;
  margin: 10px;
  padding: 10px 20px;
  border: none;
  background-color: #dadada;
  border-radius: 10px;
  color: #000;
}
.add-payment-channels i {
  font-size: 50px;
  color: #dd5339;
  cursor: pointer;
}
.existing-payment-channels {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.payment-channel {
  width: 300px;
  height: auto;
  margin: 15px;
  padding: 20px;
  border-radius: 16px;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  word-break: break-word;
  box-shadow: 0 4px 12px #0003;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.payment-channel:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px #9e5fff4d;
}
.payment-channel i {
  font-size: 50px;
  color: #dd5339;
  margin-bottom: 10px;
}
.name-div-dmin {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}
.address-div-admin {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  padding: 5px;
  background: #ffffff0d;
  border-radius: 10px;
  font-size: 0.95rem;
  text-align: center;
}
.address-div-admin p {
  margin: 0;
  color: #eee;
}
.payment-requests {
  width: 100%;
  background-color: #fff;
  border-radius: 12px;
  overflow-x: auto;
}
.payment-requests h2 {
  color: #dd5339;
}
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-direction: row;
  flex-wrap: wrap;
}
.filter-buttons button {
  padding: 8px 16px;
  border: none;
  background-color: #000;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}
.filter-buttons button:hover {
  background-color: #dd5339;
}
.filter-buttons .active {
  background-color: #dd5339;
  font-weight: 700;
}
.request-table {
  width: 100%;
  overflow-x: auto;
}
.request-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: #000;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  min-width: 700px;
}
.request-table th,
.request-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #333;
}
.request-table thead {
  background-color: #632013;
}
.request-table th {
  color: #ccc;
  font-weight: 600;
}
.request-table td a {
  color: #dd5339;
  text-decoration: underline;
  font-weight: 500;
}
.status {
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: capitalize;
  font-size: 0.85rem;
  font-weight: 600;
}
.status.pending {
  background-color: #ffbb0050;
  color: #fb0;
}
.status.success {
  background-color: #00c97e30;
  color: #00c97e;
}
.status.declined {
  background-color: #ff4d4f33;
  color: #ff4d4f;
}
.accept-btn,
.decline-btn {
  padding: 6px 10px;
  margin: 0 4px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}
.accept-btn {
  background-color: #00c97e;
  color: #fff;
}
.decline-btn {
  background-color: #ff4d4f;
  color: #fff;
}
@media (max-width: 768px) {
  .add-payment-channels input {
    width: 250px;
  }
  .request-table table {
    font-size: 0.85rem;
    min-width: 100%;
  }
  .filter-buttons {
    flex-direction: row;
    align-items: center;
  }
  .accept-btn,
  .decline-btn {
    margin-top: 6px;
    width: 100%;
  }
  .add-payment-channels {
    width: 90%;
  }
  .payment-channel {
    width: 90%;
    height: auto;
    padding: 20px 10px;
  }
  .name-div-dmin {
    flex-direction: column;
  }
  .address-div-admin {
    font-size: 0.9rem;
  }
}
.x-users-container {
  padding: 32px;
  max-width: 1200px;
  margin: auto;
}
.x-users-title {
  text-align: center;
  margin-bottom: 24px;
  color: #000;
}
.x-users-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.x-user-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 260px;
  background: #fff;
  border: 2px solid #dd5339;
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 12px #00000014;
}
.x-user-card:hover {
  transform: translateY(-4px);
}
.x-user-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}
.x-user-info p {
  margin: 4px 0;
  font-size: 0.95rem;
  color: #000;
  text-align: center;
}
.x-user-action-btn {
  background: #dd5339;
  color: #fff;
  border: none;
  padding: 10px 16px;
  margin-top: 12px;
  border-radius: 6px;
  cursor: pointer;
}
.x-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0006;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.x-popup {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 20px #0003;
  text-align: center;
}
.x-popup textarea {
  width: 95%;
  height: 80px;
  padding: 12px;
  margin-top: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: none;
  font-size: 1rem;
}
.x-popup-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.x-popup-btn {
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}
.x-popup-btn.primary {
  background: #dd5339;
  color: #fff;
}
.x-popup-btn.danger {
  background: #e63946;
  color: #fff;
}
.x-popup-btn.cancel {
  background: #ccc;
  color: #000;
}
@media (max-width: 768px) {
  .x-user-card {
    width: 100%;
  }
  .x-popup {
    padding: 20px;
  }
}
.x-mgu21-header {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #dd5339;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: start;
}
.x-mgu21-user {
  color: #000;
  font-weight: 500;
}
.x-mgu21-balance {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  width: 100%;
  text-align: start;
}
.x-mgu21-assets h4 {
  width: 100%;
  text-align: start;
  margin: 0;
  padding: 0;
}
.x-mgu21-assets {
  margin-bottom: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.x-mgu21-assets-scroll {
  width: 100%;
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  scrollbar-width: thin;
  scrollbar-color: #dd5339 black;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.x-mgu21-assets-scroll::-webkit-scrollbar {
  height: 6px;
}
.x-mgu21-assets-scroll::-webkit-scrollbar-thumb {
  background-color: #dd5339;
  border-radius: 4px;
}
.x-mgu21-assets-scroll::-webkit-scrollbar-track {
  background: #000;
}
.x-mug21-spread-area {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}
.x-mgu21-asset-card {
  flex: 0 0 auto;
  min-width: 220px;
  max-width: 250px;
  background: #2b174e;
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid #dd5339;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #fff;
}
.x-mgu21-asset-card button {
  background: none;
  border: none;
  color: #f87171;
  font-size: 1.1rem;
  cursor: pointer;
}
.x-mgu21-form {
  background: #291a42;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 2rem;
  max-width: 400px;
  width: 90%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.x-mgu21-form h4 {
  margin-bottom: 1rem;
  color: #dd5339;
}
.x-mgu21-form select {
  width: 100%;
  margin-bottom: 1rem;
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
  background: #38235f;
  color: #fff;
}
.x-mgu21-form input {
  width: 95%;
  margin-bottom: 1rem;
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
  background: #38235f;
  color: #fff;
}
.x-mgu21-form button {
  background: #dd5339;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
}
.x-mgu21-manual-notif {
  background: #291a42;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 2rem;
  max-width: 400px;
  width: 90%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.x-mgu21-manual-notif h4 {
  margin-bottom: 1rem;
  color: #dd5339;
}
.x-mgu21-manual-notif textarea {
  width: 94%;
  background: #38235f;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px;
  resize: none;
  margin-bottom: 1rem;
}
.x-mgu21-manual-notif button {
  background: #dd5339;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
}
@media (max-width: 768px) {
  .x-mug21-spread-area {
    flex-direction: column;
  }
}
