 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
     font-family: 'Manrope', sans-serif;
    }
    body {
      background:rgba(255, 255, 255, 0.678);
      color: #000000;
      display: flex;
      min-height: 100vh;
      overflow-x: hidden;
    }
  /* Custom Scrollbar for WebKit browsers */
::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: transparent; /* Transparent background for the track */
}

::-webkit-scrollbar-thumb {
    background-color: rgba(2, 141, 255, 0.849); /* Light blue color */
    border-radius: 25px; /* Rounded edges */
    box-shadow: 0 0 6px rgba(2, 6, 255, 0.616); /* Neon glow effect */
}

/* Custom Scrollbar for Firefox */
* {
    scrollbar-width: thin; /* Thin scrollbar */
    scrollbar-color: rgba(2, 141, 255, 0.849) transparent; /* Light blue thumb with transparent track */
}

.sidebar {
      position: fixed;
      top: 0;
      left: 0;
      width: 260px;
      height: 100%;
      background: rgba(0, 110, 255, 0.884);
      backdrop-filter: blur(70px);
      border-right: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
      z-index: 1000;
      box-shadow: 2px 0 10px rgba(0, 132, 255, 0.705);
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: #0256c5d2 transparent;
      padding-left: 20px;
      padding-right: 10px;
       padding-bottom: 15px;
    }
    .sidebar::-webkit-scrollbar {
      width: 6px;
    }
    .sidebar::-webkit-scrollbar-thumb {
      background-color: #046df5;
      border-radius: 4px;
    }
    .sidebar.closed {
      transform: translateX(-100%);
    }
     .sidebar .close-btn {
      display: none;
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 20px;
      color: #ffffff;
      cursor: pointer;
      z-index: 10;
    }
    @media (max-width: 768px) {
      .sidebar .close-btn {
        display: block;
      }
    }
    .sidebar .logo {
      text-align: center;
      margin: 20px auto 30px auto;
    }
    .sidebar .logo img {
      width: 60px;
      filter: drop-shadow(0 0 10px rgba(0, 140, 255, 0.671));
    }
    .sidebar .account-selector {
      margin: 0 auto 20px auto;
      text-align: center;
      position: relative;
      width: 90%;
    }
    .sidebar .account-selector select {
      background: rgba(0, 119, 255, 0.349);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 6px 10px;
      width: 80%;
      font-size: 14px;
      appearance: none;
      backdrop-filter: blur(10px);
    }
    .sidebar .account-selector select option {
      background: #1a1a1a;
      color: #fff;
    }
    .custom-dropdown {
  width: 90%;
  margin: 0 auto 20px auto;
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  z-index: 1001;
}
.custom-dropdown .selected-option {
  background: rgba(0, 119, 255, 0.349);
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 4px rgba(0, 132, 255, 0.5), 0 0 10px rgba(0, 132, 255, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-dropdown .selected-option i {
  margin-left: 10px;
  color: #ffffff;
}
.custom-dropdown .dropdown-options {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: rgba(20, 20, 20, 0.95);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 132, 255, 0.2);
  display: none;
  box-shadow: 0 0 10px rgba(0, 110, 255, 0.3);
}
.custom-dropdown .dropdown-options div {
  padding: 12px 16px;
  cursor: pointer;
  color: #fff;
  transition: 0.2s ease;
}
.custom-dropdown .dropdown-options div:hover {
  background: rgba(16, 102, 231, 0.788);
  color: #1274f5e3;
}
.custom-dropdown .dropdown-options.open {
  display: block;
}
.custom-dropdown .dropdown-options div.active {
  background: rgba(0, 132, 255, 0.404);
  color: #0b9cf0;
  font-weight: bold;
}
.custom-dropdown .dropdown-options .add-account-option {
  background: #0787ff;
  color: #ffffff;
  font-weight: bold;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.custom-dropdown .dropdown-options .add-account-option:hover {
  background: rgba(7, 114, 255, 0.637);
  color: #fff;
}



    .sidebar .section-title {
      margin-top: 30px;
      margin-bottom: 10px;
      font-size: 12px;
      text-transform: uppercase;
      color: #ffffff;
      letter-spacing: 1px;
    }
    .sidebar .tab {
      padding: 12px 16px;
      border-radius: 12px;
      margin-bottom: 6px;
      background: transparent;
      cursor: pointer;
      color: #fff;
      transition: 0.2s;
      font-weight: 550;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .sidebar .tab:hover, .sidebar .tab.active {
      background: rgba(0, 81, 255, 0.315);
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
      color: #ffffff;
    }
    .sidebar .tab i {
      width: 18px;
    }
    .sidebar .tab:hover i,
    .sidebar .tab.active i {
      color: #ffffff;
    }
    .sidebar .tab i {
      width: 18px;
      color: #fff;
      transition: color 0.2s;
    }
    .sidebar .profile {
      margin-top: auto;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px;
      cursor: pointer;
      border: 1px solid #ffffff;
      border-radius: 30px;
      color: white;
      background: transparent;
    }
    .sidebar .profile img {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid #ffffff;
    }
    .sidebar .profile i {
      color: #ffffff;
    }

    .main {
      flex: 1;
      margin-left: 260px;
      display: flex;
      flex-direction: column;
      transition: margin-left 0.3s ease;
    }

    .main.collapsed {
      margin-left: 0;
    }

     .navbar {
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      background: rgba(88, 88, 88, 0.06);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 4px 24px rgba(0, 132, 255, 0.274);
      border-radius: 0 0 12px 12px;
    }

    .navbar .menu-btn {
      font-size: 20px;
      color: #4db8ff;
      cursor: pointer;
      display: none;
    }

    .navbar .breadcrumbs {
      font-size: 14px;
      color: #000000;
    }

    .navbar .icons {
      display: flex;
      align-items: center;
    }

    .navbar .icons i {
      margin-left: 20px;
      cursor: pointer;
      color: #0574f3;
    }

    .content {
      padding: 30px;
      overflow-y: auto;
    }

    .tab-content {
      display: none;
    }

    .tab-content.active {
      display: block;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .sidebar {
        transform: translateX(-100%);
      }

      .sidebar.open {
        transform: translateX(0);
      }

      .main {
        margin-left: 0;
      }

      .navbar .menu-btn {
        display: block;
      }
    }

     .profile-popup {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #007bff;
      backdrop-filter: blur(20px);
      padding: 30px 24px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 0 30px rgba(0, 132, 255, 0.3);
      color: #fff;
      width: 95%;
      max-width: 540px;
      z-index: 9999;
      display: none;
    }
    .profile-popup .close-profile-btn {
      position: absolute;
      top: 14px;
      right: 14px;
      font-size: 20px;
      color: #ffffff;
      cursor: pointer;
    }
     .profile-popup .tabs {
      display: flex;
      gap: 10px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }
    .profile-popup .tabs div {
      padding: 10px 18px;
      background: black;
      border-radius: 10px;
      cursor: pointer;
      font-weight: bold;
      letter-spacing: 0.5px;
      font-size: 15px;
    }
    .profile-popup .tabs .active {
      background: rgba(0, 110, 255, 0.945);
      border: 0.01rem solid #fff;
      color: rgb(255, 255, 255);
      box-shadow: 0 0 12px rgba(0, 89, 255, 0.37);
    }
    @media (max-width: 600px) {
      .profile-popup .tabs div {
        padding: 8px 12px;
        font-size: 13px;
      }
    }
    .profile-popup .content {
      display: none;
    }
    .profile-popup .content.active {
      display: block;
    }
.profile-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid #fff;
  }
  .upload-message {
    margin-top: 10px;
    font-size: 14px;
    color: #ccc;
  }

    .profile-popup input[type="file"],
    .profile-popup input[type="password"],
    .profile-popup input[type="text"],
    .profile-popup button {
      width: 100%;
      padding: 10px;
      margin-top: 12px;
      border-radius: 10px;
      border: none;
      font-size: 15px;
      background: rgba(255,255,255,0.1);
      color: #fff;
      outline: none;
    }
    .profile-popup button {
      background: #000000;
      font-weight: bold;
      cursor: pointer;
      transition: 0.2s;
    }
    .profile-popup button:hover {
      background: #006be6d3;
    }
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.5);
      z-index: 9998;
      display: none;
    }

