* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



:root {
  --dark: #07111f;
  --blue: #0d6efd;
  --cyan: #00d4ff;
  --gold: #f4b740;
  --text: #1c2733;
  --muted: #6b7280;
  --light: #f4f7fb;
  --white: #ffffff;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  width: min(1150px, 92%);
  margin: auto;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(14px);
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 15px;
}

.login-link {
  color: var(--gold) !important;
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 28px;
}

.btn {
  display: inline-block;
  padding: 13px 25px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(13, 110, 253, .28);
}

.btn-small {
  padding: 9px 18px;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: none;
}

.btn-full {
  width: 100%;
  text-align: center;
}

.hero {
  min-height: 760px;
  padding-top: 130px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(5, 12, 24, 0.82), rgba(5, 12, 24, 0.82)),
    url("https://images.unsplash.com/photo-1640340434855-6084b1f4901c?auto=format&fit=crop&w=1200&q=55");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 55px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.eyebrow.dark {
  color: var(--blue);
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: 19px;
  color: #d1d5db;
  max-width: 650px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-card {
  padding: 34px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 28px;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.hero-card h2 {
  font-size: 42px;
  margin: 10px 0;
}

.growth {
  color: #7df7a6;
  margin-bottom: 28px;
}

.chart-bars {
  height: 170px;
  display: flex;
  align-items: end;
  gap: 13px;
}

.chart-bars span {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(var(--cyan), var(--blue));
}

.features {
  margin-top: -70px;
  position: relative;
  z-index: 3;
}

.feature-grid,
.plan-grid,
.stats-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.plan-card,
.about-box {
  background: var(--white);
  padding: 34px;
  border-radius: 24px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, .12);
}

.icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.feature-card h3,
.plan-card h3 {
  margin-bottom: 10px;
}

.about,
.plans,
.faq {
  padding: 95px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 60px;
  align-items: center;
}

.about h2,
.section-head h2,
.cta h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 18px;
}

.about p {
  color: var(--muted);
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
}

.check-list li {
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

.about-box {
  background: var(--dark);
  color: var(--white);
}

.about-box p {
  color: #d1d5db;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 25px;
}

.mini-stats strong {
  display: block;
  color: var(--gold);
  font-size: 24px;
}

.mini-stats span {
  font-size: 13px;
  color: #d1d5db;
}

.plans {
  background: var(--light);
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 45px;
}

.plan-grid {
  grid-template-columns: repeat(3, 1fr);
}

.plan-card {
  position: relative;
}

.plan-card.popular {
  transform: translateY(-16px);
  border: 2px solid var(--blue);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.price {
  font-size: 28px;
  color: var(--blue);
  font-weight: 800;
  margin: 12px 0 20px;
}

.plan-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.plan-card li {
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
}

.stats {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stats strong {
  display: block;
  font-size: 40px;
  color: var(--gold);
}

.stats span {
  color: #d1d5db;
}

.narrow {
  max-width: 850px;
}

.accordion-btn {
  width: 100%;
  border: 0;
  background: var(--light);
  text-align: left;
  padding: 20px;
  margin-top: 12px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}

.accordion-panel {
  display: none;
  padding: 18px 20px;
  color: var(--muted);
}

.accordion-panel.open {
  display: block;
}

.cta {
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--blue), var(--dark));
  color: var(--white);
  border-radius: 32px;
  padding: 60px;
  text-align: center;
}

.cta p {
  color: #d1d5db;
  margin-bottom: 28px;
}

.footer {
  background: #050b14;
  color: var(--white);
  padding-top: 70px;
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr;
}

.footer p,
.footer a {
  color: #9ca3af;
}

.footer a {
  display: block;
  text-decoration: none;
  margin: 8px 0;
}

.copyright {
  text-align: center;
  color: #9ca3af;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px;
  margin-top: 45px;
}

@media (max-width: 850px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 4%;
    background: var(--dark);
  }

  .nav-links.show {
    display: flex;
  }

  .hero-grid,
  .split,
  .feature-grid,
  .plan-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .features {
    margin-top: 0;
    padding: 50px 0 0;
  }

  .plan-card.popular {
    transform: none;
  }

  .cta-box {
    padding: 40px 22px;
  }
}


/* Slider Styles  */
.market-slider {
  position: relative;
  height: 720px;
  overflow: hidden;
  margin-top: 76px;
  background: #07111f;
}

.slider-track,
.slide {
  height: 100%;
}

.slide {
  display: none;
  align-items: center;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide.active {
  display: flex;
  animation: fadeSlide 0.8s ease-in-out;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 12, 24, 0.92),
    rgba(5, 12, 24, 0.65),
    rgba(5, 12, 24, 0.35)
  );
}

.crypto-slide {
  background-image: url("https://images.unsplash.com/photo-1621761191319-c6fb62004040?auto=format&fit=crop&w=1200&q=55");
}

.stocks-slide {
  background-image: url("https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?auto=format&fit=crop&w=1200&q=55");
}

.forex-slide {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1200&q=55");
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.slide-content h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 22px;
}

