
/*-----------------------------------*/
/* Section */
:root{
  --size: 70px;
  --thickness: 6px;
  --percent: 0;
}
.roi-div-section {
  background: #0b0617;
  color: #fff;
}

/* Heading */
.roi-div-title {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(to right, #a855f7, #ec4899);
  -webkit-background-clip: text;
  color: transparent;
}

.roi-div-subtitle {
  max-width: 750px;
  color: #9ca3af;
  font-size: 18px;
}

/* Wrapper */
.roi-div-wrapper {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
}

/* Rows */
.roi-div-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1.2fr 1.2fr 1.2fr 1.3fr;
  padding: 18px 16px;
  align-items: center;
  border-bottom: 1px solid rgba(168,85,247,0.15);
  transition: 0.3s;
}

.roi-div-row:hover {
  background: rgba(168,85,247,0.08);
}

.roi-div-head {
  font-weight: 700;
  color: #c084fc;
  background: rgba(168,85,247,0.08);
}

/* Badges */
.roi-div-badge {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg,#a855f7,#ec4899);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Popular */
.roi-div-popular {
  background: rgba(168,85,247,0.12);
}

.roi-div-tag {
  margin-left: 10px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  background: linear-gradient(to right,#a855f7,#ec4899);
}

/* Total */
.roi-div-total {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(to right,#a855f7,#ec4899);
  -webkit-background-clip: text;
  color: transparent;
}

/* CTA */
.roi-div-btn {
  padding: 14px 36px;
  background: linear-gradient(to right,#a855f7,#ec4899);
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

/* Colors */
.text-green { color: #4ade80; }
.text-blue { color: #60a5fa; }

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

  .roi-div-head {
    display: none;
  }

  .roi-div-wrapper {
    background: transparent;
  }

  .roi-div-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(168,85,247,0.25);
  }

  .roi-div-row > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
  }

  .roi-div-row > div::before {
    content: attr(data-label);
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
    text-align: left;
  }

  .roi-div-row > div:first-child::before {
    content: "";
  }

  .roi-div-total {
    font-size: 22px;
  }
}


.tetherheader-mobile {
  display: none;
}

.tetherheader-mobile.active {
  display: block;
}

/* General Styles */
.TETHER {
    font-family: Arial, sans-serif;
    background-color: #1A1A1A;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex-wrap: wrap;
}

.footer-left, .footer-right {
    flex: 1;
    margin: 10px;
}

.footer-left {
    max-width: 400px;
}

.footer-right {
    display: flex;
    justify-content: space-between;
}

.footer-right div {
    max-width: 300px;
}

h4 {
    color: #9C4E97;  /* Purple color similar to the one in the image */
    margin-bottom: 10px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 5px 0;
}

a {
    color: #D3B7DB; /* Light purple text for the links */
    text-decoration: none;
    display: flex;
    align-items: center;
}

a:hover {
    color: #fff;
}

/* Icons */
i {
    margin-right: 10px;
    color: #9C4E97;  /* Purple color for the icons */
}

a:hover i {
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 10px;
    background-color: #0f0f0f;
}

.footer-bottom p {
    font-size: 14px;
    color: #b0b0b0;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-left, .footer-right {
        max-width: 100%;
        text-align: center;
    }

    .footer-right {
        margin-top: 20px;
    }

    .footer-right div {
        max-width: 100%;
    }

    .footer-bottom {
        font-size: 12px;
    }
}



/*--------------------------------*/


/* Section */
.benefits-section {
  background: #0b0b14;
  color: #fff;
}

/* Title */
.benefits-title {
  font-size: 3rem;
  font-weight: 700;
}

.text-gradient {
  background: linear-gradient(45deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits-subtitle {
  color: #9ca3af;
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Card */
.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px 25px;
  height: 100%;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
  border: 3px solid purple;
}

.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(45deg, #a855f7, #ec4899);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  transition: transform 0.3s ease;
}

.benefit-card:hover .icon-box {
  transform: scale(1.1);
}

.benefit-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit-card p {
  color: #9ca3af;
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .benefits-title {
    font-size: 2.2rem;
  }

  .benefit-card {
    padding: 25px 20px;
  }
}





.site-footer {
  background: black;
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(168, 85, 247, 0.3);
  color: #fff;
}

.footer-logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.brand-text {
  font-size: 1.3rem;
  font-weight: 700;
}

.text-gradient {
  background: linear-gradient(45deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-text {
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #a855f7;
}

.community-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  font-size: 0.85rem;
  color: #ddbeff;
  background:rgba(168, 85, 247, 0.31);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 5px;
  border: 2px solid #5c2a6c;
}

.community-btn:hover {
  background: rgba(168, 85, 247, 0.31);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
  padding:8px;
}

.footer-bottom {
  border-top: 1px solid rgba(168, 85, 247, 0.3);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #9ca3af;
}

/* Mobile */
@media (max-width: 767px) {
  .footer-title {
    margin-top: 15px;
  }
}



.tetherheader {
  background: linear-gradient(135deg, rgba(20,10,40,0.9), rgba(0,0,0,0.9));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(168,85,247,0.25);
  z-index: 9999;
}

.tetherheader-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 25px;
}

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

.tetherheader-logo img {
  height: 40px;
}

.tetherheader-logo span {
  margin-left: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(45deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tetherheader-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.tetherheader-menu li a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.tetherheader-menu li a:hover,
.tetherheader-menu li a.active {
  color: #ec4899;
}

.tetherheader-menu li a.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(45deg, #a855f7, #ec4899);
  bottom: -6px;
  left: 0;
}

.tetherheader-btn {
  background: linear-gradient(45deg, #a855f7, #ec4899);
  color: #fff;
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(168,85,247,0.7);
}
.tetherheader-btn1 {
  background: linear-gradient(45deg, #58d73e, #339130);
  color: #fff;
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(168,85,247,0.7);
}

.tetherheader-toggle {
  display: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

.tetherheader-mobile {
  display: none;
  background: rgba(0,0,0,0.95);
  border-top: 1px solid rgba(168,85,247,0.25);
}

.tetherheader-mobile ul {
  list-style: none;
  padding: 15px;
  margin: 0;
}

.tetherheader-mobile li {
  margin-bottom: 12px;
}

.tetherheader-mobile a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 1rem;
}

.tetherheader-mobile .mobile-btn {
  display: block;
  margin-top: 10px;
  text-align: center;
  padding: 10px;
  background: linear-gradient(45deg, #a855f7, #ec4899);
  border-radius: 8px;
}

@media (max-width: 991px) {
  .tetherheader-nav,
  .tetherheader-action {
    display: none;
  }
.tetherheader-btn{
    display:none;
}
  .tetherheader-toggle {
    display: block;
  }
}

.tdf-hero {
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(circle at left, #2a0a3d, #000000 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  box-sizing: border-box;
}

.tdf-hero-container {
  max-width: 1100px;
  text-align: center;
  color: #fff;
}

.tdf-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(180, 0, 255, 0.15);
  border: 1px solid rgba(200, 0, 255, 0.5);
  color: #d47cff;
  font-size: 14px;
  margin-bottom: 30px;
}

.tdf-hero-title {
    background: linear-gradient(90deg, #ff61d2, #8b5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.tdf-hero-title span {
    color:white;
  /*background: linear-gradient(90deg, #ff61d2, #8b5cff);*/
  /*-webkit-background-clip: text;*/
  /*-webkit-text-fill-color: transparent;*/
}

.tdf-hero-text {
  font-size: 18px;
  color: #cfcfcf;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.tdf-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.tdf-btn-primary {
  padding: 14px 30px;
  background: linear-gradient(90deg, #ff2fb3, #8b5cff);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 0 25px rgba(180, 0, 255, 0.6);
  transition: 0.3s;
}

.tdf-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(200, 0, 255, 0.9);
}

.tdf-btn-secondary {
  padding: 14px 30px;
  border: 1px solid #a855f7;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.tdf-btn-secondary:hover {
  background: rgba(168, 85, 247, 0.15);
}
.hiw-section {
  background: #0b0617 !important;
  color: #fff;
}

.hiw-title {
  font-size: 44px;
  font-weight: 700;
  background: linear-gradient(to right,#a855f7,#ec4899);
  -webkit-background-clip: text;
  color: transparent;
}

.hiw-subtitle {
  max-width: 750px;
  color: #9ca3af;
  font-size: 18px;
}

.hiw-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 28px 22px;
  height: 100%;
  transition: 0.3s;
  text-align: center;
}

.hiw-card:hover {
  box-shadow: 0 0 30px rgba(168,85,247,0.45);
  border: 3px solid purple;
}

.hiw-step {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg,#a855f7,#ec4899);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.hiw-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: linear-gradient(135deg,#a855f7,#ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color:white !important;
}

.hiw-card-text {
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.6;
}

.hiw-cta {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 20px;
}

.hiw-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(to right,#a855f7,#ec4899);
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

/* mobile */
@media (max-width: 576px) {
  .hiw-title {
    font-size: 34px;
  }
}


.stat-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(168,85,247,0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(168,85,247,0.4);
  box-shadow: 0 0 25px rgba(168,85,24);
  
}


@media (min-width: 1200px) {
  .cmp-dashboard {
    padding: 70px 80px;

  }
}
.cmp-dashboard {
  background: radial-gradient(circle at top left, #2b0f3a, #050006);
  padding: 70px 20px;
  /*padding: 50px 20px;*/
  color: #fff;
  font-family: Arial, sans-serif;
}
.cmp-title {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #b76cff, #ff5ea8);
    background-clip: border-box;
  -webkit-background-clip: text;
  color: transparent;
}



.re-glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(128, 0, 128, 0.2);
  border-radius: 1rem;
  color: #fff;
}

.re-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.re-subtitle {
  color: #aaa;
  font-size: 0.8rem;
}

.re-small-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #aaa;
}

.re-large-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.re-total {
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(90deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.re-card {
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

.re-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.re-card-icon {
  position: absolute;
  bottom: -10px;
  right: -10px;
  opacity: 0.1;
}

.re-card-content {
  position: relative;
  z-index: 1;
}

.re-card-purple { background: linear-gradient(135deg, rgba(128,0,128,0.1), rgba(255,192,203,0.05)); border-color: rgba(128,0,128,0.3); }
.re-card-purple2 { background: linear-gradient(135deg, rgba(128,0,128,0.1), rgba(0,0,255,0.05)); border-color: rgba(128,0,128,0.3); }
.re-card-green { background: linear-gradient(135deg, rgba(0,128,0,0.1), rgba(0,255,127,0.05)); border-color: rgba(0,128,0,0.3); }
.re-card-blue { background: linear-gradient(135deg, rgba(0,0,255,0.1), rgba(0,255,255,0.05)); border-color: rgba(0,0,255,0.3); }
.re-card-pink { background: linear-gradient(135deg, rgba(255,105,180,0.1), rgba(128,0,128,0.05)); border-color: rgba(255,105,180,0.3); }

.re-text-purple { color: #a855f7; font-weight: 600; }
.re-text-green { color: #10b981; font-weight: 600; }
.re-text-blue { color: #3b82f6; font-weight: 600; }
.re-text-pink { color: #ec4899; font-weight: 600; }

@media (min-width: 1200px) {
  .cmp-dashboard {
    padding: 70px 80px;
  }
}
@media (min-width: 768px) {
        .lvl-number {
      font-size: 1.25rem;
    }
}

  
.nt-bg-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid #4e2773;
}

.nt-rounded-3 {
  border-radius: 1.5rem;
  padding:23px 36px;
}
.nt-rounded-xl {
  border-radius: 1rem;
}
.nt-rounded-lg {
  border-radius: 0.75rem;
}

.nt-shadow {
  box-shadow: 0 0 20px rgba(128, 0, 255, 0.5);
}

.nt-bg-gradient {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.nt-text-gradient {
  background: linear-gradient(to right, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.border-purple {
  border-color: rgba(139, 92, 246, 0.2) !important;
}

.nt-bg-purple-light {
  background-color: rgba(139, 92, 246, 0.1);
}

.nt-text-sm {
  font-size: 0.875rem;
}

.nt-btn-disabled {
  background-color: #4b5563;
  color: #d1d5db;
  opacity: 0.5;
  cursor: not-allowed;
  border: none;
}


.lnk-glass-effect {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
   border: 1px solid #4e2773;
}

.lnk-border-red {
  border: 1px solid rgba(255, 0, 0, 0.2);
}

.lnk-icon-circle {
  width: 80px;
  height: 80px;
  background: rgba(255, 0, 0, 0.1);
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.lnk-icon {
  color: #f87171; /* red-400 */
}

.lnk-title {
  color: #fff;
  font-size: 1.75rem;
  max-width:500px;
}

.lnk-text-gray {
  color: #9ca3af;
  max-width:500px;
}
.lnk-text-gray-small {
  color: #9ca3af;
  font-size: 0.85rem;
}
.lnk-text-white {
  color: #fff;
}
.lnk-text-red {
  color: #f87171;
}
.lnk-text-purple {
  color: #a78bfa;
}

.lnk-progress-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(167,139,250,0.2);
  max-width:500px;
}

.lnk-progress-gradient {
  background: linear-gradient(to right, #7c3aed, #ec4899);
}

.lnk-btn {
  background: linear-gradient(to right, #7c3aed, #ec4899);
  color: #fff;
  border-radius: 1rem;
  padding: 0.75rem 2rem;
  transition: all 0.3s;
  text-decoration: none;
}
.lnk-btn:hover {
  background: linear-gradient(to right, #6b21a8, #db2777);
  color: #fff;
}

.lnk-note {
  color: #6b7280;
}



.lvl-card {
  background: linear-gradient(90deg, rgba(168,85,247,0.1) 0%, rgba(168,85,247,0.05) 50%, transparent 100%);
  border: 1px solid #4e2773;
  box-shadow: 0 0 25px rgba(168,85,247,0.15);
  position: relative;
  overflow: hidden;
}

.lvl-card .lvl-label {
  letter-spacing: 0.1em;
  color: #c4b5fd; 
}

.lvl-card .lvl-number {
  color: white;
}
.lvl-number {
    font-size:2.25rem;
}


.lvl-card .lvl-status {
  color: #9ca3af; 
}

.lvl-card .lvl-info span b {
  color: #c4b5fd; 
}

.lvl-card .lvl-ring {
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 1rem;
  top: 0;
  left: 0;
}

.lvl-card .border-purple-500\/20 {
  border-color: rgba(168,85,247,0.2) !important;
}


.dwn-glass {
    background: rgb(255 255 255/.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(128, 0, 128, 0.3); 
}

/* Header */
.dwn-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
}
.dwn-badge {
    background-color: rgba(128,0,128,0.2);
    color: #c084fc;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.dwn-input {
    background-color: rgba(0,0,0,0.5);
    border: 1px solid rgba(128,0,128,0.3);
    color: #fff;
}
.dwn-input:focus {
    border-color: #c084fc;
    box-shadow: none;
}

.dwn-select {
    background-color: rgba(0,0,0,0.5);
    border: 1px solid rgba(128,0,128,0.3);
    color: #fff;
}
.dwn-select:focus {
    border-color: #c084fc;
    box-shadow: none;
}

.dwn-search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af; /* gray-400 */
}

.dwn-table-responsive {
    max-height: 500px;
    overflow-y: auto;
}
.dwn-thead th {
    color: #9ca3af;
    font-weight: 600;
    border-bottom: 1px solid rgba(128,0,128,0.2);
}

.dwn-mobile-list {
    max-height: 400px;
    overflow-y: auto;
}

.dwn-icon-user, .dwn-icon-search {
    color: #9ca3af;
}
.table > :not(caption) > * > *{
    background-color:rgb(255 255 255/.05) !important;
}





.rpf-card {
  border-radius: 1.5rem;
}

.rpf-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.rpf-border-blue   { border: 1px solid rgba(59,130,246,.35); }
.rpf-border-purple{ border: 1px solid rgba(168,85,247,.35); }
.rpf-border-green { border: 1px solid rgba(34,197,94,.35); }

.rpf-icon-box {
  padding: 0.75rem;
  border-radius: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.rpf-bg-blue {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.rpf-bg-purple {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.rpf-bg-green {
  background: linear-gradient(135deg, #16a34a, #10b981);
}

.rpf-text-gradient {
  background: linear-gradient(45deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rpf-text-blue {
  color: #60a5fa;
}

.rpf-list li {
  color: rgba(255,255,255,.75);
  margin-bottom: .5rem;
  padding-left: 1.25rem;
  position: relative;
}

.rpf-list li::before {
  content: "âœ”";
  position: absolute;
  left: 0;
  color: #a855f7;
}
.rpf-mini-card {
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: .75rem;
  padding: 1rem;
  color: #22c55e;
  font-weight: 600;
}

.rpf-table th {
  color: #c084fc;
}

.rpf-table td {
  color: #fff;
}

.rpf-table tbody tr:hover {
  background: rgba(168,85,247,.05);
}


.rpf-border-yellow {
  border: 1px solid rgba(234,179,8,.35);
}

.rpf-bg-yellow {
  background: linear-gradient(135deg, #ca8a04, #f97316);
}

.rpf-condition {
  padding: 1rem;
  border-radius: .75rem;
  background: rgba(0,0,0,.25);
  border: 1px solid transparent;
}

.rpf-condition-success {
  border-color: rgba(34,197,94,.35);
  color: #4ade80;
}

.rpf-condition-warning {
  border-color: rgba(253,224,71,.35);
  color: #fde047;
}

.rpf-condition-warning-strong {
  border-color: rgba(250,204,21,.45);
  color: #facc15;
}

.rpf-condition-orange {
  border-color: rgba(249,115,22,.45);
  color: #fb923c;
}

.rpf-text-yellow {
  color: #fde047;
}

.rpf-text-orange {
  color: #fb923c;
}
.table thead th{
    border:none;
}
 .table td, .table th{
     border:none;
 }
 
 
 
 
.onb-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.onb-text-gradient {
  background: linear-gradient(45deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.onb-card-success {
  background: linear-gradient(135deg, rgba(34,197,94,.15), rgba(16,185,129,.05));
  border: 1px solid rgba(34,197,94,.4);
}

.onb-icon-box-success {
  background: linear-gradient(135deg, #16a34a, #059669);
  padding: 14px;
  border-radius: 14px;
}

.onb-border-purple {
  border-color: rgba(168,85,247,.4) !important;
}

.onb-row-hover:hover {
  background-color: rgba(168,85,247,.08);
}

.onb-row-highlight {
  background-color: rgba(34,197,94,.08);
}

.onb-badge-success {
  background-color: rgba(34,197,94,.2);
  color: #22c55e;
  font-size: 0.7rem;
  font-weight: 700;
}

.onb-info-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 14px;
}

.onb-info-success {
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.35);
}

.onb-info-danger {
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.35);
}

.onb-info-purple {
  background: rgba(168,85,247,.12);
  border: 1px solid rgba(168,85,247,.35);
}

.text-purple {
  color: rgb(192 132 252/var(--tw-text-opacity,1)) !important;
}

@media (min-width: 768px) {
        .lvl-number {
      font-size: 1.25rem;
    }
}

/*leadership*/



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

body {
  background: #0b0b12;
  color: #ffffff;
  font-family: Inter, system-ui, sans-serif;
}

/* LAYOUT */
.page-container {
  max-width: 1400px;
  margin: auto;
  padding: 96px 16px 64px;
}

.page-header {
  margin-bottom: 40px;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.page-subtitle {
  color: #9ca3af;
  margin-top: 8px;
}

/* CARDS */
.card {
  margin-bottom: 32px;
  padding: 24px;
  border-radius: 16px;
}

.glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(168,85,247,0.3);
}

/* TEXT */
.section-title {
  font-size: 1.6rem;
  font-weight: 600;
}

.section-subtitle {
  color: #9ca3af;
  margin-bottom: 16px;
}

.center {
  text-align: center;
}

.gradient-text {
  background: linear-gradient(to right,#a855f7,#ec4899);
  -webkit-background-clip: text;
  color: transparent;
}

/* RANK BOX */
.rank-box {
  display: flex;
  justify-content: space-between;
  margin: 24px 0;
}

.label {
  font-size: 0.8rem;
  color: #9ca3af;
}

.highlight {
  color: #facc15;
  font-weight: 600;
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.stat-box {
  padding: 16px;
  border-radius: 12px;
}

.stat-label {
  font-size: 0.7rem;
  color: #9ca3af;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 700;
}

.stat-unit {
  font-size: 0.75rem;
  font-weight: 600;
}

.green { border:1px solid #22c55e55; }
.blue { border:1px solid #3b82f655; }
.purple { border:1px solid #a855f755; }
.pink { border:1px solid #ec489955; }

/* PROGRESS */
.progress-items {
  margin-bottom: 20px;
  margin-top: 27px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.progress-bar {
  height: 10px;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 6px;
}

.progress-fill {
  height: 100%;
}

.progress-fill.purple {
  background: linear-gradient(to right,#a855f7,#ec4899);
}

.progress-fill.green {
  background: linear-gradient(to right,#22c55e,#10b981);
}

/* BUTTON */
.btn-primary {
  display: block;
  margin-top: 24px;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(to right,#f59e0b,#f97316);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

/* EMPTY */
.empty-state {
  text-align: center;
  padding: 40px 0;
}

.error {
  color: #f87171;
  font-weight: 600;
}

.muted {
  color: #9ca3af;
  font-size: 0.9rem;
}

/* RANKS */
.rank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 16px;
}

.rank-card {
  border: 1px solid rgba(168,85,247,0.3);
  padding: 16px;
  border-radius: 14px;
  text-align: center;
}

/* INFO */
.info-box {
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.3);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.example-box {
  border: 1px solid rgba(34,197,94,0.3);
  padding: 16px;
  border-radius: 12px;
}

.green-text {
  color: #22c55e;
  margin-top: 12px;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4,1fr);
  }

  .page-title {
    font-size: 3rem;
    background: linear-gradient(to right, #a855f7, #ec4899);
    background-clip: border-box;
    -webkit-background-clip: text;
   color: transparent;
  }
}
/* ===== OVERVIEW CARD ===== */
.overview-card {
  padding: 24px;
  border-radius: 18px;
  margin-bottom: 32px;
}

/* Glass effect */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(168, 85, 247, 0.3);
}

/* ===== TITLES ===== */
.overview-title {
  font-size: 1.6rem;
  font-weight: 600;
}

.overview-subtitle {
  color: #9ca3af;
  margin-top: 4px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* ===== RANK SUMMARY ===== */
.rank-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.rank-current,
.rank-next {
  flex: 1;
  min-width: 220px;
}

.rank-label {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
}

.rank-name {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(to right, #a855f7, #ec4899);
  -webkit-background-clip: text;
  color: transparent;
}

.next-rank-name {
  font-size: 1.2rem;
  font-weight: 600;
}

.rank-roi {
  color: #facc15;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== STATS GRID ===== */
.overview-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Desktop */
@media (min-width: 768px) {
  .overview-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== STAT CARDS ===== */
.stat-card {
  padding: 16px;
  border-radius: 14px;
  position: relative;
}

.stat-title {
  font-size: 0.7rem;
  color: #9ca3af;
  text-transform: uppercase;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 6px;
}

.stat-currency {
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===== COLOR VARIANTS ===== */
.stat-green {
  border: 1px solid rgba(34, 197, 94, 0.45);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), transparent);
}

.stat-blue {
  border: 1px solid rgba(59, 130, 246, 0.45);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), transparent);
}

.stat-purple {
  border: 1px solid rgba(168, 85, 247, 0.45);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.18), transparent);
}

.stat-pink {
  border: 1px solid rgba(236, 72, 153, 0.45);
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), transparent);
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 480px) {
  .overview-card {
    padding: 18px;
  }

  .rank-name {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 1.2rem;
  }
}

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

body {
  background: #0b0b12;
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
}

/* GLASS */
.glass-box {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(168,85,247,0.25);
}

/* CARD */
.leader-card {
  padding: 24px;
  border-radius: 20px;
  margin-bottom: 32px;
}

/* HEADER */
.leader-title {
  font-size: 1.6rem;
  font-weight: 700;
}

.leader-subtitle {
  color: #9ca3af;
  margin-top: 4px;
}

/* RANK */
.rank-highlight {
  margin: 24px 0;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(249,115,22,0.05));
  border: 1px solid rgba(245,158,11,0.3);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.rank-left {
  display: flex;
  gap: 16px;
  align-items: center;
}

.rank-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 28px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.rank-label {
  font-size: 0.75rem;
  color: #9ca3af;
}

.rank-value {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(to right,#facc15,#fb923c);
  -webkit-background-clip: text;
  color: transparent;
}

.rank-roi {
  font-size: 0.85rem;
  font-weight: 600;
  color: #facc15;
}

.next-rank {
  font-size: 1.3rem;
  font-weight: 700;
}

/* STATS */
.stats-grid1 {
  display: grid;
  /*grid-template-columns: repeat(4,1fr);*/
  gap: 16px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .stats-grid1 {
    grid-template-columns: repeat(4,1fr);
  }
}

.stat-card {
  padding: 16px;
  border-radius: 14px;
}

.stat-title {
  font-size: 0.7rem;
  color: #9ca3af;
  text-transform: uppercase;
}

.stat-number {
  font-size: 1.3rem;
  font-weight: 700;
}

.stat-unit {
  font-size: 0.75rem;
  font-weight: 600;
}

/* COLORS */
.green { border:1px solid #22c55e55; background:linear-gradient(135deg,#22c55e22,transparent); }
.blue { border:1px solid #3b82f655; background:linear-gradient(135deg,#3b82f622,transparent); }
.purple { border:1px solid #a855f755; background:linear-gradient(135deg,#a855f722,transparent); }
.pink { border:1px solid #ec489955; background:linear-gradient(135deg,#ec489922,transparent); }

/* PROGRESS */
.progress-box {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(168,85,247,0.25);
  margin-bottom: 24px;
background: rgba(0,0,0,0.4);
    
}

.progress-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.progress-items {
  margin-bottom: 20px;
  margin-top: 27px;
}

.progress-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 6px;
  margin-top: -17px;
}

.progress-bar {
  height: 10px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0,0,0,0.4);
}

.progress-fill {
  height: 100%;
}

.progress-fill.purple {
  background: linear-gradient(to right,#a855f7,#ec4899);
}

.progress-fill.green {
  background: linear-gradient(to right,#22c55e,#10b981);
}

/* BUTTON */
.primary-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(to right,#f59e0b,#f97316);
  transition: 0.3s;
}

.primary-btn:hover {
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 480px) {
  .rank-value {
    font-size: 1.4rem;
  }
}



/* Section */
.dl-section {
  padding: 60px 16px;
  background: #0b0f1a;
  color: #fff;
  font-family: Arial, sans-serif;
}

.dl-container {
  max-width: 1100px;
  margin: auto;
}

/* Heading */
.dl-heading {
  text-align: center;
  margin-bottom: 40px;
}

.dl-heading h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.dl-heading h2 span,
.grad {
  background: linear-gradient(90deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dl-heading p {
  color: #b3b3b3;
  font-size: 18px;
}

/* Card */
.dl-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 20px;
  padding: 30px;
}

/* Info */
.dl-info {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.dl-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.dl-icon.blue {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.dl-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.dl-info p {
  color: #ccc;
  line-height: 1.6;
}

/* Example */
.dl-example {
  background: rgba(139,92,246,0.08);
  border: 2px solid rgba(139,92,246,0.3);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
}

.dl-example h4 span {
  color: #ec4899;
}

.dl-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.dl-row span {
  width: 120px;
  color: #aaa;
}

.dl-row div {
  flex: 1;
  background: rgba(0,0,0,0.3);
  padding: 10px;
  border-radius: 10px;
}

.dl-row em {
  color: #8b5cf6;
}

.green {
  color: #4ade80;
}

/* Income */
.dl-income {
  margin-top: 20px;
  padding: 15px;
  border-radius: 12px;
  background: rgba(34,197,94,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dl-income strong {
  font-size: 22px;
  color: #4ade80;
}

/* Grid */
.dl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.dl-box {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid;
}

.dl-box h5 {
  margin-bottom: 6px;
}

.dl-box p {
  font-size: 14px;
  color: #ccc;
}

.dl-box.red { border-color: #ef4444; }
.dl-box.blue { border-color: #3b82f6; }
.dl-box.purple { border-color: #a855f7; }
.dl-box.green { border-color: #22c55e; }

/* Key Points */
.dl-points {
  background: rgba(234,179,8,0.08);
  border: 1px solid rgba(234,179,8,0.3);
  border-radius: 16px;
  padding: 20px;
}

.dl-points h4 {
  margin-bottom: 12px;
}

.dl-points ul li {
  margin-bottom: 8px;
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .dl-info {
    flex-direction: column;
  }

  .dl-grid {
    grid-template-columns: 1fr;
  }

  .dl-row {
    flex-direction: column;
  }

  .dl-row span {
    width: auto;
  }

  .dl-income {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}


/* Section */
.doc-hero {
  padding: 80px 16px;
  /*background: #0b0f1a;*/
  background: radial-gradient(circle at top, #2a004f, #000);
  color: #fff;
  font-family: Arial, sans-serif;
}

.doc-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.doc-header {
  text-align: center;
}

/* Icon box */
.doc-icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(236, 72, 153, 0.2)
  );
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #c084fc;
}

/* Title */
.doc-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.doc-header h1 span {
  background: linear-gradient(90deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.doc-header p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  color: #b3b3b3;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
  .doc-header h1 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .doc-hero {
    padding: 60px 14px;
  }

  .doc-icon-box {
    width: 70px;
    height: 70px;
  }

  .doc-header h1 {
    font-size: 32px;
  }

  .doc-header p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .doc-header h1 {
    font-size: 28px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: radial-gradient(circle at top, #2a004f, #000);
  color: #fff;
}

.presentation {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.presentation h2 {
  font-size: 36px;
  color: #c77dff;
}

.subtitle {
  margin: 10px 0 40px;
  color: #bbb;
}

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

/* Card */
.card {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border-radius: 20px;
  padding: 30px;
  text-align: left;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card h3 {
  margin-top: 20px;
  font-size: 20px;
}

.card p {
  color: #aaa;
  margin: 8px 0 25px;
}

/* Language badge */
.lang {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  width:45px;
}

.cn { background: #ff4d6d; }
.de { background: #ffa600; }
.dk { background: #4d7cff; }

/* Buttons */
.actions {
  display: flex;
  gap: 12px;
}

.btn {
  flex: 1;
  padding: 10px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.view {
  background: transparent;
  color: #c77dff;
  border: 1px solid #c77dff;
}

.download {
  background: linear-gradient(90deg, #9d4edd, #ff4ecd);
  color: #fff;
}

/* Tablet */
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (ONE CARD FULL WIDTH) */
@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .presentation h2 {
    font-size: 28px;
  }
}


.transaction-history {
  width: 100%;
  max-width: 900px;
  margin: auto;
  padding: 15px;
  color: #fff;
}

.transaction-history h2 {
  margin-bottom: 15px;
  font-size: 22px;
}

.tx-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #1c1c2b, #111);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 12px;
  transition: 0.3s;
}

.tx-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(170,0,255,0.3);
}

.tx-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tx-icon {
  width: 36px;
  height: 36px;
  background: #0f5132;
  color: #2ecc71;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.tx-title {
  font-size: 16px;
  font-weight: 600;
}

.tx-date {
  font-size: 13px;
  opacity: 0.7;
}

.tx-right {
  font-size: 18px;
  font-weight: 600;
}

.tx-right span {
  font-size: 13px;
  opacity: 0.7;
}

.positive {
  color: #2ecc71;
}

/* ðŸ“± Mobile Responsive */
@media (max-width: 600px) {
  .tx-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .tx-right {
    align-self: flex-end;
  }
}
/*==============================================*/
  /*body {*/
  /*    font-family: 'Poppins', sans-serif;*/
  /*    background-color: #121212;*/
  /*    color: #fff;*/
  /*    margin: 20px;*/
  /*  }*/

  /*  .history-grid {*/
  /*    display: flex;*/
  /*    flex-wrap: wrap;*/
  /*    gap: 20px;*/
  /*    justify-content: space-between;*/
  /*  }*/

  /*  .history-box {*/
  /*    background-color: rgba(0, 0, 0, 0.6);*/
  /*    border-radius: 10px;*/
  /*    width: 100%;*/
  /*    max-width: 600px;*/
  /*    padding: 20px;*/
  /*    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);*/
  /*    margin-bottom: 20px;*/
  /*  }*/

  /*  .history-header {*/
  /*    display: flex;*/
  /*    justify-content: space-between;*/
  /*    margin-bottom: 10px;*/
  /*  }*/

  /*  .history-header h2 {*/
  /*    font-size: 1.2rem;*/
  /*  }*/

  /*  .count-badge {*/
  /*    background-color: #6c63ff;*/
  /*    padding: 5px 10px;*/
  /*    border-radius: 12px;*/
  /*    font-size: 0.9rem;*/
  /*  }*/

  /*  .history-list {*/
  /*    margin-top: 20px;*/
  /*  }*/

  /*  .history-item {*/
  /*    background-color: #1e1e1e;*/
  /*    padding: 15px;*/
  /*    border-radius: 8px;*/
  /*    margin-bottom: 15px;*/
  /*  }*/

  /*  .progress-bar {*/
  /*    width: 100%;*/
  /*    height: 8px;*/
  /*    background-color: #333;*/
  /*    border-radius: 10px;*/
  /*    margin-top: 10px;*/
  /*  }*/

  /*  .progress {*/
  /*    height: 100%;*/
      width: 50%; /* Adjust the width dynamically */
  /*    background-color: #6c63ff;*/
  /*    border-radius: 10px;*/
  /*  }*/

  /*  .status {*/
  /*    margin-top: 10px;*/
  /*    font-size: 0.9rem;*/
  /*    color: #b3b3b3;*/
  /*  }*/

  /*  .status span {*/
  /*    font-weight: bold;*/
  /*  }*/

  /*  .transaction-hash {*/
  /*    margin-top: 10px;*/
  /*    font-size: 0.9rem;*/
  /*    color: #ccc;*/
  /*  }*/

  /*  @media (max-width: 768px) {*/
  /*    .history-box {*/
  /*      width: 100%;*/
  /*    }*/
  /*  }*/

  /*  @media (max-width: 480px) {*/
  /*    .history-header h2 {*/
  /*      font-size: 1rem;*/
  /*    }*/

  /*    .count-badge {*/
  /*      font-size: 0.8rem;*/
  /*    }*/

  /*    .history-item {*/
  /*      padding: 10px;*/
  /*    }*/

  /*    .status {*/
  /*      font-size: 0.8rem;*/
  /*    }*/

  /*    .transaction-hash {*/
  /*      font-size: 0.8rem;*/
  /*    }*/
  /*  }*/
  
  
  .reff-wrapper {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.reff-card {
  width: 100%;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  max-width: 1296px;
  background: linear-gradient(135deg, #1a0026, #05000a);
  padding: 70px;
  margin-top:10px;
  border: 1px solid #4e2773;
}

.reff-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.reff-title {
  font-size: 20px;
  font-weight: 600;
}

.reff-status {
  background: #0f5132;
  color: #2bffb5;
  padding: 5px 14px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 500;
}

.reff-subtitle {
  font-size: 14px;
  color: #cfcfcf;
  margin-bottom: 16px;
}

.reff-link-box {
  display: flex;
  gap: 10px;
  background: #0d0d16;
  padding: 10px;
  border-radius: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.reff-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  outline: none;
  min-width: 200px;
}

.reff-copy-btn {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  border: none;
  padding: 10px 18px;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  transition: transform 0.2s, opacity 0.2s;
}

.reff-copy-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.reff-footer {
  margin-top: 14px;
  background: rgba(0, 255, 150, 0.1);
  padding: 10px 14px;
  border-radius: 10px;
}

.reff-success {
  font-size: 13px;
  color: #7dffb3;
}

/* 📱 Mobile Responsive */
@media (max-width: 600px) {
  .reff-title {
    font-size: 18px;
  }

  .reff-link-box {
    flex-direction: column;
    align-items: stretch;
  }
.reff-success {
  font-size: 11px;
  color: #7dffb3;
}
  .reff-copy-btn {
    width: 100%;
    text-align: center;
  }
}

  
  /*====================================================================================*/
  .withdraw-btn {
  background: #c124bf;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 10px 18px;
  cursor: pointer;
}
  .withdraw-btn1 {
  background:green;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 10px 18px;
  cursor: pointer;
}

/* Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Modal Box */
.modal-box {
 background: linear-gradient(45deg, #000000ab, #000);
  color: #fff;
  width: 100%;
  max-width: 398px;
  border-radius: 18px;
  padding: 30px;
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.balance-box {
  background: linear-gradient(45deg, #6511b5, #b3095d);
  border-radius: 12px;
  padding: 12px;
  margin: 15px 0;
  text-align: center;
}

.balance-box h2 {
  margin: 5px 0 0;
}

.modal-box input {
  width: 60%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  margin-bottom: 12px;
}

.percent-btns {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
}
.percent-btns1 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 8px;
}

.percent-btns button {
  padding: 8px;
  border-radius: 8px;
  border: none;
  background: #2d2d2d;
  color: #fff;
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.modal-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
}

.cancel {
  background: #21c100;
}

.confirm {
  background: #c202c8;
  color: #fff;
}

/* Mobile optimization */
@media (max-width: 480px) {
  .modal-box {
    padding: 16px;
  }
}

  /*====================================================================================*/
  
 /* Input + Max button */
.withdraw-input {
  position: relative;
  margin-bottom: 6px;
}

.withdraw-input input {
  width: 100%;
  padding: 11px 70px 11px 12px;
  border-radius: 12px;
  border: none;
  outline: none;
  font-size: 14px;
  background: #1f1f1f;
  color: #fff;
}

.withdraw-input .max-btn {
 position: absolute;
  right: 1px;
  top: 39%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #6c5ce7, #8e7bff);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 17px;
  cursor: pointer;
}

/* Info text under input */
.withdraw-info {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #b5b5b5;
  margin-bottom: 14px;
}

.withdraw-info strong {
  color: #fff;
  font-weight: 500;
}

/* Mobile fix */
@media (max-width: 480px) {
  .withdraw-info {
    flex-direction: column;
    gap: 4px;
  }
}

.dep-title {
  font-size: 1.6rem;
  font-weight: 700;
}
.dep-total{
  color: #9C4E97;
  /*height: 15%;*/
  /*width: 7%;*/
  border-radius: 22px;
  background: #522b53;
  color: #d3b6dd;
  padding: 6px 23px;
  font-weight: 700;
}
.dep-header{
    display:flex;
    align-items:center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.icon-wraps{
    padding: 9px 10px;
  font-size: 21px;
  background: #10b98142;
  border-radius: 6px;
}
.dep-actives{
  font-size: 14px;
  height: 15%;
  /*width: 7%;*/
  border-radius: 22px;
  background: #c47b3b26;
 color: #c47b3b;
  padding: 6px 25px;
  font-weight: 700;
}
.dep-active {
  height: 15%;
  /*width: 7%;*/
  border-radius: 22px;
  background: #c47b3b26;
  color: #c47b3b;
  padding: 6px 25px;
  font-weight: 700;
}
.depo-heading{
  display: flex;
  gap: 15px;
  /*margin-bottom: 20px;*/
  align-items: center;
  justify-content:space-between;
}
.depo-headings{
  display: flex;
  gap: 15px;
  /*margin-bottom: 20px;*/
  align-items: center;
  /*justify-content:space-between;*/
}
.depo-earn{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.depo-earns {
  display: flex;
  /*align-items: center;*/
  justify-content: space-between;
  margin-top: -6px;
}
.wthF-p{
    color: #b9b9b9 !important;
    margin-bottom: 1px;
}
.progress-fill.pink{
    background: linear-gradient(180deg,#a855f7,#ec4899);
    border-radius: 9px;
}
.pink{
    color:#ec4899 !important;
    border-bottom: 4px solid #ec4899;
}
.progress-heads {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 6px;
  margin-top: 6px;
}
hr{
    margin-top: -10px !important;
}

@media (max-width: 480px) {
  .dep-title {
    font-size: 1.0rem;
  }
.dep-active{
    margin-top: -20px;
}
.depo-heading{
    flex-direction: column;
    margin-bottom: 20px;
}
.depo-headings{
    flex-direction: column;
    margin-bottom: 20px;
}
.wthF{
    margin-bottom: 13px;
  margin-left: 23px;
}
.wthF p{
    margin-bottom: 6px;
}
.wthF-p{
    color: #b9b9b9 !important;
}
.wthF-pf{
    color: #522b53 !important;
}
.depo-earn{
    flex-direction: column;
}
.depo-earns{
    flex-direction: column;
}
}






.actInv-card {
background: linear-gradient(90deg, #131015, #1b0f1f);
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  box-shadow: 0 0 25px rgba(49, 49, 49, 0.6);
}

.actInv-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 5px solid #b14cff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.actInv-day {
  font-size: 20px;
  font-weight: 700;
}

.actInv-circle small {
  font-size: 12px;
  opacity: 0.8;
}

.actInv-badge {
  background: #2ecc71;
  color: #000;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.actInv-date {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 12px;
}

.actInv-progress-text {
  font-size: 13px;
  margin-bottom: 6px;
}

.actInv-progress {
  height: 6px;
  background: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
}

.actInv-progress-bar {
  background: linear-gradient(90deg, #9b5cff, #c77dff);
}

.actInv-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 6px;
  opacity: 0.9;
}

.actInv-profit {
  color: #2ecc71;
  font-size: 22px;
  font-weight: 700;
}

.actInv-profit-label {
  font-size: 12px;
  opacity: 0.7;
}

.actInv-percent {
  font-size: 13px;
  margin-top: 4px;
  opacity: 0.8;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .actInv-meta {
    flex-direction: column;
    gap: 4px;
  }

  .actInv-profit {
    font-size: 18px;
  }

  .actInv-circle {
    width: 60px;
    height: 60px;
  }
}



.actInv-circle-progress {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background:
    conic-gradient(
      #a855f7 calc(var(--percent) * 1%),
      #2a2a2a 0
    );
  display: flex;
  align-items: center;
  justify-content: center;
}

.actInv-circle-inner {
  width: calc(100% - var(--thickness) * 2);
  height: calc(100% - var(--thickness) * 2);
  background: #0d0d0f;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.actInv-day {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.actInv-circle-inner small {
  font-size: 11px;
  opacity: 0.7;
}
.remain{
    text-align: end;
}
.act-section{
 display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.leader-card {
  max-height: 325px;    
  overflow-y: auto;
}
@media (max-width: 576px) {
  .actInv-circle-progress {
    --size: 60px;
  }
}

.in-line{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.in-act{
    display:flex;
    align-items:flex-start;
    /*justify-content:flex-start;*/
    flex-direction:column;
}
.taby-bg{
    width: 50%;
  padding: 7px;
  background: linear-gradient(90deg, #2d2d2d2e, #171717a3);
  margin-left: 10px;
}

@media (max-width: 576px) {

  .actInv-card {
    padding: 14px;
    height:344px;
  }

  .row.align-items-center {
    flex-direction: column;
    align-items: stretch !important;
  }

.act-section {
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 15px;
  margin-bottom: 25px;
}

  .col-auto {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  .in-line {
    /*flex-direction: column;*/
    align-items: flex-start;
    gap: 8px;
  }

  .text-end {
    text-align: left !important;
  }

  .actInv-profit {
    font-size: 18px;
  }

  .progress-item {
    margin-top: 10px;
  }

  .progress-head {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
  }

  /* Meta section full width */
  .actInv-meta {
    flex-direction: column;
    gap: 6px;
  }

  .taby-bg {
    width: 100%;
    margin-left: 0;
  }

  /* Circle progress size */
  .actInv-circle-progress {
    --size: 60px;
    --thickness: 5px;
  }

  .actInv-day {
    font-size: 16px;
  }
  .remain{
    text-align: start;
}
.leader-card {
  max-height: 70vh;
  overflow-y: auto;
}



}