.logout-button {
  display: inline-block;
  padding: 10px 20px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  margin: 10px;
}

.logout-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}


    .notification-bell {
      position: relative;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .notification-bell .badge {
  position: absolute;
  top: -7px;
  right: -7px;
  background: rgba(0, 102, 255, 0.726);
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: bold;
  transition: opacity 0.3s ease;
}
.notification-bell i {
  font-size: 18px;
  transition: opacity 0.3s ease;
}
  .notification-popup {
  position: fixed;
  top: 80px;
  right: 24px;
  background: rgba(0, 0, 0, 0.979);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  width: 260px;
  display: none;
}
.notification-popup.show {
  display: block;
}

    .notification-popup p {
      font-size: 14px;
      line-height: 1.5;
    }
    @media (max-width: 600px) {
      .notification-popup {
      background: rgba(0, 0, 0, 0.973);
      backdrop-filter: blur(20px);
      }
    }
    .top-header {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
     background:  rgba(0, 110, 255, 0.884);
     box-shadow: inset 0 0 4px rgb(0, 0, 0), 0 0 10px rgba(0, 102, 255, 0.719);
      padding: 16px 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(20px);
      border-radius: 16px;
      overflow: hidden;
    }

    .top-header::before {
      content: "";
      position: absolute;
      width: 5px;
      height: 4px;
      background: rgba(0, 110, 255, 0.959);
      top: 0;
      left: 0;
      border-radius: 50%;
      animation: glow-line 4s linear infinite;
    }

    @keyframes glow-line {
      0% { top: 0; left: 0; }
      25% { top: 0; left: calc(100% - 5px); }
      50% { top: calc(100% - 4px); left: calc(100% - 5px); }
      75% { top: calc(100% - 4px); left: 0; }
      100% { top: 0; left: 0; }
    }

    .top-header .user-info {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .top-header .user-info img {
      border-radius: 50%;
      width: 50px;
      height: 50px;
      object-fit: cover;
      border: 2px solid rgba(255, 255, 255, 0.2);
    }
    .profile-image-wrapper {
  position: relative;
  width: 50px;
  height: 50px;
}

.profile-image-wrapper img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: block;
  position: relative;
  z-index: 2;
}

/* Shimmer circle */
.shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  z-index: 1;
}