.slide-content p {
  font-size: 19px;
  color: #d1d5db;
  margin-bottom: 30px;
  max-width: 650px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: white;
  font-size: 34px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.slider-btn.prev {
  left: 28px;
}

.slider-btn.next {
  right: 28px;
}

.slider-dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.dot {
  width: 11px;
  height: 11px;
  background: rgba(255,255,255,.45);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 999px;
}

@keyframes fadeSlide {
  from {
    opacity: 0.35;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 850px) {
  .market-slider {
    height: 620px;
  }

  .slide::before {
    background: rgba(5, 12, 24, 0.82);
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .slider-btn.prev {
    left: 12px;
  }

  .slider-btn.next {
    right: 12px;
  }

  .slide-content {
    padding: 0 18px;
  }
}

/* slider end */

/* trading view widget */

.tradingview-section {
  padding: 100px 0;
  
}

.tv-widget {
  margin-top: 40px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.tradingview-widget-container {
  width: 100%;
}

.tv-widget #tradingview_chart {
  min-height: 500px;
}

/* Dark mode match */
.tradingview-widget-container iframe {
  border-radius: 24px;
}

/* trading view widget end */


/* top traders */

.strategy-managers {
  padding: 100px 0;
  background: #ffffff;
}

.strategy-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  margin-bottom: 35px;
}

.strategy-header h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin-top: 8px;
}

.last-update {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
}

.manager-table {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  border: 1px solid #edf0f5;
}

.manager-table-head,
.manager-row {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr;
  align-items: center;
  gap: 20px;
}

.manager-table-head {
  padding: 20px 28px;
  background: #f4f7fb;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.manager-row {
  padding: 20px 28px;
  text-decoration: none;
  color: var(--text);
  border-top: 1px solid #edf0f5;
  transition: 0.25s ease;
}

.manager-row:hover {
  background: #f8fbff;
  transform: translateX(4px);
}

.manager-info {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.rank {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: #eef5ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
}

.manager-info img {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
}

.manager-info h3 {
  font-size: 16px;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.manager-info p {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.growth-pill {
  justify-self: start;
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.manager-row strong {
  justify-self: end;
  font-size: 18px;
  color: #07111f;
  white-space: nowrap;
}

/* Tablet */
@media (max-width: 900px) {
  .strategy-managers {
    padding: 75px 0;
  }

  .strategy-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .manager-table-head,
  .manager-row {
    grid-template-columns: 1.3fr 0.7fr 0.8fr;
    gap: 14px;
  }

  .manager-row {
    padding: 18px 20px;
  }

  .manager-table-head {
    padding: 18px 20px;
  }

  .dash-sidebar .dash-brand {
    display: none;
  }


  

  .dash-menu {
    margin-top: 10px;
  }
}

/* Mobile: keep each trader in one row */
@media (max-width: 650px) {
  .strategy-managers {
    padding: 60px 0;
  }

  .strategy-header h2 {
    font-size: 28px;
  }

  .manager-table {
    border-radius: 20px;
  }

  .manager-table-head {
    display: none;
  }

  .manager-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "trader amount"
      "trader growth";
    gap: 4px 12px;
    align-items: center;
    padding: 16px 14px;
  }

  .manager-row:hover {
    transform: none;
  }

  .manager-info {
    grid-area: trader;
    gap: 10px;
    min-width: 0;
  }

  .rank {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    font-size: 11px;
  }

  .manager-info img {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .manager-info h3 {
    font-size: 14px;
    max-width: 135px;
  }

  .manager-info p {
    font-size: 11px;
    max-width: 135px;
  }

  .growth-pill {
    grid-area: growth;
    justify-self: end;
    padding: 4px 8px;
    font-size: 11px;
  }

  .manager-row strong {
    grid-area: amount;
    justify-self: end;
    font-size: 14px;
  }
}

/* Very small phones */
@media (max-width: 390px) {
  .manager-row {
    padding: 14px 10px;
    gap: 4px 8px;
  }

  .manager-info {
    gap: 8px;
  }

  .manager-info img {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .manager-info h3,
  .manager-info p {
    max-width: 105px;
  }

  .manager-row strong {
    font-size: 13px;
  }

  .growth-pill {
    font-size: 10px;
  }
}

/* end top traders */

/* about */

.page-hero {
  padding: 170px 0 100px;
  background:
    linear-gradient(rgba(5, 12, 24, 0.86), rgba(5, 12, 24, 0.86)),
    url("https://images.unsplash.com/photo-1640340434855-6084b1f4901c?auto=format&fit=crop&w=1200&q=55");
  background-size: cover;
  background-position: center;
  color: white;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
  max-width: 850px;
  margin-bottom: 20px;
}

.page-hero p {
  max-width: 720px;
  font-size: 18px;
  color: #d1d5db;
}

.about-us-page {
  padding: 100px 0;
  background: #ffffff;
}

.about-us-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 55px;
  align-items: start;
}

.about-main-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 22px;
}

.about-main-content p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 16px;
}

.about-side-card {
  background: var(--dark);
  color: white;
  padding: 36px;
  border-radius: 28px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.22);
  position: sticky;
  top: 105px;
}

.about-side-card h3 {
  font-size: 28px;
  margin-bottom: 25px;
}

.about-point {
  display: flex;
  gap: 15px;
  margin-bottom: 24px;
}

.about-point span {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  font-size: 22px;
}

.about-point h4 {
  margin-bottom: 5px;
  font-size: 17px;
}

.about-point p {
  color: #d1d5db;
  font-size: 14px;
}

.about-values {
  padding: 90px 0;
  background: #f4f7fb;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.value-card {
  background: white;
  padding: 34px;
  border-radius: 24px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.1);
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #07111f;
}

.value-card p {
  color: var(--muted);
}

@media (max-width: 850px) {
  .page-hero {
    padding: 140px 0 75px;
  }

  .about-us-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .about-side-card {
    position: static;
  }

  .about-us-page {
    padding: 70px 0;
  }

  .about-values {
    padding: 70px 0;
  }
}

/* about end */

.pricing-page-section {
  padding-top: 110px;
  padding-bottom: 120px;
}

/* faq  */
.faq-page {
  padding: 100px 0;
  background: #ffffff;
}

.faq-list .accordion-btn {
  background: #f4f7fb;
  margin-top: 16px;
  border-radius: 16px;
  font-size: 17px;
  color: #07111f;
}

.faq-list .accordion-panel {
  background: white;
  border-left: 4px solid var(--blue);
  margin: 8px 0 12px;
  border-radius: 0 14px 14px 0;
  line-height: 1.8;
}
/* faq end */

/* terms */

.terms-page {
  padding: 100px 0;
  background: #f4f7fb;
}

.terms-box {
  max-width: 950px;
  background: #ffffff;
  padding: 50px;
  border-radius: 28px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
}

.terms-box h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 25px;
  color: #07111f;
}

.terms-box p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.terms-box strong {
  color: #07111f;
}

@media (max-width: 650px) {
  .terms-page {
    padding: 70px 0;
  }

  .terms-box {
    padding: 30px 22px;
    border-radius: 20px;
  }
}

/* terms end */

/* signup */

.auth-page {
  min-height: 100vh;
  padding: 135px 0 80px;
  background:
    linear-gradient(rgba(5, 12, 24, 0.88), rgba(5, 12, 24, 0.88)),
    url("https://images.unsplash.com/photo-1640340434855-6084b1f4901c?auto=format&fit=crop&w=1200&q=55");
  background-size: cover;
  background-position: center;
}

.auth-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 55px;
  align-items: center;
}

.auth-side {
  color: white;
}

.auth-side h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  margin-bottom: 22px;
}

.auth-side > p {
  color: #d1d5db;
  font-size: 18px;
  max-width: 620px;
  margin-bottom: 35px;
}

.auth-benefits {
  display: grid;
  gap: 18px;
  max-width: 560px;
}

.auth-benefits div {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.auth-benefits span {
  font-size: 26px;
}

.auth-benefits strong {
  display: block;
  margin-bottom: 4px;
}

.auth-benefits p {
  color: #d1d5db;
  font-size: 14px;
}

.auth-card {
  background: white;
  padding: 38px;
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}

.auth-card-head {
  margin-bottom: 25px;
}

.auth-card-head h2 {
  font-size: 32px;
  color: #07111f;
  margin-bottom: 6px;
}

.auth-card-head p {
  color: var(--muted);
}

.form-alert {
  background: #eef5ff;
  color: #0d6efd;
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-weight: 700;
}

.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  margin-bottom: 17px;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: #07111f;
  font-weight: 800;
  margin-bottom: 7px;
}

.auth-input {
  width: 100%;
  height: 52px;
  border: 1px solid #e5e7eb;
  background: #f8fbff;
  border-radius: 14px;
  padding: 0 15px;
  font-size: 15px;
  outline: none;
  transition: 0.25s ease;
}

.auth-input:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(13,110,253,0.12);
}

select.auth-input {
  appearance: auto;
}

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 8px 0 18px;
}

.terms-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.terms-check a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.captcha-wrap {
  margin-bottom: 20px;
  overflow-x: auto;
}

.auth-submit {
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.auth-switch {
  text-align: center;
  color: var(--muted);
  margin-top: 20px;
  font-size: 14px;
}

.auth-switch a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 950px) {
  .auth-grid {
    grid-template-columns: 1fr;
  }

  .auth-side {
    text-align: center;
  }

  .auth-side > p,
  .auth-benefits {
    margin-left: auto;
    margin-right: auto;
  }

  .auth-benefits div {
    text-align: left;
  }
}

