/* 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 */
.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);
}

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

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

/* Mobile */
@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;
}

/* Logo */
.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;
}

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

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

/* Links */
.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 Buttons */
.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;
}

/* Bottom */
.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;
  }
}



/*header start*/
/* Header */
.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;
}

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

/* Logo */
.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(90deg, #8ff22b, #b9a123);
  /*background: linear-gradient(45deg, #a855f7, #ec4899);*/
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Desktop Menu */
.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: #38ff00;
}

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

/* Button */
.tetherheader-btn {
  background: linear-gradient(90deg, #8ff22b, #b9a123);
  /*background: linear-gradient(45deg, #a855f7, #ec4899);*/
  color: #fff;
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(172, 249, 36, 0.6);
}
.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(21, 198, 32, 0.7);
}

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

/* Mobile Menu */
.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;
}

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

  .tetherheader-toggle {
    display: block;
  }
}

/*header end*/
/* ===== HERO SECTION ===== */
.tdf-hero {
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(circle at left, #0f571a, #04280be3 60%);
  /*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;
}

/* Badge */
.tdf-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(243, 251, 5, 0.15);
  border: 1px solid rgba(108, 244, 46, 0.5);
  color: #93ff7cc2;
  font-size: 14px;
  margin-bottom: 30px;
}

/* Heading */
.tdf-hero-title {
    background: linear-gradient(90deg, #8ff22b, #b9a123);
    /*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, #8ff22b, #b9a123);*/
  /*-webkit-background-clip: text;*/
  /*-webkit-text-fill-color: transparent;*/
}

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

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

.tdf-btn-primary {
  padding: 14px 30px;
  background: linear-gradient(90deg, #8ff22b, #b9a123);
  /*background: linear-gradient(90deg, #ff2fb3, #8b5cff);*/
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 0 25px rgba(172, 249, 36, 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);
}


/*user card start*/
.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,247,0.35);
}

/* gradients */
.stat-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(168,85,247,0.25),
    rgba(168,85,247,0.1),
    transparent);
}

.stat-glow-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
  border-radius: 50%;
  filter: blur(35px);
}

.stat-corner-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg,#a855f7,#ec4899);
  opacity: 0.15;
  border-bottom-right-radius: 100%;
}

/* icon */
.stat-icon {
  position: absolute;
  right: -8px;
  bottom: -8px;
  opacity: 0.3;
}

.stat-icon svg {
  width: 120px;
  height: 120px;
  color: #c084fc;
}

/* text */
.stat-label {
  font-size: 13px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

/* bottom bar */
.stat-bottom-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(to right,#a855f7,#ec4899);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.stat-card:hover .stat-bottom-bar {
  opacity: 1;
}

/* ðŸ“± Mobile Responsive */
@media (max-width: 576px) {
  .stat-card {
    padding: 18px;
  }

  .stat-value {
    font-size: 22px;
  }

  .stat-icon svg {
    width: 90px;
    height: 90px;
  }
}

/*user card end*/



/*-----------------------------------*/
/* Section */
.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-row1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 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-rowranks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr ;
  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);
}
.roi-div-head1 {
  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);
}
.roi-div-tag1 {
  margin-left: 10px;
  padding: 4px 10px;
  font-size: 17px;
  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-row1 {
    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-rowranks {
    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;
  }
}



/*-------------------- big start---------------------*/
.hiw-section {
  background: #0b0617 !important;
  color: #fff;
}

/* heading */
.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;
}

/* card */
.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;
}

/* step number */
.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;
}

/* icon */
.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;
}

/* text */
.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;
}

/* CTA */
.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;
  }
}

/*-------------------- big end--------------------*/