/* Shimmer animation */
@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
    .top-header .drawdown-reset {
      font-size: 16px;
      background:  rgba(0, 110, 255, 0.568);
      padding: 10px 18px;
      border-radius: 12px;
      font-weight: bold;
      color: #ffffff;
      box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.2);
    }

    .home-tabs-wrapper-unique {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 20px 0px;
      flex-wrap: wrap;
      gap: 12px;
    }
    .home-tabs-unique {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .home-tabs-unique .tab-option-unique {
      padding: 10px 14px;
      background: rgba(0, 0, 0, 0.04);
      border: 1px solid rgba(0, 0, 0, 0.192);
      border-radius: 10px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
      font-size: 15px;
    }
    .home-tabs-unique .tab-option-unique:hover,
    .home-tabs-unique .tab-option-unique.active {
      background:  rgba(0, 110, 255, 0.884);
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
      color: rgb(255, 255, 255);
    }
    .credentials-btn {
      padding: 10px 14px;
      border: 1px solid rgb(0, 0, 0);
      border-radius: 10px;
      background: transparent;
      color: #000000;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: bold;
      font-size: 15px;
    }
    .credentials-btn:hover {
      background: rgba(0, 145, 241, 0.808);
      color: White;
    }
    .credentials-popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.credentials-popup {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 24px;
  width: 90%;
  max-width: 400px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.popup-content {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.popup-shimmer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.05) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 16px;
  z-index: 2;
}
@keyframes shimmer {
  0% { background-position: -150% 0; }
  100% { background-position: 150% 0; }
}
.popup-line {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.copyable i {
  cursor: pointer;
  color: #ccc;
  transition: opacity 0.2s;
}
.copy-message {
  font-size: 12px;
  color: rgb(10, 116, 255);
  display: none;
  width: 100%;
}
.popup-close-btn {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}
@media (max-width: 480px) {
  .credentials-popup {
    padding: 16px;
  }
  .popup-line {
    flex-direction: column;
    align-items: flex-start;
  }
}

    .tab-content-unique { display: none; }
    .tab-content-unique.active { display: block; }

    @media (max-width: 768px) {
      .top-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
      }
      .top-header .drawdown-reset {
        font-size: 12px;
        padding: 8px 8px;
      }
      .home-tabs-wrapper-unique {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }

  .home-tabs-unique {
    flex: 1;
    display: flex;
    gap: 4px;
  }

  .home-tabs-unique .tab-option-unique {
    font-size: 11px;
    padding: 6px 3px;
    flex: 1;
    text-align: center;
    white-space: nowrap;
  }

  .credentials-btn {
    font-size: 11px;
    padding: 6px 3px;
    white-space: nowrap;
  }
    }
    @media (max-width: 377px) {
        .home-tabs-unique .tab-option-unique {
    font-size: 9px;
  }
  .credentials-btn {
    font-size: 9px;
  }
          }
          .overview-wrapper {
      padding: 24px 0px;
    }
    .objectives-title {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 20px;
      margin-top: -50px;
    }
    .objectives-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
    .card {
      position: relative;
      overflow: hidden;
      background: rgba(241, 241, 241, 0.37);
      backdrop-filter: blur(15px);
      border-radius: 16px;
      padding: 20px;
      flex: 1 1 320px;
      min-width: 280px;
      border: 1px solid rgba(0, 0, 0, 0.377);
      box-shadow: 0 0 20px rgba(9, 138, 243, 0.315);
    }
    /* Shimmer overlay */
.card-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.089) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  z-index: 1;
}