@media (max-width: 650px) {
  .auth-page {
    padding: 115px 0 55px;
  }

  .auth-card {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .form-two {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .auth-side h1 {
    font-size: 36px;
  }

  .auth-side > p {
    font-size: 16px;
  }

  .auth-benefits {
    display: none;
  }

  .auth-input {
    height: 50px;
  }
}

/* sign-up end */

/* sign-in */

.auth-card-small {
  max-width: 520px;
  width: 100%;
  justify-self: end;
}

.login-check {
  margin-top: 4px;
}

.auth-links-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
  font-size: 14px;
}

.auth-links-row a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 950px) {
  .auth-card-small {
    justify-self: center;
  }
}

@media (max-width: 500px) {
  .auth-links-row {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* sign-in end */

/* dashboard */

/* =========================
   DASHBOARD REUSABLE CSS
========================= */

.dash-body {
  background: #0b1220;
  color: #1c2733;
}

.dashboard-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.dash-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 280px;
  background: #07111f;
  color: white;
  padding: 24px;
  z-index: 100;
  overflow-y: auto;
}

.dash-brand a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 35px;
}

.dash-menu {
  display: grid;
  gap: 4px;
}



.dash-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8; /* same as icons */
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 16px;
  font-weight: 700;
  transition: 0.25s ease;
}

.dash-menu a:hover,
.dash-menu a.active {
  background: white;
  color: #FE710D;
  transform: translateX(4px);
}

.dash-menu .logout-link {
  margin-top: 20px;
  color: #fecaca;
}

.dash-main {
  grid-column: 2;
  padding: 28px;
  min-width: 0;
}

/* Topbar */
.dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
}

.dash-desktop-header h1 {
  font-size: 34px;
  margin-bottom: 4px;
  color: #ffffff;
}

.dash-desktop-header p {
  color: #cbd5e1;
}

.dash-mobile-header {
  display: none;
}

.dash-menu-btn {
  display: none;
  border: 0;
  background: #07111f;
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 22px;
  cursor: pointer;
}

.dash-user {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #07111f;
  padding: 12px 16px;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.18);
}

.dash-user img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
}

.dash-user strong,
.dash-user span {
  display: block;
}

.dash-user strong {
  color: #07111f;
}

.dash-user span {
  color: var(--muted);
  font-size: 13px;
}

/* TradingView */
.dash-widget-card {
  
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  margin-bottom: 24px;
  overflow: hidden;
}

/* Welcome */
.dash-welcome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  background:
    linear-gradient(135deg, rgba(13, 110, 253, 0.95), rgba(7, 17, 31, 0.98)),
    url("https://images.unsplash.com/photo-1640340434855-6084b1f4901c?auto=format&fit=crop&w=1200&q=55");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 38px;
  border-radius: 30px;
  box-shadow: 0 25px 65px rgba(13, 110, 253, 0.25);
  margin-bottom: 25px;
}

.dash-welcome h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin-bottom: 10px;
  color: white;
}

.dash-welcome p:not(.eyebrow) {
  color: #d1d5db;
  max-width: 650px;
}

/* Stats */
.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.dash-stat-card {
  background: white;
  color: #07111f;
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  border: 1px solid #edf0f5;
  transition: 0.25s ease;

  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}

.dash-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #eef5ff;
  border-radius: 16px;
  font-size: 24px;
  margin-bottom: 0;
  grid-row: span 3;
}

.dash-stat-card p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 3px;
}

.dash-stat-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: #07111f;
  word-break: break-word;
}

.dash-stat-card a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}

.portfolio-stat-card {
  border-left: none !important;
  background: linear-gradient(
    135deg,
    #fff1e7 0%,
    #ffd6bc 22%,
    #ffb07d 48%,
    #FE7616 100%
  );
}

/* Panels */
.dash-content-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 20px;
}

.dash-panel {
  background: white;
  color: #07111f;
  border-radius: 26px;
  padding: 25px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  border: 1px solid #edf0f5;
  min-width: 0;
}

.dash-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.dash-panel-head h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #07111f;
}

.dash-panel-head p {
  color: var(--muted);
  font-size: 14px;
}

.dash-panel-head a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.dash-chart-box {
  height: 310px;
}

/* Table */
.dash-table-wrap {
  overflow-x: auto;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}

.dash-table th {
  background: #f4f7fb;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  text-align: left;
  padding: 14px;
}

.dash-table td {
  color: #1c2733;
  padding: 16px 14px;
  border-bottom: 1px solid #edf0f5;
  font-size: 14px;
}

.empty-table {
  text-align: center;
  color: var(--muted);
  padding: 30px !important;
}

/* Overlay */
.dash-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 90;
}

.dash-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* =========================
   RESPONSIVE DASHBOARD
========================= */

@media (max-width: 1250px) {
  .dash-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dash-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dash-main {
    grid-column: 1;
    padding: 80px 20px 20px;
  }

  .dash-sidebar {
    width: 280px;
    left: 0;
    top: 60px; /* match mobile header height */
    height: calc(100vh - 60px);
    transform: translateX(-105%);
    transition: 0.3s ease;
  }

  .dash-sidebar.show {
    transform: translateX(0);
  }

  .dash-mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    background: #0f172a;
    color: white;
    z-index: 120;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  }

  .dash-mobile-title {
    font-weight: 800;
    font-size: 18px;
  }

  .dash-menu-btn {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 22px;
  }

  .dash-desktop-header {
    display: none;
  }

  .dash-topbar {
    align-items: flex-start;
  }


      /* Hide logo/brand inside sidebar on mobile */
    .dash-sidebar .dash-brand {
      display: none;
    }

    /* If you ever added a sidebar title/header, hide it too */
    .dash-sidebar .dash-sidebar-header,
    .dash-sidebar h1,
    .dash-sidebar h2 {
      display: none;
    }

    /* Move menu up since logo is gone */
    .dash-menu {
      margin-top: 10px;
    }


    /* Mobile user avatar */
  .dash-mobile-user {
  margin-left: auto;
  position: relative;
  cursor: pointer;
  }

  .dash-mobile-user img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
  }

  /* Dropdown */
  .dash-mobile-dropdown {
  position: absolute;
  top: 52px;
  right: 0;
  background: white;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  min-width: 150px;
  overflow: hidden;

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.25s ease;
  z-index: 200;
  }

  .dash-mobile-dropdown a {
  display: block;
  padding: 12px 14px;
  text-decoration: none;
  color: #25292e;
  font-weight: 600;
  }

  .dash-mobile-dropdown a:hover {
    background: #f4f7fb;
  }

  /* show dropdown */
  .dash-mobile-dropdown.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .dropdown-name {
    padding: 12px 14px;
    font-weight: 800;
    border-bottom: 1px solid #eee;
    color: #07111f;
  }

      .dash-mobile-dropdown a.dropdown-logout {
    color: #ef4444;
  }

  .dash-mobile-dropdown a.dropdown-logout:hover {
    background: #fee2e2;
    color: #b91c1c;
  }

  .dash-user {
    display: none;
  }


}

@media (max-width: 650px) {
  .dash-main {
    padding: 80px 16px 16px;
  }

  .dash-topbar {
    flex-direction: column;
  }

  .dash-user {
    width: 100%;
  }

  .dash-welcome {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
    border-radius: 24px;
  }

  .dash-stats-grid {
    grid-template-columns: 1fr;
  }

  .dash-stat-card,
  .dash-panel {
    border-radius: 20px;
    padding: 20px;
  }

  .dash-chart-box {
    height: 260px;
  }

  .dash-sidebar {
    width: 86%;
  }
}