.latest-section {
  background: radial-gradient(circle at left, #210635, #000);
  color: #fff;
}

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

.latest-subtitle {
  max-width: 700px;
  margin: auto;
  color: #9ca3af;
  font-size: 18px;
}

/* header */
.latest-head {
  display: grid;
  grid-template-columns: 2fr 1fr 3fr 1fr;
  padding: 16px 20px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  font-weight: 600;
  color: #9ca3af;
}

/* row */
.latest-row {
  display: grid;
  grid-template-columns: 2fr 1fr 3fr 1fr;
  gap: 16px;
  padding: 16px 20px;
  margin-bottom: 12px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 16px;
  transition: 0.3s;
}

.latest-row:hover {
  border-color: rgba(168,85,247,0.6);
}

/* user */
.latest-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.latest-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg,#a855f7,#ec4899);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.latest-user a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* amount */
.latest-amount {
  color: #22c55e;
  font-weight: 600;
}

/* transaction */
.latest-tx a {
  color: #c084fc;
  font-family: monospace;
  font-size: 14px;
  text-decoration: none;
}

.latest-tx a:hover {
  text-decoration: underline;
}

/* time */
.latest-time {
  color: #9ca3af;
}

/* ðŸ“± MOBILE */
@media (max-width: 768px) {

  .latest-head {
    display: none;
  }

  .latest-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .latest-row > div::before {
    content: attr(data-label);
    font-size: 13px;
    color: #9ca3af;
  }

  .latest-user {
    justify-content: flex-start;
  }

  .latest-title {
    font-size: 34px;
  }
}



.trusted-section {
  position: relative;
  padding: 80px 0;
  background: radial-gradient(circle at center, #0f002b, #000);
  overflow: hidden;
}

/* glass glow background */
.trusted-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(168,85,247,0.15),
    rgba(236,72,153,0.15),
    rgba(168,85,247,0.15)
  );
  opacity: 0.25;
}

/* content */
.trusted-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

/* heading */
.trusted-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(to right, #a855f7, #ec4899);
  -webkit-background-clip: text;
  color: transparent;
}

.trusted-title span {
  color: #fff;
  background: none;
}

/* subtitle */
.trusted-subtitle {
  font-size: 20px;
  color: #9ca3af;
  line-height: 1.6;
}

/* ðŸ“± Mobile Responsive */
@media (max-width: 768px) {

  .trusted-section {
    padding: 60px 0;
  }

  .trusted-title {
    font-size: 34px;
  }

  .trusted-subtitle {
    font-size: 16px;
  }
}





/*About start*/
.about-section {
  padding: 80px 0;
  background: #0b0f1a;
  color: #ffffff;
}

/* Header */
.about-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-subtitle {
  font-size: 1.5rem;
  color: #9ca3af;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Gradient Text */
.text-gradient {
  /*background: linear-gradient(90deg, #22d3ee, #6366f1, #a855f7);*/
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight:bolder;
}

/* Glass Card */
.about-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-card p {
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Highlight Text */
.highlight {
  font-weight: 700;
  font-size: 1.2rem;
  background: linear-gradient(90deg, #34d399, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-title {
    font-size: 2.2rem;
  }

  .about-subtitle {
    font-size: 1.1rem;
  }

  .about-card {
    padding: 25px;
  }

  .about-card p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 0;
  }

  .about-title {
    font-size: 1.9rem;
  }
}

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

/* Box */
.why-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 25px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  transition: 0.3s ease;
  color: #fff;
}

.why-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.5);
  border-color: #a855f7;
}

/* Head */
.box-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.icon-box {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  
}

/* List */
.why-box ul {
  list-style: none;
  padding: 0;
}