@keyframes shimmer {
  0% {
    background-position: -150% 0;
  }
  100% {
    background-position: 150% 0;
  }
}
    .card-wide {
      flex: 1 1 100%;
    }
    .card h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }
    .amount {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
    }
    .progress-bar {
      display: flex;
      gap: 2px;
      margin-bottom: 8px;
    }
    .progress-bar span {
      flex: 1;
      height: 8px;
      border-radius: 4px;
      background: rgba(124, 124, 124, 0.1);
    }
    .progress-bar span.filled {
      background: rgba(255, 0, 0, 0.541);
    }
    .progress-bar.blue span.filled {
      background: #00ccff70;
    }
    .info-line {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      opacity: 0.85;
    }

    @media (max-width: 768px) {
      .objectives-cards {
        flex-direction: column;
      }
      .card {
        padding: 16px;
        flex: 1 1 100%;
      }
      .objectives-title {
        font-size: 20px;
      }
    }
    .stat-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 24px;
    }
    .stat-card {
      position: relative;
  overflow: hidden;
      flex: 1 1 250px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgb(0, 0, 0);
      border-radius: 12px;
      padding: 16px;
    }
    .stat-card h4 {
      font-size: 14px;
      opacity: 0.8;
      margin-bottom: 4px;
    }
    .stat-card .value {
      font-size: 18px;
      font-weight: bold;
    }
    .grid-stats {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 16px;
    }
    .grid-stats .stat-card {
      text-align: center;
    }
     #equityChart {
        height: 400px !important;
      }
      .chart-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.chart-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  z-index: 2;
}

@keyframes shimmer {
  0% { background-position: -150% 0; }
  100% { background-position: 150% 0; }
}
      /* Desktop Styling */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  color: rgb(0, 0, 0);
}
.responsive-table th,
.responsive-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}
.responsive-table th {
  background: rgba(255,255,255,0.03);
  font-weight: 600;
}
.responsive-table tr:nth-child(even) {
  background: rgba(255,255,255,0.01);
}

/* Mobile Styling */
@media (max-width: 768px) {
  .stat-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .stat-card {
    flex: 1 1 calc(50% - 10px);
    min-width: 140px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
  }
  .stat-card h4 {
    font-size: 14px;
  }
  .stat-card .value {
    font-size: 18px;
    font-weight: bold;
  }
  h2 {
    font-size: 18px;
  }
  .responsive-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .responsive-table thead {
    display: none;
  }
  .responsive-table tr {
    display: block;
    margin-bottom: 10px;
    background: rgb(0, 0, 0);
    color: white;
    border-radius: 10px;
  }
  .responsive-table td {
    display: block;
    padding: 10px;
    padding-left: 50%;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .responsive-table td::before {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 45%;
    white-space: nowrap;
    font-weight: bold;
    color: #ffffff;
  }
  .responsive-table td[data-label]::before {
    content: attr(data-label);
  }
}
    @media (max-width: 768px) {
      .glass-card-section {
        margin: 24px 16px;
        padding: 16px;
      }
      .glass-card-section h2 {
        font-size: 20px;
      }
      #equityChart {
        height: 400px !important;
      }
      .calendar-container {
    font-size: 12px;
    padding: 8px 0px;
  }
  .calendar-header {
    font-size: 12px;
    gap: 10px;
  }
  .calendar-grid {
    grid-template-columns: repeat(7, minmax(16px, 1fr));
    gap: 6px;
  }
  .calendar-grid .day,
  .calendar-grid .empty {
    padding: 3px !important;
    font-size: 12px;
  }
    }

    .calendar-container {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 20px;
  padding: 20px;
  margin-top: 30px;
  color: rgb(0, 0, 0);
  font-size: 14px;
  max-width: auto;
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
}
.calendar-header button {
  background: rgba(2, 110, 252, 0.753);
  border: none;
  color: rgba(255, 255, 255, 0.966);
  padding: 5px 10px;
  border-radius: 8px;
  cursor: pointer;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  text-align: center;
}
.calendar-grid .day,
.calendar-grid .empty {
  padding: 5px !important;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.616));
}
.calendar-grid .today {
  background: #0af !important;
  font-weight: bold;
  color: white;
}

.read-more-btn {
  margin: 20px auto;
  display: block;
  padding: 10px 20px;
  border: 1px solid rgb(0, 0, 0);
  background: rgba(255,255,255,0.05);
  color: rgb(0, 0, 0);
  font-weight: bold;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}
.read-more-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(0, 152, 253, 0.4);
}