.dash-icon {
  font-size: 18px;
  color: #94a3b8;
  min-width: 22px;
  display: inline-flex;
  justify-content: center;
}

/* active + hover */
.dash-menu a:hover .dash-icon,
.dash-menu a.active .dash-icon {
  color: #07111f;
}

/* .dash-icon {
  background: rgba(255,255,255,0.04);
  padding: 6px;
  border-radius: 8px;
} */



.dash-avatar-fallback {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  font-weight: 800;
  font-size: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid rgba(255,255,255,0.2);
}


/* deposit */

/* =========================
   TRADING PLANS PAGE
========================= */

.trading-plan-header {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.trading-plan-header h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.trading-plan-header p {
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.7;
}

/* GRID */
.trading-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* CARD */
.trading-plan-card {
  background: #f8fafc;
  border: 1px solid #edf0f5;
  border-radius: 26px;
   padding: 32px 28px;
  transition: 0.25s ease;
}

.trading-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.15);
}

/* TITLE */
.trading-plan-card h4 {
  font-size: 26px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: hsl(34, 100%, 50%);
}



/* LIMIT TEXT */
.plan-limit {
  color: #07111f;
  font-weight: 700;
  margin-bottom: 20px;
}

/* FEATURES */
.trading-plan-card ul {
  list-style: none;
  margin-bottom: 24px;
  line-height: 1.6;
}

.trading-plan-card li {
  padding-left: 0;
  color: #1c2733;
}

/* RETURN */
.plan-return {
  color: #293037;
  
  margin-bottom: 24px;
}

/* BUTTON */
.plan-invest-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: #000000;
  color: white;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.plan-invest-btn:hover {
  background: #111827;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .trading-plan-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .trading-plan-grid {
    grid-template-columns: 1fr;
  }

  .trading-plan-card {
    padding: 22px;
  }
}

.dash-body {
  font-family: Arial, Helvetica, sans-serif;
}


.plan-subtitle {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 18px;
}

.plan-subtitle::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin: 14px auto 0;
  border-radius: 2px;
  background: #e5e7eb;
}
/* dashboard end */


/* deposit flow*/

.deposit-step {
  display: none;
}

.flow-card {
  max-width: 760px;
  margin: 0 auto;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.18);
}

.flow-card h3 {
  color: #07111f;
  font-size: 26px;
  margin-bottom: 24px;
  text-align: center;
}

.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.payment-method-card {
  border: 1px solid #e5e7eb;
  background: white;
  border-radius: 18px;
  padding: 20px 12px;
  cursor: pointer;
  transition: 0.25s ease;
}

.payment-method-card strong,
.payment-method-card span {
  display: block;
  text-align: center;
}

.payment-method-card strong {
  color: #07111f;
  font-size: 17px;
}

.payment-method-card span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 5px;
}

.payment-method-card.active {
  border-color: var(--blue);
  background: #eef5ff;
  box-shadow: 0 12px 30px rgba(13,110,253,0.15);
}

.flow-form-group label {
  display: block;
  color: #07111f;
  font-weight: 800;
  margin-bottom: 8px;
}

.flow-form-group input {
  width: 100%;
  height: 54px;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  padding: 0 15px;
  font-size: 16px;
  outline: none;
}

.flow-form-group input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(13,110,253,0.12);
}

.flow-actions {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.flow-back,
.flow-continue,
.submit-payment-btn {
  border: none;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 800;
  cursor: pointer;
}

.flow-back {
  background: #e5e7eb;
  color: #07111f;
}

.flow-continue,
.submit-payment-btn {
  background: var(--blue);
  color: white;
}

.flow-continue:hover,
.submit-payment-btn:hover {
  background: #0b5ed7;
}

.center-title {
  text-align: center;
}

.qr-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.qr-wrap img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  background: white;
  padding: 10px;
}

.payment-instruction {
  text-align: center;
  color: #1c2733;
  font-weight: 700;
  margin-bottom: 18px;
}

.wallet-address-box {
  position: relative;
  margin-bottom: 14px;
}

.wallet-address-box input {
  width: 100%;
  height: 52px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0 22% 0 14px; /* space for text button */
  background: white;
  color: #07111f;
  font-size: 14px;
}

.wallet-address-box button {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  height: 44px;
  width: 20%;
  border: none;
  border-radius: 10px;
  background: var(--blue);
  color: white;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.wallet-address-box button:hover {
  background: #0b5ed7;
}

.network-text {
  color: #07111f;
  font-weight: 800;
  margin-bottom: 14px;
}

.wallet-warning {
  color: #dc2626;
  background: #fee2e2;
  border-radius: 14px;
  padding: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.confirm-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #16a34a;
  color: white;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 900;
}

.confirm-summary {
  background: white;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 24px;
}

.confirm-summary p {
  color: var(--muted);
  font-size: 14px;
}

.confirm-summary h4 {
  color: #07111f;
  font-size: 22px;
  margin-bottom: 16px;
}

.submit-payment-btn {
  width: 100%;
}

.trading-plan-card.selected {
  border-color: var(--blue);
  box-shadow: 0 18px 45px rgba(13,110,253,0.18);
}

@media (max-width: 900px) {
  .payment-method-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .flow-card {
    padding: 22px;
  }

  .payment-method-grid {
    grid-template-columns: 1fr;
  }

  .flow-actions {
    grid-template-columns: 1fr;
  }

  .wallet-address-box {
    grid-template-columns: 1fr;
  }
}

.flow-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* deposits page */

.deposits-summary-grid {
  grid-template-columns: repeat(2, 1fr);
}

.dash-alert {
  padding: 15px 18px;
  border-radius: 16px;
  margin-bottom: 22px;
  font-weight: 700;
}

.dash-alert.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.dash-panel-action {
  background: var(--blue);
  color: white !important;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.dash-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: capitalize;
  background: #eef5ff;
  color: var(--blue);
}

.status-approved,
.status-completed,
.status-success,
.status-paid {
  background: #dcfce7;
  color: #166534;
}

.status-pending {
  background: #fef3c7;
  color: #92400e;
}

.status-declined,
.status-failed,
.status-rejected {
  background: #fee2e2;
  color: #b91c1c;
}

.dash-empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #eef5ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 34px;
  margin: 0 auto 18px;
}

.dash-empty-state h3 {
  color: #07111f;
  font-size: 24px;
  margin-bottom: 8px;
}

.dash-empty-state p {
  color: var(--muted);
  margin-bottom: 24px;
}

@media (max-width: 650px) {
  .deposits-summary-grid {
    grid-template-columns: 1fr;
  }

  .dash-panel-action {
    width: 100%;
    text-align: center;
  }
}

/* deposits page end */


/* withdrawal page */

.withdrawal-summary-grid {
  grid-template-columns: repeat(2, 1fr);
}

.withdrawal-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.withdrawal-form-panel,
.withdrawal-info-panel {
  align-self: start;
}

.withdrawal-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.withdrawal-warning {
  display: flex;
  gap: 12px;
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
  padding: 15px;
  border-radius: 16px;
  margin: 10px 0 22px;
}