.why-box li {
  font-size: 0.95rem;
  color: #d1d5db;
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.why-box li::before {
  content: "-> ";
  position: absolute;
  left: 0;
  color: #a855f7;
  font-size:15px;
}

/* ======================
   Main Section
====================== */
.cmp-dashboard {
  background: radial-gradient(circle at top left, #2b0f3a, #050006);
  padding: 50px 20px;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* ======================
   Row 1 : Header
====================== */
.cmp-header-row {
  margin-bottom: 30px;
  display:flex;
  justify-content:space-between;
  align-item:center
}

.cmp-title {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #b76cff, #ff5ea8);
  -webkit-background-clip: text;
  color: transparent;
}

.cmp-subtitle {
  color: #a8a8a8;
  margin-top: 8px;
}

/* ======================
   Row 2 : Tabs
====================== */
.cmp-tab-row {
  display: flex;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  padding: 10px;
  border-radius: 14px;
  margin-bottom: 35px;
}

.cmp-tab {
  background: transparent;
  border: none;
  color: #bdbdbd;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.cmp-tab.active {
  background: linear-gradient(90deg, #a855f7, #ec4899);
  color: #fff;
}

.cmp-tab:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(200, 0, 255, 0.9);
}

/* ======================
   Row 3 : Cards
====================== */
.cmp-card-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cmp-card-row1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.cmp-card {
  background: linear-gradient(145deg, #1a0524, #0c020f);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 7px;
  text-align: center;
}

.cmp-card-label {
  color: #9ca3af;
  font-size: 14px;
}

.cmp-card-value {
  margin-top: 10px;
  font-size: 28px;
  font-weight: bold;
}

/* ======================
   Mobile Responsive
====================== */
@media (max-width: 768px) {
  .cmp-title {
    font-size: 30px;
  }

  .cmp-tab-row {
    flex-wrap: wrap;
  }

  .cmp-card-row {
    grid-template-columns:1fr;
  }
}

.tetherheader-mobile {
  display: none;
}

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

/* ==============================
   Large Screens (Desktop)
============================== */
@media (min-width: 1200px) {
  .cmp-dashboard {
    padding: 70px 80px;
  }

  .cmp-title {
    font-size: 46px;
  }

  .cmp-card-value {
    font-size: 32px;
  }
}

/* ==============================
   Medium Screens (Tablet)
============================== */
@media (max-width: 1199px) and (min-width: 768px) {
  .cmp-dashboard {
    padding: 50px 40px;
  }

  .cmp-title {
    font-size: 36px;
  }

  .cmp-tab {
    padding: 10px 14px;
    font-size: 14px;
  }

  .cmp-card-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .cmp-card-value {
    font-size: 26px;
  }
}

/* ==============================
   Small Screens (Mobile)
============================== */
@media (max-width: 767px) {
  .cmp-dashboard {
    padding: 40px 16px;
  }

  .cmp-header-row {
    text-align: center;
  }

  .cmp-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .cmp-subtitle {
    font-size: 14px;
  }

  /* Tabs scrollable */
  .cmp-tab-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 8px;
  }

  .cmp-tab {
    flex: 0 0 auto;
    font-size: 13px;
    padding: 8px 14px;
    white-space: nowrap;
  }

  /* Cards stacked */
  .cmp-card-row {
    grid-template-columns: 2fr,1fr;
  }

  .cmp-card {
    padding: 20px;
  }

  .cmp-card-value {
    font-size: 24px;
  }
}

/* ==============================
   Extra Small Screens
============================== */
@media (max-width: 360px) {
  .cmp-title {
    font-size: 24px;
  }

  .cmp-card-value {
    font-size: 22px;
  }
}
.cmp-tab {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cmp-tab i {
  font-size: 15px;
  color: inherit;
}

/*--------------------*/
.cmp-dashboard1 {
  background: radial-gradient(circle at top left, #2b0f3a, #050006);
  padding: 50px 20px;
  color: #fff;
  font-family: Arial, sans-serif;
}

/**/

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

.cpd-wrap{
  background:radial-gradient(circle at top left, #2b0f3a, #050006);
  /*background: radial-gradient(circle at top left,#3b0f5f,#050006);*/
  /*border-radius:20px;*/
  padding:22px;
  color:#fff;
  font-family:system-ui;
}

/* Header */
.cpd-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.cpd-top-left{
  display:flex;
  gap:14px;
  align-items:center;
}
.cpd-top-icon{
  width:46px;
  height:46px;
  border-radius:12px;
  background:linear-gradient(135deg,#a855f7,#ec4899);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 0 18px rgba(236,72,153,.7);
}
.cpd-status{
  background:rgba(255,0,0,.18);
  color:#ff6b6b;
  padding:6px 16px;
  border-radius:20px;
  font-size:13px;
}

/* Body */
.cpd-body{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:22px;
  margin-top:22px;
}

/* Left Card */
.cpd-left{
  background:linear-gradient(145deg,#2c0b40,#120015);
  border-radius:18px;
  padding:26px;
  text-align:center;
  position:relative;
  border: 2px solid #5e295e;
}
.cpd-refresh{
  position:absolute;
  right:16px;
  top:16px;
  background:#a855f7;
  padding:8px;
  border-radius:50%;
}
.cpd-small{
  color:#bdbdbd;
  letter-spacing:1px;
  font-size:13px;
}
.cpd-glow-circle{
  width:96px;
  height:96px;
  margin:22px auto;
  border-radius:50%;
  background:radial-gradient(circle,#d946ef,#7e22ce);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  box-shadow:0 0 35px rgba(216,70,239,.8);
}
.cpd-left h2{
  font-size:38px;
  color:#e879f9;
}
.cpd-left span{font-size:18px;}

/* Right Info */
.cpd-info{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 22px;
  border-radius:16px;
  margin-bottom:16px;
}
.cpd-info.green{border:1px solid #22c55e;}
.cpd-info.purple{border:1px solid #a855f7;}
.cpd-info span{color:#bdbdbd;font-size:14px;}
.cpd-info h4{font-size:26px;margin-top:4px;}
.cpd-info em{
  font-style:normal;
  color:#22c55e;
  font-size:14px;
}

/* Buttons */
.cpd-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.cpd-btn{
  padding:14px;
  border-radius:14px;
  border:none;
  color:#fff;
  font-weight:600;
  cursor:pointer;
}
.deposit{background:#16a34a;}
.withdraw{background:linear-gradient(90deg,#7c3aed,#0ea5e9);}
.referral{background:#7e22ce;}
.history{background:#2563eb;}

/* Mobile */
@media(max-width:768px){
  .cpd-body{grid-template-columns:1fr;}
  .cpd-actions{grid-template-columns:1fr;}
}


/*.cp-return-sec{*/
/*  background:radial-gradient(circle at top left, #2b0f3a, #050006);*/
  /*border-radius:20px;*/
/*  padding:8%;*/
/*  color:#fff;*/
/*  font-family:system-ui;*/
  /*margin-top:30px;*/
/*}*/

/* Header */
/*.cp-return-head{*/
/*  padding-bottom:16px;*/
/*  border-bottom:1px solid rgba(255,255,255,.15);*/
/*  margin-bottom:16px;*/
/*}*/
/*.cp-return-head h2{*/
/*  text-align:center;*/
/*  font-size:20px;*/
/*  font-weight:600;*/
/*}*/

/* Table */
/*.cp-return-table{*/
/*  display:flex;*/
/*  flex-direction:column;*/
/*}*/

/*.cp-return-row{*/
/*  display:grid;*/
/*  grid-template-columns:1fr auto;*/
/*  align-items:center;*/
/*  padding:14px 8px;*/
/*  border-bottom:1px solid rgba(255,255,255,.08);*/
/*  font-size:15px;*/
/*}*/

/*.cp-return-header{*/
/*  color:#c084fc;*/
/*  font-weight:600;*/
/*}*/

/*.cp-return-row .rate{*/
/*  color:#d946ef;*/
/*  font-weight:600;*/
/*}*/

/*.cp-return-row.hot .rate{*/
/*  color:#f472b6;*/
/*}*/

/* Note */
/*.cp-return-note{*/
/*  margin-top:18px;*/
/*  padding:12px 14px;*/
/*  border-radius:12px;*/
/*  background:rgba(168,85,247,.15);*/
/*  font-size:13px;*/
/*  color:#e9d5ff;*/
/*  text-align:center;*/
/*}*/

/* =====================
   Responsive
===================== */

/* Tablet */
/*@media(max-width:768px){*/
/*  .cp-return-head h2{*/
/*    font-size:18px;*/
/*  }*/
/*  .cp-return-row{*/
/*    font-size:14px;*/
/*  }*/
/*}*/

/* Mobile */
/*@media(max-width:520px){*/
/*  .cp-return-row{*/
/*    grid-template-columns:1fr;*/
/*    gap:6px;*/
/*  }*/
/*  .cp-return-row .rate{*/
/*    font-size:16px;*/
/*  }*/
/*  .cp-return-header{*/
/*    display:none;*/
/*  }*/
/*}*/








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


/* ===============================
   MAIN OUTER BOX (MOST IMPORTANT)
================================ */
.cp-return-sec{
  /*max-width: 1180px;*/
  /*margin: 40px auto;*/
  padding: 28px 30px;

  /*background: linear-gradient( 135deg, rgba(125, 50, 170, 0.35), rgba(15, 5, 30, 0.95));*/
  background: radial-gradient(circle at top left, #2b0f3a, #050006);

  /*border-radius: 24px;*/
  border: 1px solid rgba(255,255,255,0.14);

  box-shadow:
    inset 0 0 0 1px rgba(168,85,247,0.18),
    0 30px 70px rgba(0,0,0,0.7);

  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont;
}

/* ===============================
   TITLE
================================ */
.cp-return-head{
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.cp-return-head h2{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .3px;
}

/* ===============================
   TABLE CONTAINER (INNER BOX)
================================ */
.cp-return-table{
  background: linear-gradient(
    90deg,
    rgba(168,85,247,0.10),
    rgba(0,0,0,0.35)
  );

  border-radius: 18px;
  padding: 6px 14px;
}

/* ===============================
   ROWS
================================ */
.cp-return-row{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;

  padding: 16px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.10);

  font-size: 15px;
}

.cp-return-row:last-child{
  border-bottom: none;
}

/* Header Row */
.cp-return-header{
  color: #c084fc;
  font-weight: 600;
}

/* Left Text */
.cp-return-row span:first-child{
  color: #e5e7eb;
}

/* Right Rate */
.cp-return-row .rate{
  font-weight: 600;
  color: #d946ef;
}

/* Highlight Rows */
.cp-return-row.hot{
  background: linear-gradient(
    90deg,
    rgba(168,85,247,0.12),
    transparent
  );
  border-radius: 10px;
}

.cp-return-row.hot .rate{
  color: #f472b6;
}

/* ===============================
   BOTTOM NOTE
================================ */
.cp-return-note{
  margin-top: 22px;
  padding: 14px 18px;

  background: linear-gradient(
    90deg,
    rgba(168,85,247,0.25),
    rgba(0,0,0,0.25)
  );

  border-radius: 14px;
  border: 1px solid rgba(168,85,247,0.35);

  font-size: 13px;
  color: #f3e8ff;
  text-align: center;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px){
  .cp-return-sec{
    margin: 22px 14px;
    padding: 22px 18px;
  }

  .cp-return-row{
    font-size: 14px;
  }
}

@media (max-width: 520px){
  .cp-return-header{
    display: none;
  }

  .cp-return-row{
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cp-return-row .rate{
    font-size: 16px;
  }
}




/*-----------------------over view start-------------------------*/

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

/*body {*/
/*  background: #0b0f1a;*/
/*  font-family: Arial, sans-serif;*/
/*  color: #fff;*/
/*}*/
.overviewbody{
    background: radial-gradient(circle at top left, #2b0f3a, #050006);
}
/* GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  /*background: radial-gradient(circle at top left, #2b0f3a, #050006);*/
}

/* CARD */
.stat-card {
  position: relative;
  padding: 25px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(140, 0, 255, 0.4);
}

/* TITLES */
.stat-card h4 {
  font-size: 13px;
  letter-spacing: 1px;
  color: #cfcfcf;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.stat-card h2 {
  font-size: 28px;
  font-weight: bold;
  color: white;
}

/* ICON */
.card-icon {
  position: absolute;
  right: 15px;
  bottom: 10px;
  font-size: 70px;
  opacity: 0.15;
}

/* BUTTON */
.action-btn {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(45deg, #8b5cf6, #3b82f6);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

/* COLORS */
.blue { border-bottom: 4px solid #3b82f6; }
.purple { border-bottom: 4px solid #a855f7; }
.pink { border-bottom: 4px solid #ec4899; }
.yellow { border-bottom: 4px solid #facc15; }
.green { border-bottom: 4px solid #22c55e; }
.indigo { border-bottom: 4px solid #6366f1; }

/* RESPONSIVE */

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

/* Mobile */
@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card h2 {
    font-size: 24px;
  }

  .card-icon {
    font-size: 55px;
  }
}


/* GRID */
.invest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  padding: 20px;
}

/* GLASS BOX */
.glass-box {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(180,120,255,0.25);
  border-radius: 18px;
  padding: 25px;
  color: #fff;
}

/* TITLES */
.section-title {
  font-size: 24px;
  margin-bottom: 6px;
}
.section-sub {
  font-size: 13px;
  color: #bdbdbd;
  margin-bottom: 20px;
}

/* LEVELS */
.levels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.level-card {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 14px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(180,120,255,0.25);
  transition: 0.3s;
}

.level-card:hover {
  border-color: #a855f7;
}

.level-card.active {
  background: linear-gradient(135deg, rgba(168,85,247,0.4), rgba(236,72,153,0.35));
  border: 2px solid #a855f7;
  position: relative;
}

.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(45deg,#a855f7,#ec4899);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: bold;
}

.level-left {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg,#a855f7,#ec4899);
  font-weight: bold;
}

.level-right h4 {
  margin-bottom: 5px;
  color:white;
}
.level-right p {
  font-size: 12px;
  color: #cfcfcf;
}

/* COLORS */
.green { color: #22c55e; }
.blue { color: #3b82f6; }
.gradient {
  background: linear-gradient(45deg,#a855f7,#ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* INFO */
.info-box {
  margin-top: 15px;
  padding: 10px;
  font-size: 13px;
  background: rgba(168,85,247,0.15);
  border: 1px solid rgba(168,85,247,0.4);
  border-radius: 12px;
  text-align: center;
}

/* FORM */
.label {
  display: block;
  margin: 18px 0 6px;
  color: #bdbdbd;
  font-size: 13px;
}

.input {
  width: 100%;
  padding: 14px;
  font-size: 18px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(168,85,247,0.4);
  border-radius: 14px;
  color: #fff;
}

/* QUICK */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}

.quick-grid button {
  padding: 10px;
  border-radius: 10px;
  background: rgba(168,85,247,0.15);
  border: 1px solid rgba(168,85,247,0.4);
  color: #fff;
  cursor: pointer;
}

/* HINT */
.hint {
  text-align: center;
  margin: 30px 0;
  color: #aaa;
  font-size: 13px;
}

/* BUTTON */
.main-btn {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(45deg,#a855f7,#ec4899);
  cursor: pointer;
}

/* NOTE */
.note {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  color: #aaa;
}

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


/* GRID */
.withdraw-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  padding: 20px;
}

/* GLASS */
.glass-box {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 20px;
  padding: 25px;
  color: #fff;
}

/* HEADER */
.withdraw-header {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.icon-wrap {
  padding: 14px;
  font-size: 22px;
  background: linear-gradient(45deg,#16a34a,#10b981);
  border-radius: 14px;
}

.withdraw-header h3 {
  font-size: 22px;
}
.withdraw-header p {
  font-size: 13px;
  color: #bdbdbd;
}

/* AMOUNT */
.withdraw-amount {
  margin-bottom: 25px;
}
.withdraw-amount span {
  font-size: 13px;
  color: #bdbdbd;
}
.withdraw-amount h2 {
  font-size: 40px;
  background: linear-gradient(45deg,#22c55e,#10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* STATS */
.withdraw-stats {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.stat {
  position: relative;
  padding: 18px;
  border-radius: 16px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}

.stat.green {
  border-color: rgba(34,197,94,0.4);
}
.stat.purple {
  border-color: rgba(168,85,247,0.4);
}

.stat-bg {
  position: absolute;
  right: 10px;
  bottom: 5px;
  font-size: 50px;
  opacity: 0.12;
}

.stat small {
  font-size: 11px;
  text-transform: uppercase;
  color: #aaa;
}
.stat h4 {
  font-size: 22px;
  margin: 6px 0;
}
.stat span {
  font-size: 12px;
  color: #22c55e;
}

/* ACTIONS */
.withdraw-actions {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

.withdraw-actions button {
  flex: 1;
  padding: 14px;
  border-radius: 14px;
  border: none;
  font-size: 15px;
  font-weight: bold;
  background: #4b5563;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .withdraw-amount h2 {
    font-size: 32px;
  }

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

/* GRID */
.history-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding: 20px;
}

/* GLASS BOX */
.glass-box {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 20px;
  padding: 25px;
  color: #fff;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.history-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.history-header h2 {
  font-size: 22px;
}

.count-badge {
  padding: 4px 12px;
  background: rgba(168,85,247,0.2);
  color: #d8b4fe;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
}

/* LIST */
.history-list {
  max-height: 600px;
  overflow-y: auto;
  padding-right: 8px;
}

/* EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 0px 10px;
  color: #aaa;
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 15px;
  opacity: 0.5;
}

.empty-state p {
  font-size: 15px;
  color: #cfcfcf;
}
.empty-state small {
  font-size: 13px;
  color: #888;
}

/* CUSTOM SCROLLBAR */
.custom-scroll::-webkit-scrollbar {
  width: 6px;
}

.custom-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg,#a855f7,#ec4899);
  border-radius: 10px;
}

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

  .history-list {
    max-height: 400px;
  }
}



.pf-bg {
  background: #0b0614;
  min-height: 100vh;
}

/* Gradient Button */
.pf-btn-gradient {
  background: linear-gradient(90deg, #7c3aed, #ec4899);
  color: #ffffff;
  border: none;
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.6);
}
.pf-btn-outline.active {
  background: linear-gradient(90deg, #7c3aed, #ec4899) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.6) !important;
}

.pf-btn-gradient.active,
.pf-btn-outline.active {
  background: linear-gradient(90deg, #7c3aed, #ec4899);
  color: #ffffff;
  border: none;
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.6);
}


.pf-btn-gradient:hover {
  background: linear-gradient(90deg, #6d28d9, #db2777);
  color: #ffffff;
}

.pf-btn-outline {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #c084fc;
}

.pf-btn-outline:hover {
  background: rgba(168, 85, 247, 0.2);
  color: #e9d5ff;
}

.pf-glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(168, 85, 247, 0.25);
}

.pf-info-box {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.35);
}

.pf-text-muted {
  color: #9ca3af;
}



/* Gradient text for heading */
.text-gradient {
  background: linear-gradient(90deg, #bd1eea, #e004ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Security Card */
.sec-card {
  background: linear-gradient(180deg, #0f172a, #020617);
  border-radius: 18px;
  padding: 28px;
  color: #e5e7eb;
  position: relative;
  transition: all 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

/* Glow on hover */
.sec-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(56, 189, 248, 0.18),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.sec-card:hover::before {
  opacity: 1;
}

.sec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  border: 3px solid purple;
}

/* Card Header */
.sec-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.sec-head h5 {
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
  color: #ffffff;
}

/* Icon */
.sec-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(90deg, #bd1eea, #e004ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.4);
}

/* List */
.sec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.sec-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #cbd5f5;
  font-size: 15px;
}

.sec-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #38bdf8;
  font-size: 13px;
}

/* Links */
.sec-link {
  display: inline-block;
  margin-top: auto;
  font-weight: 600;
  color: #38bdf8;
  text-decoration: none;
  transition: all 0.25s ease;
}

.sec-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .sec-card {
    padding: 22px;
  }

  .sec-head h5 {
    font-size: 16px;
  }
}


@media (max-width: 767px) {
  .sec-head {
    gap: 12px;
  }

  .sec-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .sec-list li {
    font-size: 14px;
  }
}

/* Card Base */
.earn-card {
  background: linear-gradient(180deg, #0f172a, #020617);
  border-radius: 18px;
  padding: 26px;
  color: #e5e7eb;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.earn-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6);
}

/* Header */
.earn-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.earn-head h5 {
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.earn-percent {
  font-size: 14px;
  font-weight: 600;
  margin-left: 6px;
  opacity: 0.85;
}

/* Icons */
.earn-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Icon Colors */
.bg-green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}
.bg-purple {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}
.bg-orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}
.bg-blue {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
}

/* List */
.earn-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.earn-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #cbd5f5;
  font-size: 15px;
}

.earn-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #38bdf8;
  font-size: 13px;
}

/* Button */
.earn-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: all 0.25s ease;
}

.earn-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Mobile: 1 card per row */
@media (max-width: 767px) {
  .earn-card {
    padding: 22px;
  }

  .earn-head h5 {
    font-size: 16px;
  }

  .earn-list li {
    font-size: 14px;
  }
}




/* Accordion wrapper */
.faq-accordion {
  border-radius: 18px;
}

/* Item */
.faq-item {
  background: linear-gradient(180deg, #0f172a, #020617);
  border-radius: 16px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

/* Button */
.faq-btn {
  background: transparent !important;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 16px;
  padding: 18px 22px;
  box-shadow: none !important;
}

.faq-btn::after {
  filter: invert(1);
}

/* Active state */
.faq-btn:not(.collapsed) {
  background: rgba(56, 189, 248, 0.08) !important;
  color: #38bdf8 !important;
}

/* Body */
.faq-body {
  background: rgba(2, 6, 23, 0.85);
  color: #cbd5f5;
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Remove default bootstrap border */
.accordion-item {
  border: none;
}

/* Hover effect */
.faq-item:hover {
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5);
}

/* Mobile Optimization */
@media (max-width: 767px) {
  .faq-btn {
    font-size: 15px;
    padding: 16px 18px;
  }

  .faq-body {
    font-size: 14px;
    padding: 16px 18px;
  }
}


.tx-history {
  padding: 20px;
  color: #fff;
}

.tx-heading {
  font-size: 22px;
  margin-bottom: 15px;
}

.tx-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #1b1026, #0e0716);
  border: 1px solid rgba(200, 100, 255, 0.2);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 12px;
}

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

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

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

.tx-time {
  font-size: 12px;
  opacity: 0.7;
}

.tx-amount {
  text-align: right;
  font-size: 18px;
  color: #2ecc71;
  font-weight: 600;
}

.tx-amount small {
  font-size: 12px;
  opacity: 0.7;
}

/* 📱 Mobile */
@media (max-width: 600px) {
  .tx-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .tx-amount {
    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;
      }
    }

.card {
    background: linear-gradient(135deg, #1b0e2a, #360f34);
    border-radius: 12px;
    color: white;
    /*width: 400px;*/
    padding: 20px;
    box-sizing: border-box;
  }

  .header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }

  .circle {
    background-color: #b234d7;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    margin-right: 10px;
  }

  .header-text small {
    color: #b3b3b3;
    font-weight: 600;
    font-size: 12px;
  }

  .header-text .level {
    font-weight: 700;
    font-size: 18px;
    margin-top: 2px;
  }

  .metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    gap:5px;
  }

  .metric {
    text-align: center;
        padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: #b3b3b3;
    /*background-color: #2a1430;*/
    background: linear-gradient(145deg, #1a0524, #0c020f);

    width:45%;
  }

  .metric small {
    font-size: 13px;
    color: #b3b3b3;
    font-weight: 600;
    margin-bottom: 3px;
    display: block;
  }

  .capital {
    color: #30d47a;
    font-weight: 700;
    font-size: 14px;
  }

  .roi {
    color: #4191f7;
    font-weight: 700;
    font-size: 14px;
  }

  .total-daily {
    color: #e4447b;
    font-weight: 700;
    font-size: 14px;
  }

  hr {
    border-color: #4a2d4b;
    margin: 10px 0;
  }

  .daily-earnings {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    color: #30d47a;
    font-weight: 700;
    font-size: 16px;
  }

  .arrow {
    width: 12px;
    height: 12px;
    background-color: #30d47a;
    margin-right: 6px;
    transform: rotate(45deg);
    border-radius: 2px;
  }

  .bottom-boxes {
    display: flex;
    justify-content: space-between;
        padding-bottom: 20px;
  }

  .box {
    width: 48%;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: #b3b3b3;
    /*background-color: #2a1430;*/
    background: linear-gradient(145deg, #1a0524, #0c020f);

  }

  .box strong {
    display: block;
    margin-top: 4px;
    font-weight: 700;
    color: white;
  }

  .box.green {
    color: #30d47a;
    font-weight: 700;
  }
.welcome-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(145deg, #15151c, #0d0d12);
  box-shadow:
    0 0 20px rgba(170, 0, 255, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4ecd, #8f2bff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.text .small {
  font-size: 11px;
  color: #9a9aa3;
}

.text .username {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}