.extra-stats {
  animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


.rewards-section {
  background: rgb(245, 245, 245);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(25px);
  color: #000000;
  max-width: 1000px !important;
  margin: 0 auto; /* centers the section */
  margin-bottom: 20px;
}

/* Margin outside the section on small screens */
@media (max-width: 768px) {
  .rewards-section {
    margin: 0 20px; /* Adds space left/right outside the section */
      }
}

.rewards-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.rewards-header h2 {
  font-size: 24px;
}
.points-display {
  display: flex;
  align-items: center;
   border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 14px;
  color: rgb(0, 0, 0);
  gap: 6px;
  background: rgba(255, 255, 255, 0.185);
}
.rewards-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.tab-button-reward {
  padding: 10px 16px;
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #000000;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}
.tab-button-reward.active,
.tab-button-reward:hover {
  background: rgba(0, 117, 250, 0.815);
  color: white;
}
.tab-content-reward {
  display: none;
}
.tab-content-reward.active {
  display: block;
}
.task-card {
  display: flex;
  flex-wrap: wrap;
  background: rgb(245, 245, 245);
   border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  gap: 20px;
  align-items: center;
}
.task-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.596);
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.task-info {
  flex: 1 1 200px;
}
.task-reward {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.points-box {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
}
.status.available {
  color: rgba(0, 153, 255, 0.836);
}
.upload-btn, .claim-btn {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  color: #000000;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
}
.complete-btn {
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  color: #000000;
  font-weight: bold;
  font-size: 13px;
}
.upload-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.upload-message {
  margin-top: 10px;
  font-size: 14px;
}

.file-info {
  font-size: 11px;
  color: #272727;
  margin-top: 2px;
  margin-bottom: 4px;
}
.shimmer-reward {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.05) 25%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.05) 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}
@keyframes shimmer-reward {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@media (max-width: 768px) {
  .rewards-header h2 { font-size: 20px; }
  .points-display span { font-size: 12px; }
  .task-card { flex-direction: column; align-items: flex-start; }
  .task-reward { align-items: flex-start; }
}

.withdrawal-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
}
.withdrawal-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.withdrawal-card {
  flex: 1 1 48%;
  background: rgb(245, 245, 245);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 24px;
  color: #000000;
  backdrop-filter: blur(25px);
  min-width: 300px;
}
.card-header {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.profit-info .label, .profit-info .sub-label {
  font-size: 14px;
  margin: 4px 0;
  opacity: 0.85;
}
.sub-label {
  margin-top: 10px;
}
.card-header h2, .card-header h3 {
  margin: 6px 0;
}
.outlined-card {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 16px;
  border-radius: 14px;
  background: transparent;
  text-align: center;
  min-width: 200px;
}
.outlined-card p {
  margin: 4px 0;
  font-size: 13px;
  opacity: 0.8;
}
.outlined-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.payout-btn {
  margin-top: 10px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  color: #000000;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}
.payout-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}
.info-line {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  font-size: 14px;
  opacity: 0.9;
  gap: 10px;
}
.info-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
/* POPUP */
.payout-request {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.payout-request.show {
  display: flex;
}
.payout-popup {
  background: rgb(0, 116, 248);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px;
  width: 90%;
  max-width: 420px;
  color: #fff;
  box-shadow: 0 0 25px rgba(10, 124, 255, 0.281);
}
.payout-popup h3 {
  margin-bottom: 14px;
  font-size: 20px;
}
.withdrawable-text {
  margin: 6px 0 14px;
  font-size: 14px;
  opacity: 0.9;
}
.selection-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.02);
  margin-bottom: 16px;
}
.custom-select select {
  background: rgba(255,255,255,0.03);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: bold;
  outline: none;
  font-size: 13px;
}
.warning-box {
  background: rgba(255, 0, 0, 0.05);
  border: 1px solid rgba(255, 0, 0, 0.2);
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 20px;
}
.payout-msg {
    margin-top: 10px;
    margin-bottom: 12px;
    color: #ccc;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
  }