.withdrawal-warning i {
  font-size: 22px;
  flex: 0 0 22px;
}

.withdrawal-warning p {
  font-size: 14px;
  line-height: 1.6;
}

.withdrawal-submit-btn {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 999px;
  background: #0d6efd;
  color: white;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.withdrawal-submit-btn:hover {
  background: #0b5ed7;
}

.withdrawal-lock-box {
  text-align: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 36px 24px;
}

.withdrawal-lock-box i {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef5ff;
  color: #0d6efd;
  font-size: 34px;
}

.withdrawal-lock-box h4 {
  color: #07111f;
  font-size: 24px;
  margin-bottom: 8px;
}

.withdrawal-lock-box p {
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.7;
}

.withdrawal-lock-box a {
  display: inline-block;
  background: #0d6efd;
  color: white;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
}

.withdrawal-guide-list {
  display: grid;
  gap: 16px;
}

.withdrawal-guide-list > div {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: #f8fbff;
  border-radius: 16px;
  border: 1px solid #edf0f5;
}

.withdrawal-guide-list span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0d6efd, #00d4ff);
  color: white;
  font-weight: 900;
}

.withdrawal-guide-list h4 {
  color: #07111f;
  margin-bottom: 4px;
}

.withdrawal-guide-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1150px) {
  .withdrawal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .withdrawal-summary-grid {
    grid-template-columns: 1fr;
  }

  .withdrawal-two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .withdrawal-warning {
    align-items: flex-start;
  }
}

/* withdrawal page tuning */
.premium-withdrawal-card {
  padding: 0;
  overflow: hidden;
}

.withdrawal-card-top {
  display: flex;
  gap: 16px;
  padding: 28px;
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
  border-bottom: 1px solid #e5e7eb;
}

.withdrawal-card-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #0d6efd;
  color: white;
  font-size: 26px;
}

.withdrawal-label {
  color: #0d6efd;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.withdrawal-card-top h3 {
  color: #07111f;
  font-size: 28px;
  margin-bottom: 4px;
}

.withdrawal-card-top p:last-child {
  color: var(--muted);
  font-size: 14px;
}

.withdrawal-balance-strip {
  margin: 24px 28px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #07111f;
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}

.withdrawal-balance-strip span {
  color: #cbd5e1;
  font-size: 14px;
}

.withdrawal-balance-strip strong {
  font-size: 22px;
}

.premium-withdrawal-card form {
  padding: 0 28px 28px;
}

.withdrawal-field {
  margin-bottom: 18px;
}

.withdrawal-field label {
  display: block;
  color: #07111f;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 8px;
}

.withdrawal-input-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 0 14px;
  transition: 0.25s ease;
}

.withdrawal-input-icon:focus-within {
  border-color: #0d6efd;
  background: white;
  box-shadow: 0 0 0 4px rgba(13,110,253,0.12);
}

.withdrawal-input-icon i {
  color: #0d6efd;
  font-size: 20px;
}

.withdrawal-input-icon input,
.withdrawal-input-icon select {
  width: 100%;
  height: 54px;
  border: none;
  outline: none;
  background: transparent;
  color: #07111f;
  font-size: 15px;
}

.withdrawal-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.premium-warning {
  margin-top: 6px;
}

@media (max-width: 650px) {
  .withdrawal-card-top {
    padding: 24px 20px;
  }

  .withdrawal-balance-strip {
    margin: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .premium-withdrawal-card form {
    padding: 0 20px 24px;
  }

  .withdrawal-split {
    grid-template-columns: 1fr;
    gap: 0;
  }
}


/* withdrawal page end */

/* withdrawals page */

.withdrawals-summary-grid {
  grid-template-columns: repeat(2, 1fr);
}

.dash-alert {
  padding: 15px 18px;
  border-radius: 16px;
  margin-bottom: 22px;
  font-weight: 700;
}

.dash-alert.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.dash-panel-action {
  background: #0d6efd;
  color: white !important;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.dash-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: capitalize;
  background: #eef5ff;
  color: #0d6efd;
}

.status-approved,
.status-completed,
.status-success,
.status-paid {
  background: #dcfce7;
  color: #166534;
}

.status-pending {
  background: #fef3c7;
  color: #92400e;
}

.status-declined,
.status-failed,
.status-rejected {
  background: #fee2e2;
  color: #b91c1c;
}

.dash-empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #eef5ff;
  color: #0d6efd;
  display: grid;
  place-items: center;
  font-size: 34px;
  margin: 0 auto 18px;
}

.dash-empty-state h3 {
  color: #07111f;
  font-size: 24px;
  margin-bottom: 8px;
}

.dash-empty-state p {
  color: var(--muted);
  margin-bottom: 24px;
}

@media (max-width: 650px) {
  .withdrawals-summary-grid {
    grid-template-columns: 1fr;
  }

  .dash-panel-action {
    width: 100%;
    text-align: center;
  }
}

/* withdrawals page end */


/* earnings page */

.earnings-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(13, 110, 253, 0.96), rgba(7, 17, 31, 0.98));
  color: white;
  padding: 34px;
  border-radius: 28px;
  margin-bottom: 24px;
  box-shadow: 0 25px 65px rgba(13, 110, 253, 0.25);
}

.earnings-label {
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.earnings-hero h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  margin-bottom: 10px;
}

.earnings-hero p:last-child {
  color: #dbeafe;
  max-width: 620px;
}

.earnings-hero-icon {
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: rgba(255,255,255,0.12);
  font-size: 42px;
}

.earnings-summary-grid {
  grid-template-columns: repeat(3, 1fr);
}

.earnings-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
}

.earnings-insight-card {
  align-self: start;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.earnings-insight-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #eef5ff;
  color: #0d6efd;
  font-size: 30px;
  margin-bottom: 20px;
}

.earnings-insight-card h3 {
  color: #07111f;
  font-size: 26px;
  margin-bottom: 10px;
}

.earnings-insight-card > p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.earnings-mini-list {
  display: grid;
  gap: 12px;
}

.earnings-mini-list div {
  background: white;
  border: 1px solid #edf0f5;
  border-radius: 16px;
  padding: 15px;
}

.earnings-mini-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 4px;
}

.earnings-mini-list strong {
  color: #07111f;
  font-size: 17px;
}

@media (max-width: 1150px) {
  .earnings-summary-grid {
    grid-template-columns: 1fr;
  }

  .earnings-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .earnings-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
  }

  .earnings-hero-icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    border-radius: 20px;
    font-size: 32px;
  }
}

/* earnings page end */

/* kyc page */

.kyc-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.96), rgba(7, 17, 31, 0.98));
  color: white;
  padding: 34px;
  border-radius: 28px;
  margin-bottom: 24px;
  box-shadow: 0 25px 65px rgba(13, 110, 253, 0.25);
}

.kyc-label {
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.kyc-label.dark {
  color: #0d6efd;
}

.kyc-hero h2 {
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.08;
  margin-bottom: 10px;
}

.kyc-hero p:last-child {
  color: #dbeafe;
  max-width: 650px;
}

.kyc-hero-icon {
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: rgba(255,255,255,0.12);
  font-size: 42px;
}

.kyc-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.kyc-main-panel,
.kyc-guide-panel {
  align-self: start;
}

.kyc-form-head {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #edf0f5;
}

.kyc-form-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #eef5ff;
  color: #0d6efd;
  font-size: 28px;
}

.kyc-form-head h3 {
  color: #07111f;
  font-size: 26px;
  margin-bottom: 4px;
}

.kyc-form-head p:last-child {
  color: var(--muted);
  font-size: 14px;
}

.kyc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.kyc-textarea {
  min-height: 120px;
  padding-top: 14px;
  resize: vertical;
}

.kyc-upload-title {
  margin: 26px 0 16px;
}

.kyc-upload-title h4 {
  color: #07111f;
  font-size: 20px;
  margin-bottom: 4px;
}

.kyc-upload-title p {
  color: var(--muted);
  font-size: 14px;
}

.kyc-upload-box {
  position: relative;
  border: 1px dashed #cbd5e1;
  background: #f8fbff;
  border-radius: 20px;
  padding: 24px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.25s ease;
}

.kyc-upload-box:hover {
  border-color: #0d6efd;
  background: white;
}

.kyc-upload-box i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eef5ff;
  color: #0d6efd;
  font-size: 26px;
  margin-bottom: 14px;
}

.kyc-upload-box label {
  color: #07111f;
  font-weight: 900;
  margin-bottom: 4px;
}

.kyc-upload-box p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
}

.kyc-upload-box input {
  color: #07111f;
  font-size: 13px;
}

.kyc-submit-btn {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 999px;
  margin-top: 26px;
  background: #0d6efd;
  color: white;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.kyc-submit-btn:hover {
  background: #0b5ed7;
}

.kyc-status-card {
  text-align: center;
  padding: 60px 24px;
  border-radius: 24px;
}

.kyc-status-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 42px;
}

.kyc-status-card.pending {
  background: #fff7ed;
}

.kyc-status-card.pending .kyc-status-icon {
  background: #fed7aa;
  color: #9a3412;
}

.kyc-status-card.approved {
  background: #f0fdf4;
}

.kyc-status-card.approved .kyc-status-icon {
  background: #bbf7d0;
  color: #166534;
}

.kyc-status-card.unknown {
  background: #f8fafc;
}

.kyc-status-card.unknown .kyc-status-icon {
  background: #e5e7eb;
  color: #475569;
}

.kyc-status-card h3 {
  color: #07111f;
  font-size: 28px;
  margin-bottom: 10px;
}

.kyc-status-card p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 22px;
  line-height: 1.7;
}

.kyc-pill {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.kyc-pill.pending {
  background: #fed7aa;
  color: #9a3412;
}

.kyc-pill.approved {
  background: #bbf7d0;
  color: #166534;
}

.kyc-pill.unknown {
  background: #e5e7eb;
  color: #475569;
}

.kyc-guide-list {
  display: grid;
  gap: 16px;
}

.kyc-guide-list > div {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: #f8fbff;
  border-radius: 16px;
  border: 1px solid #edf0f5;
}

.kyc-guide-list span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0d6efd, #00d4ff);
  color: white;
  font-weight: 900;
}

.kyc-guide-list h4 {
  color: #07111f;
  margin-bottom: 4px;
}

.kyc-guide-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1150px) {
  .kyc-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .kyc-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
  }

  .kyc-hero-icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    border-radius: 20px;
    font-size: 32px;
  }

  .kyc-form-head {
    flex-direction: column;
  }

  .kyc-two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .kyc-upload-box {
    min-height: 165px;
  }
}


/* premium kyc form inputs */

.kyc-form .dash-form-group {
  margin-bottom: 20px;
}

.kyc-form .dash-form-label {
  font-size: 12px;
  font-weight: 900;
  color: #0d6efd;
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.kyc-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 0 14px;
  height: 56px;
  transition: 0.25s ease;
}

.kyc-input-wrap:focus-within {
  background: white;
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13,110,253,0.12);
}

.kyc-input-wrap i {
  color: #0d6efd;
  font-size: 18px;
}

.kyc-input-wrap input,
.kyc-input-wrap select {
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  background: transparent;
  font-size: 15px;
  color: #07111f;
}

.kyc-textarea-wrap {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px;
  transition: 0.25s ease;
}

.kyc-textarea-wrap:focus-within {
  background: white;
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13,110,253,0.12);
}

.kyc-textarea-wrap textarea {
  width: 100%;
  border: none;
  outline: none;
  resize: vertical;
  background: transparent;
  font-size: 15px;
  color: #07111f;
  min-height: 120px;
}

/* kyc page end */


/* profile page */

.profile-hero-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.96), rgba(7, 17, 31, 0.98));
  color: white;
  padding: 34px;
  border-radius: 28px;
  margin-bottom: 24px;
  box-shadow: 0 25px 65px rgba(13, 110, 253, 0.25);
}

.profile-hero-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile-large-avatar img,
.profile-large-fallback {
  width: 96px;
  height: 96px;
  border-radius: 50%;
}

.profile-large-avatar img {
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.22);
}

.profile-large-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0d6efd, #00d4ff);
  color: white;
  font-size: 38px;
  font-weight: 900;
  border: 4px solid rgba(255,255,255,0.22);
}

.profile-label {
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.profile-hero-card h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  margin-bottom: 8px;
}

.profile-hero-card p:not(.profile-label) {
  color: #dbeafe;
  font-size: 15px;
}

.profile-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  padding: 12px 16px;
  border-radius: 999px;
  color: white;
  font-weight: 800;
}

.profile-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.profile-form-panel,
.profile-side-panel {
  align-self: start;
}

.profile-tabs {
  display: flex;
  gap: 10px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid #edf0f5;
}

.profile-tabs a {
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 999px;
  background: #f4f7fb;
  color: #07111f;
  font-size: 13px;
  font-weight: 900;
}

.profile-tabs a.active {
  background: #0d6efd;
  color: white;
}

.profile-panel-head {
  margin-bottom: 18px;
}

.profile-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.profile-upload-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  background: #f8fbff;
  border: 1px dashed #cbd5e1;
  border-radius: 20px;
  padding: 22px;
  margin-top: 8px;
}

.profile-upload-card i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eef5ff;
  color: #0d6efd;
  font-size: 26px;
  margin-bottom: 12px;
}

.profile-upload-card h4 {
  color: #07111f;
  margin-bottom: 4px;
}

.profile-upload-card p {
  color: var(--muted);
  font-size: 14px;
}

.profile-file-input input {
  max-width: 260px;
  color: #07111f;
  font-size: 13px;
}

.profile-save-btn {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 999px;
  margin-top: 26px;
  background: #0d6efd;
  color: white;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.profile-save-btn:hover {
  background: #0b5ed7;
}

.profile-side-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #eef5ff;
  color: #0d6efd;
  font-size: 30px;
  margin-bottom: 20px;
}

.profile-side-panel h3 {
  color: #07111f;
  font-size: 26px;
  margin-bottom: 10px;
}

.profile-side-panel > p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.profile-info-list {
  display: grid;
  gap: 12px;
}

.profile-info-list div {
  background: #f8fbff;
  border: 1px solid #edf0f5;
  border-radius: 16px;
  padding: 15px;
  min-width: 0;
}

.profile-info-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 4px;
}

.profile-info-list strong {
  display: block;
  color: #07111f;
  font-size: 15px;
  word-break: break-word;
}