.popup-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.cancel-btn, .pay-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cancel-btn:hover, .pay-btn:hover {
  background: rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .withdrawal-grid {
    flex-direction: column;
  }
  .card-header {
    flex-direction: column;
  }
  .outlined-card {
    width: 100%;
  }
}
.payout-history-card {
  background: rgb(245, 245, 245);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  margin-top: 30px;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.history-content {
  text-align: center;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.history-icon {
  font-size: 48px;
  opacity: 0.5;
}

.history-text {
  font-size: 20px;
  opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .payout-history-card {
    padding: 30px 16px;
  }
  .history-icon {
    font-size: 40px;
  }
  .history-text {
    font-size: 18px;
  }
}

.custom-dropdowns {
  position: relative;
  width: 170px;
  user-select: none;
}

.selected-option {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-weight: bold;
  font-size: 13px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.selected-option:hover {
  background: rgba(255, 255, 255, 0.06);
}

.dropdown-options {
  display: none;
  list-style: none;
  position: absolute;
  width: 100%;
  margin-top: 6px;
  background: rgb(0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(4, 106, 240, 0.726);
  border-radius: 6px;
  overflow: hidden;
  z-index: 999;
}

.dropdown-options li {
  padding: 10px 14px;
  font-size: 13px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.dropdown-options li:hover {
  background: rgba(255, 255, 255, 0.08);
}

.dropdown-options.show {
  display: block;
}

.leaderboardx-section {
  max-width: 1000px;
  margin: auto;
  padding: 30px 20px;
  color: #000000;
}

.leaderboardx-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.leaderboardx-card {
  flex: 1 1 100%;
  background: rgba(156, 156, 156, 0.13);
  border-radius: 20px;
   border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 24px;
  backdrop-filter: blur(25px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.top-usersx {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.user-cardx {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.user-cardx img {
  height: 50px;
  margin-bottom: 10px;
}

.progressx-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.progressx-list li {
  margin-bottom: 10px;
  font-size: 15px;
}

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

.tablex-header input {
  padding: 8px 14px;
  border-radius: 8px;
   border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.288);
  color: #000000;
  min-width: 220px;
}

.tablex-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.leaderboardx-table {
  min-width: 800px;
  width: max-content;
  border-collapse: collapse;
  color: #000000;
}

.leaderboardx-table th,
.leaderboardx-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.tablex-pagination {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
  gap: 10px;
}

.tablex-pagination button {
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(0, 96, 241, 0.808);
  color: #fff;
  cursor: pointer;
}

.tablex-pagination button:hover {
  background: rgba(0, 0, 0, 0.993);
}

/* 📱 Mobile Stacked Table View */
@media (max-width: 768px) {
  .tablex-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .tablex-header h2 {
    font-size: 16px;
  }

  .tablex-header input {
    width: 100%;
    min-width: unset;
  }

  .leaderboardx-table {
    width: 100%;
  }

  .leaderboardx-table thead {
    display: none;
  }

  .leaderboardx-table tbody tr {
    display: block;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  }

 .leaderboardx-table td {
  display: block;
  padding: 8px 10px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  white-space: nowrap;
}

.leaderboardx-table td::before {
  content: attr(data-label);
  display: block;
  font-weight: 600;
  color: #aaa;
  margin-bottom: 2px;
  font-size: 12px;
}

  .leaderboardx-table td:last-child {
    border-bottom: none;
  }

  .leaderboardx-table td::before {
    content: attr(data-label);
    font-weight: bold;
    color: #ccc;
    flex-basis: 40%;
  }
}
@media (max-width: 420px) {
.top-usersx {
  gap: 10px;
}
}
@media (max-width: 768px) {
  .leaderboardx-card {
    padding: 16px;
  }

  .user-cardx {
  min-width: 100px;
}
.user-cardx h3 {
  font-size: 14px;
}
.user-cardx p {
  font-size: 10px;
}

.user-cardx img {
  height: 40px;
}

  .tablex-header {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .tablex-header h2 {
    font-size: 16px;
  }

  .tablex-header input {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .leaderboardx-table {
    width: 100%;
    min-width: unset;
  }

  .leaderboardx-table thead {
    display: none;
  }

  .leaderboardx-table tbody tr {
    display: block;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  }

  .leaderboardx-table td {
    display: block;
    padding: 8px 10px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    white-space: normal;
  }

  .leaderboardx-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: #aaa;
    margin-bottom: 4px;
    font-size: 12px;
  }

  .tablex-pagination {
    flex-direction: column;
    align-items: stretch;
    margin-top: 20px;
  }

  .tablex-pagination button {
    width: 100%;
  }
}

.stats-dashboard-modern {
  padding: 60px 5vw;
  color: #000000;
  margin-top: -35px;
}

.stats-title-modern {
  font-size: 22px;
  margin-bottom: 32px;
  text-align: center;
}

.stats-metric-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.metric-card {
  background: rgba(219, 219, 219, 0.192);
  border: 1px solid rgba(0, 0, 0, 0.096);
  border-radius: 16px;
  padding: 20px;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  backdrop-filter: blur(18px);
  box-shadow: 0 4px 16px rgba(7, 99, 238, 0.15);
}

.metric-card h4 {
  color: #000000;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}

.metric-card p {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
}

.radial-meter {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  background: conic-gradient(#0586f0d2 calc(var(--value) * 1%), #44444470 calc(var(--value) * 1%));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ffcc;
  font-weight: bold;
  font-size: 18px;
  position: relative;
}

.radial-meter::after {
  content: attr(style);
  position: absolute;
  font-size: 0px;
  color: #fff;
  font-weight: 0;
}

.stats-performance-section h3 {
  text-align: center;
  font-size: 22px;
  margin: 40px 0 24px;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 0 20px;
}

.summary-tile-card {
  background: rgba(189, 189, 189, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 18px;
  line-height: 1.6;
  font-size: 14px;
  backdrop-filter: blur(15px);
  box-shadow: 0 0 10px rgba(15, 167, 255, 0.123);
}

.summary-tile-card h4 {
  color: #000000;
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 500;
}

.summary-tile-card p {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
}

.stats-calendars {
  margin-top: 50px;
}

.stats-calendars h3 {
  font-size: 20px;
  margin-bottom: 16px;
  text-align: center;
}

.calendars-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  font-size: 13px;
  text-align: center;
  padding: 0 10px;
}

.calendars-grid div {
  background: rgba(61, 61, 61, 0.24);
  padding: 10px 6px;
  border-radius: 8px;
  min-height: 55px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 400;
}

.calendars-grid .profit {
  background: rgba(0,255,140,0.15);
  color: #00ff94;
  font-weight: bold;
  border: 1px solid rgba(0,255,140,0.4);
}

.calendars-grid .loss {
  background: rgba(255, 80, 80, 0.15);
  color: #ff8080;
  font-weight: bold;
  border: 1px solid rgba(255, 80, 80, 0.3);
}

.certificates-elite-container {
  padding: 60px 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  margin-top: -30px;
}

.certificates-glass-card {
  background: rgba(206, 206, 206, 0.171);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(6, 128, 228, 0.418);
  padding: 40px 30px;
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.cert-icon-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.certificate-icon {
  width: 80px;
  height: 80px;
  opacity: 0.75;
}

.cert-icon-text h3 {
  font-size: 22px;
  color: #024fc2dc;
  font-weight: 600;
  margin: 0;
}

.cert-icon-text p {
  font-size: 14px;
  color: #000000;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .certificates-glass-card {
    padding: 30px 20px;
  }
  .certificate-icon {
    width: 60px;
    height: 60px;
  }
  .cert-icon-text h3 {
    font-size: 18px;
  }
  .cert-icon-text p {
    font-size: 13px;
  }
}

.competitions-container {
  padding: 60px 5vw;
  background: transparent;
  color: #fafafa;
  position: relative;
  margin-top: -35px;
}

.competitions-heading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 800;
   background: linear-gradient(to right, #4fa3ff, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.competitions-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  position: relative;
  z-index: 1;
}

.elite-card {
  position: relative;
  background: rgba(0, 89, 255, 0.877);
  border: 1px solid #ffffff28;
  backdrop-filter: blur(40px);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(6, 101, 245, 0.774);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.elite-card h3 {
  font-size: 24px;
  font-weight: 700;
  z-index: 2;
  position: relative;
}

.elite-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  font-size: 15px;
  color: #ddd;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.status.closed {
  color: #000000;
  font-weight: 500;
}

.status.open {
  color: #0a0046cb;
  font-weight: 600;
}

.join-btn {
  margin-top: 20px;
  padding: 12px 24px;
  background: transparent;
  color: #ffffff;
  border: 1px solid white;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 2;
  position: relative;
}

.join-btn:hover {
  transform: scale(1.05);
}

.comp-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.comp-popup-content {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  padding: 35px;
  border-radius: 24px;
  width: 90%;
  max-width: 460px;
  color: #fff;
  text-align: center;
  position: relative;
  animation: popupIn 0.3s ease;
}

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

.comp-popup-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
   background: linear-gradient(to right, #4fa3ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comp-popup-content ul {
  text-align: left;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.6;
}

.payment-btn {
  display: inline-block;
  padding: 12px 24px;
   background: transparent;
  color: #fff;
  font-weight: 700;
  border: 1px solid #fff;
  border-radius: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}


.comp-close-btn {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 480px) {
  .elite-card {
    padding: 22px;
  }
  .comp-popup-content {
    padding: 25px;
  }
  .comp-popup-content h3 {
    font-size: 20px;
  }
}
.university-section {
  padding: 60px 5vw;
  color: #fff;
  background: transparent;
  text-align: center;
}

.university-heading {
  font-size: 32px;
  font-weight: 800;
 background: linear-gradient(to right, #000000, #4fa3ff );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.university-subtext {
  font-size: 16px;
  color: #0e0e0e;
  margin-bottom: 40px;
}

.university-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.university-card {
  background: rgba(0, 110, 255, 0.808);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.university-card:hover {
  transform: scale(1.03);
}

.university-card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 15px;
}

.university-card h3 {
  font-size: 18px;
  font-weight: 600;
}

.university-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.university-popup-content {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  border-radius: 20px;
  padding: 25px;
  width: 90%;
  max-width: 720px;
  position: relative;
}

.university-close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 480px) {
  .university-popup-content {
    padding: 15px;
  }
}

.affiliate-section {
  padding: 60px 5vw;
  text-align: center;
  color: #000000;
  margin-top: -30px;
}

.affiliate-title {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(to right, #000000, #4fa3ff );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.affiliate-subtext {
  font-size: 16px;
  color: #1f1f1f;
  margin-bottom: 50px;
}

.affiliate-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.affiliate-glasscard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s;
}

.affiliate-glasscard:hover {
  transform: translateY(-5px) scale(1.02);
}

.affiliate-cta .affiliate-btn {
  background: transparent;
  color: #000;
  border: 1px solid #000;
  padding: 14px 30px;
  font-weight: bold;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.affiliate-cta .affiliate-btn:hover {
  background: rgb(0, 116, 248);
  color: #fff;
}

.affiliate-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.affiliate-popup-content {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(25px);
  border-radius: 20px;
  padding: 30px;
  max-width: 450px;
  width: 90%;
  color: #fff;
  position: relative;
}

.affiliate-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
}

.affiliate-apply-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  border: 1px solid #fff;
  border-radius: 25px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.affiliate-apply-btn:hover {
  color: #008cff;
}

.rules-faqs-section {
  padding: 60px 5vw;
  text-align: center;
  background: transparent;
  color: #fff;
}

.rules-faqs-heading {
  font-size: 32px;
  font-weight: 800;
   background: linear-gradient(to right, #000000, #4fa3ff );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.rules-faqs-subtext {
  font-size: 16px;
  color: #1f1f1f;
  margin-bottom: 40px;
}

.rules-faqs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.rules-faqs-card {
  background: rgba(13, 110, 255, 0.801);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: left;
}
.rules-faqs-section h3 {
margin-bottom: 8px;
}

.rules-faqs-list {
  list-style: none;
  padding: 0;
  line-height: 1.8;
}

.rules-faqs-list li::before {
  content: '✔️';
  margin-right: 8px;
  color: #000000;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  padding: 12px;
  background: rgba(255,255,255,0.06);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: rgba(255,255,255,0.09);
}

.faq-answer {
  display: none;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.973);
  border-radius: 12px;
  margin-top: 5px;
  color: #eee;
  font-size: 15px;
}

.faq-question.active + .faq-answer {
  display: block;
}
.heatmap-section {
  padding: 60px 5vw;
  color: #ffffff;
  background: transparent;
  text-align: center;
}

.heatmap-heading {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(to right, #000000,#4fa3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.heatmap-subtext {
  font-size: 16px;
  color: #000000;
  margin-bottom: 30px;
}

.heatmap-widget-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  background: rgba(3, 122, 235, 0.74);
  overflow: hidden;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: 600px;
}

@media (max-width: 768px) {
  .heatmap-widget-wrapper {
    height: 500px;
  }
}

@media (max-width: 480px) {
  .heatmap-widget-wrapper {
    height: 400px;
  }
  .heatmap-heading {
    font-size: 24px;
  }
  .heatmap-subtext {
    font-size: 14px;
  }
}

.eco-calendar-section {
  padding: 60px 5vw;
  color: #fff;
  background: transparent;
  text-align: center;
}

.eco-calendar-heading {
  font-size: 32px;
  font-weight: 800;
 background: linear-gradient(to right, #000000,#4fa3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.eco-calendar-subtext {
  font-size: 16px;
  color: #0f0f0f;
  margin-bottom: 30px;
}

.eco-calendar-widget-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  background: rgba(3, 122, 235, 0.74);
  overflow: hidden;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: 600px;
}

@media (max-width: 768px) {
  .eco-calendar-widget-wrapper {
    height: 500px;
  }
}

@media (max-width: 480px) {
  .eco-calendar-widget-wrapper {
    height: 400px;
  }
  .eco-calendar-heading {
    font-size: 24px;
  }
  .eco-calendar-subtext {
    font-size: 14px;
  }
}
.tradingview-chart-section {
  padding: 60px 5vw;
  color: #fff;
  background: transparent;
  text-align: center;
}

.tradingview-chart-heading {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(to right, #000000,#4fa3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.tradingview-chart-subtext {
  font-size: 16px;
  color: #000000;
  margin-bottom: 30px;
}

.tradingview-chart-widget-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  background: rgba(3, 122, 235, 0.74);
  overflow: hidden;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: 700px;
}

@media (max-width: 768px) {
  .tradingview-chart-widget-wrapper {
    height: 550px;
  }
}

@media (max-width: 480px) {
  .tradingview-chart-widget-wrapper {
    height: 420px;
  }
  .tradingview-chart-heading {
    font-size: 24px;
  }
  .tradingview-chart-subtext {
    font-size: 14px;
  }
}