@media (max-width: 1150px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .profile-hero-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
  }

  .profile-hero-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-large-avatar img,
  .profile-large-fallback {
    width: 82px;
    height: 82px;
  }

  .profile-large-fallback {
    font-size: 32px;
  }

  .profile-two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .profile-upload-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-file-input input {
    max-width: 100%;
  }

  .profile-tabs {
    flex-wrap: wrap;
  }
}


.profile-form .dash-form-label {
  font-size: 12px;
  font-weight: 900;
  color: #0d6efd;
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.profile-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 0 14px;
  height: 56px;
  transition: 0.25s ease;
}

.profile-input-wrap:focus-within {
  background: white;
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13,110,253,0.12);
}

.profile-input-wrap i {
  color: #0d6efd;
  font-size: 18px;
}

.profile-input-wrap input,
.profile-input-wrap select {
  border: none !important;
  outline: none !important;
  width: 100%;
  height: 100%;
  background: transparent !important;
  font-size: 15px;
  color: #07111f;
  box-shadow: none !important;
  padding: 0 !important;
}

.premium-profile-upload {
  background: #f8fafc;
  border-color: #e5e7eb;
}

.premium-profile-upload:hover {
  background: white;
  border-color: #0d6efd;
}
/* profile page end */

/* change password page */

.security-hero-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.96), rgba(7, 17, 31, 0.98));
  color: white;
  padding: 34px;
  border-radius: 28px;
  margin-bottom: 24px;
  box-shadow: 0 25px 65px rgba(13, 110, 253, 0.25);
}

.security-label {
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.security-label.dark {
  color: #0d6efd;
}

.security-hero-card h2 {
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
  margin-bottom: 10px;
}

.security-hero-card p:last-child {
  color: #dbeafe;
}

.security-hero-icon {
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: rgba(255,255,255,0.12);
  font-size: 42px;
}

.security-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.security-form-panel,
.security-side-panel {
  align-self: start;
}

.security-form-head {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #edf0f5;
}

.security-form-icon,
.security-side-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #eef5ff;
  color: #0d6efd;
  font-size: 28px;
}

.security-form-head h3,
.security-side-panel h3 {
  color: #07111f;
  font-size: 26px;
  margin-bottom: 4px;
}

.security-form-head p:last-child,
.security-side-panel > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.security-form .dash-form-group {
  margin-bottom: 20px;
}

.security-form .dash-form-label {
  font-size: 12px;
  font-weight: 900;
  color: #0d6efd;
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.security-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 0 14px;
  height: 56px;
  transition: 0.25s ease;
}

.security-input-wrap:focus-within {
  background: white;
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13,110,253,0.12);
}

.security-input-wrap i {
  color: #0d6efd;
  font-size: 18px;
}

.security-input-wrap input {
  border: none !important;
  outline: none !important;
  width: 100%;
  height: 100%;
  background: transparent !important;
  font-size: 15px;
  color: #07111f;
  box-shadow: none !important;
  padding: 0 !important;
}

.security-submit-btn {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 999px;
  margin-top: 8px;
  background: #0d6efd;
  color: white;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.security-submit-btn:hover {
  background: #0b5ed7;
}

.security-tip-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.security-tip-list div {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: #f8fbff;
  border: 1px solid #edf0f5;
  border-radius: 16px;
  padding: 15px;
}

.security-tip-list span {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0d6efd, #00d4ff);
  color: white;
  font-weight: 900;
  font-size: 13px;
}

.security-tip-list p {
  color: #1c2733;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1150px) {
  .security-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .security-hero-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
  }

  .security-hero-icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    border-radius: 20px;
    font-size: 32px;
  }

  .security-form-head {
    flex-direction: column;
  }
}

/* change password page end */

/* kycv page */

.kycv-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.kycv-success-card {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid #edf0f5;
  border-radius: 30px;
  padding: 44px;
  text-align: center;
  box-shadow: 0 25px 65px rgba(0,0,0,0.18);
}

.kycv-success-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dcfce7;
  color: #166534;
  font-size: 46px;
}

.kycv-label {
  color: #0d6efd;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.kycv-success-card h2 {
  color: #07111f;
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 12px;
}

.kycv-success-card > p:not(.kycv-label) {
  color: var(--muted);
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 24px;
}

.kycv-status-strip {
  max-width: 420px;
  margin: 0 auto 26px;
  background: #07111f;
  color: white;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.kycv-status-strip span {
  color: #cbd5e1;
}

.kycv-status-strip strong {
  color: white;
}

.kycv-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.kycv-primary-btn,
.kycv-secondary-btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.kycv-primary-btn {
  background: #0d6efd;
  color: white;
}

.kycv-primary-btn:hover {
  background: #0b5ed7;
}

.kycv-secondary-btn {
  background: #eef5ff;
  color: #0d6efd;
}

.kycv-guide-card {
  align-self: start;
}

.kycv-guide-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #eef5ff;
  color: #0d6efd;
  font-size: 30px;
  margin-bottom: 20px;
}

.kycv-guide-card h3 {
  color: #07111f;
  font-size: 26px;
  margin-bottom: 10px;
}

.kycv-guide-card > p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.kycv-steps {
  display: grid;
  gap: 14px;
}

.kycv-steps div {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: #f8fbff;
  border: 1px solid #edf0f5;
  border-radius: 16px;
  padding: 15px;
}

.kycv-steps span {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0d6efd, #00d4ff);
  color: white;
  font-weight: 900;
  font-size: 13px;
}

.kycv-steps p {
  color: #1c2733;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1150px) {
  .kycv-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .kycv-success-card {
    padding: 32px 22px;
  }

  .kycv-status-strip {
    flex-direction: column;
    text-align: left;
  }

  .kycv-actions {
    flex-direction: column;
  }

  .kycv-primary-btn,
  .kycv-secondary-btn {
    width: 100%;
  }
}

/* kycv page end */

/* password reset success pages */

.auth-status-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(13,110,253,0.25), transparent 35%),
    linear-gradient(135deg, #07111f, #0b1220);
  font-family: Tahoma, Verdana, sans-serif;
  color: white;
}

.auth-status-wrapper {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-status-card {
  width: 100%;
  max-width: 520px;
  background: #f8fafc;
  color: #07111f;
  border-radius: 30px;
  padding: 44px 34px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.auth-status-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 46px;
}

.auth-status-icon.success {
  background: #dcfce7;
  color: #166534;
}

.auth-status-label {
  color: #0d6efd;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.auth-status-card h1 {
  font-size: clamp(30px, 5vw, 44px);
  margin-bottom: 12px;
}

.auth-status-card p:not(.auth-status-label) {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 26px;
}

.auth-status-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: #0d6efd;
  color: white;
  text-decoration: none;
  font-weight: 900;
}

.auth-status-btn:hover {
  background: #0b5ed7;
}

@media (max-width: 520px) {
  .auth-status-card {
    padding: 34px 22px;
    border-radius: 24px;
  }

  .auth-status-btn {
    width: 100%;
  }
}

/* password reset success pages end */

/* password reset form */

.auth-reset-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(13,110,253,0.25), transparent 35%),
    linear-gradient(135deg, #07111f, #0b1220);
  font-family: Tahoma, Verdana, sans-serif;
  color: white;
}

.auth-reset-wrapper {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-reset-card {
  width: 100%;
  max-width: 520px;
  background: #f8fafc;
  color: #07111f;
  border-radius: 30px;
  padding: 38px 34px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.auth-reset-brand {
  text-align: center;
  margin-bottom: 22px;
}

.auth-reset-brand a {
  color: #07111f;
  font-size: 26px;
  font-weight: 900;
  text-decoration: none;
}

.auth-reset-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 24px;
  background: #eef5ff;
  color: #0d6efd;
  font-size: 38px;
}

.auth-reset-label {
  color: #0d6efd;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.auth-reset-card h1 {
  text-align: center;
  font-size: clamp(30px, 5vw, 42px);
  margin-bottom: 12px;
}

.auth-reset-text {
  text-align: center;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 26px;
}

.auth-reset-alert {
  background: #eef5ff;
  color: #0d6efd;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 800;
  margin-bottom: 18px;
}

.auth-reset-form label {
  display: block;
  color: #0d6efd;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 7px;
}

.auth-reset-input {
  height: 56px;
  border: 1px solid #e5e7eb;
  background: white;
  border-radius: 16px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  transition: 0.25s ease;
}

.auth-reset-input:focus-within {
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13,110,253,0.12);
}

.auth-reset-input i {
  color: #0d6efd;
  font-size: 20px;
}

.auth-reset-input input {
  width: 100%;
  height: 100%;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  color: #07111f;
  font-size: 15px;
  box-shadow: none !important;
}

.auth-reset-btn {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 999px;
  background: #0d6efd;
  color: white;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.auth-reset-btn:hover {
  background: #0b5ed7;
}

.auth-reset-links {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #94a3b8;
  flex-wrap: wrap;
}

.auth-reset-links a {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

@media (max-width: 520px) {
  .auth-reset-card {
    padding: 32px 22px;
    border-radius: 24px;
  }
}

/* password reset form end */

.compact-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  min-height: 105px;
  border-left: 4px solid #EF4444;
}

.compact-stat-card .stat-icon {
  background: transparent;
  color: #FE710D;
  width: auto;
  height: auto;
  border-radius: 0;
  font-size: 34px;
  margin-bottom: 0;
  flex: 0 0 auto;
}

.compact-stat-card p {
  margin-bottom: 5px;
  font-size: 13px;
}

.compact-stat-card h3 {
  margin-bottom: 0;
  font-size: 21px;
}

.compact-stat-card a {
  display: none;
}

@media (max-width: 650px) {
  .compact-stat-card {
    padding: 16px;
    min-height: 92px;
  }

  .compact-stat-card .stat-icon {
    font-size: 30px;
  }

  .compact-stat-card h3 {
    font-size: 19px;
  }
}



/* tv */
.single-ticker-widget {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.single-ticker-widget .tradingview-widget-container {
  min-height: 52px;
  background: transparent !important;
}


/* dash tv */
.trading-chart-panel {
  padding-bottom: 14px;
}

.live-chart-widget {
  overflow: hidden;
  border-radius: 20px;
}

.live-chart-widget iframe {
  border-radius: 20px;
}

/* auth single */

.auth-single-wrap {
  min-height: calc(100vh - 90px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.auth-single-wrap .auth-card {
  width: 100%;
  max-width: 500px;
}

/* auth login head */

.auth-login-head {
  text-align: center;
  margin-bottom: 24px;
}

.auth-login-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.auth-login-title i {
  font-size: 22px;
  color: #07111f;
}

.auth-login-title h2 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #07111f;
  margin: 0;
}

.auth-login-head p {
  color: #64748b;
  font-size: 14px;
}

/* signup */
.auth-single-wrap {
  min-height: calc(100vh - 90px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.auth-single-wrap .auth-card {
  width: 100%;
  max-width: 460px;
}

.auth-login-head {
  text-align: center;
  margin-bottom: 24px;
}

.auth-login-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.auth-login-title i {
  font-size: 22px;
  color: #07111f;
}

.auth-login-title h2 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #07111f;
  margin: 0;
}

.auth-login-head p {
  color: #64748b;
  font-size: 14px;
}

/* logo */

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 180px;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 650px) {
  .brand-logo {
    width: 145px;
  }
}

/* dashboard */

.dash-logo {
  width: 170px;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 650px) {
  .dash-logo {
    width: 145px;
  }
}

/* password toggle */
.password-wrap {
  position: relative;
}

.password-wrap .auth-input {
  padding-right: 52px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  cursor: pointer;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-toggle i {
  font-size: 20px;
}


/* google translate */
.nav {
  height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.desktop-auth-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mobile-auth-links {
  display: none;
}

/* google translate */

.translate-wrap {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 80;
}

#google_translate_element {
  line-height: 1;
}

.goog-te-gadget {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 0 !important;
}

.goog-te-gadget span,
.goog-logo-link {
  display: none !important;
}

.translate-wrap .goog-te-combo {
  width: 165px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: #ffffff;
  color: #07111f;
  font-size: 13px;
  font-weight: 700;
  padding: 0 12px;
  cursor: pointer;
  outline: none;
}

.translate-wrap .goog-te-combo:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.18);
}

.goog-te-banner-frame.skiptranslate,
body > .skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

@media (max-width: 850px) {
  .nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-actions {
    margin-left: auto;
    gap: 8px;
  }

  .desktop-auth-links {
    display: none;
  }

  .mobile-auth-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .menu-btn {
    display: block;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    padding: 25px 4%;
    background: var(--dark);
  }

  .nav-links.show {
    display: flex;
  }

  .translate-wrap .goog-te-combo {
    width: 128px;
    max-width: 34vw;
    height: 34px;
    font-size: 12px;
    padding: 0 8px;
  }
}

@media (max-width: 390px) {
  .translate-wrap .goog-te-combo {
    width: 112px;
    font-size: 11px;
  }
}

/* dashboard google translate */

.dash-topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.dash-translate-wrap {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 130;
}

.dash-translate-wrap #google_translate_element {
  line-height: 1;
}

.dash-translate-wrap .goog-te-gadget {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 0 !important;
}

.dash-translate-wrap .goog-te-gadget span,
.dash-translate-wrap .goog-logo-link {
  display: none !important;
}

.dash-translate-wrap .goog-te-combo {
  width: 165px;
  height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #ffffff;
  color: #07111f;
  font-size: 13px;
  font-weight: 800;
  padding: 0 12px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.14);
}

.dash-translate-wrap .goog-te-combo:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.14);
}

.goog-te-banner-frame.skiptranslate,
body > .skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

@media (max-width: 900px) {
  .dash-topbar-actions {
    margin-left: 0;
  }

  .dash-translate-wrap {
    position: fixed;
    top: 13px;
    right: 64px;
    z-index: 140;
  }

  .dash-translate-wrap .goog-te-combo {
    width: 126px;
    max-width: 31vw;
    height: 34px;
    font-size: 12px;
    padding: 0 8px;
    box-shadow: none;
  }
}

@media (max-width: 420px) {
  .dash-mobile-header {
    gap: 8px;
    padding: 0 12px;
  }

  .dash-mobile-title {
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    max-width: none;
    overflow: visible;
    white-space: nowrap;
    text-overflow: clip;
  }

  .dash-menu-btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .dash-translate-wrap {
    right: 56px;
  }

  .dash-translate-wrap .goog-te-combo {
    width: 106px;
    font-size: 11px;
  }
}
