
  body {
    font-family: 'Fredoka', sans-serif;
    background-color: #110e17;
    color: #fff;
    overflow-x: hidden;
    display: flex;
    min-height: 100vh;
  }

  /* ==================== GLOBAL LINK STYLE ==================== */
a {
  color: #2af081;
  text-decoration: underline;
  transition: all 0.3s ease;
}

a:hover {
  color: #2af081; 
  text-shadow: 0 0 8px rgba(42, 240, 129, 0.8),
               0 0 14px rgba(42, 240, 129, 0.5);
}
  .glow {
    text-shadow: 0 0 8px rgba(42, 240, 129, 0.8),
                 0 0 18px rgba(42, 240, 129, 0.6);
  }
  .glass {
    background: rgb(17, 14, 23);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
  }
  .neon-btn {
    background: linear-gradient(90deg, #2af081, #2af081);
    border: none;
    color: #110b1e;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  .neon-btn:hover {
    box-shadow: 0 0 25px #2af081;
    color: #110b1e;
    transform: scale(1.05);
    background: linear-gradient(90deg, #2af081, #2af081);
  }

    .gray-btn {
    background: transparent;
border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  .gray-btn:hover {

    color: #fff;
    transform: scale(1.05);
    background: transparent;
  }
  .divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2af081, transparent);
    margin: 100px 0 80px 0;
    opacity: 0.6;
  }
  .sidebar {
    position: fixed;
    top: 0;
    left: -220px;
    width: 220px;
    height: 100vh;
    background: rgba(255,255,255,0.005);
    backdrop-filter: blur(12px);
    border-right: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    transition: all 0.3s ease;
    z-index: 1000;
  }
  .sidebar.open { left: 0; box-shadow: 0 0 30px rgba(0,0,0,0.8); }
  .sidebar-logo { width: 140px; margin-bottom: 40px; }
  .nav-link {
    color: #bbb !important;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
  }
  .nav-link i { width: 18px; text-align: center; }
  .nav-link.active {
    color: #2af081 !important;
    text-shadow: 0 0 10px #2af081;
  }
  .nav-link:hover {
    color: #2af081 !important;
    transform: translateX(4px);
  }
  .hamburger {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 14px;
    border-radius: 8px;
    color: #2af081;
    cursor: pointer;
    z-index: 1500;
    transition: all 0.3s ease;
  }
  .wallet-top {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 800;
  }
  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 900;
  }
  .overlay.show { opacity: 1; pointer-events: all; }
  main {
    margin-left: 220px;
    padding: 100px 40px 40px 40px;
    flex-grow: 1;
    transition: margin-left 0.3s ease;
  }
  .popular {
    transform: scale(1.05);
    border: 2px solid #2af081;
    position: relative;
  }
  .popular::before {
    content: "Most Popular";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #2af081;
    color: #110b1e;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 8px;
    letter-spacing: 0.5px;
  }
  @media (max-width: 991px) {
    .sidebar { left: -220px; }
    .sidebar.open { left: 0; }
    main { margin-left: 0; padding-top: 120px; }
    .hamburger { display: block; }
  }
  @media (min-width: 992px) {
    .sidebar { left: 0; }
    .hamburger { display: none; }
    .overlay { display: none; }
  }

   
  #walletStatus .btn-outline-info { 
  border-color: #2af081;
  color: #2af081;
  background: rgba(255,255,255,0.05);
  font-weight: 500;
}
#walletStatus .btn-outline-info:hover {
  background: #2af081;
  color: #110b1e;
  box-shadow: 0 0 15px #2af081;
}
.dropdown-menu {
  background: rgba(15, 27, 70, 0.95);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}
.dropdown-item {
  color: #fff !important;
}
.dropdown-item:hover {
  background: rgba(42, 240, 129, 0.1);
  color: #2af081 !important;
} 

/* Neon Dropdown Button */
.neon-dropdown-btn {
  background-color: transparent;
  border: 1px solid #2af081;
  color: #2af081;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.neon-dropdown-btn:hover {
  background-color: #2af081;
  box-shadow: 0 0 12px #2af081;
  color: #110b1e;
}

/* Neon Dropdown Menu */
.neon-dropdown-menu {
  background-color: #110e17;
  border: 1px solid #2af08133;
  border-radius: 10px; 
  box-shadow: 0 0 10px rgba(42, 240, 129, 0.2);
  padding: 6px 0;
}

.neon-dropdown-menu .dropdown-item {
  color: #e5e5e5;
  transition: all 0.2s ease;
  font-size: 0.95rem;
} 

.neon-dropdown-menu .dropdown-item:hover {
  background-color: rgba(42, 240, 129, 0.15); 
  color: #2af081;
}

.neon-dropdown-menu .dropdown-header {
  font-size: 0.9rem;
  color: #2af081;
  text-align: center;
}


.nav-link.nav-disabled {
  color: #777 !important;
  cursor: not-allowed;
  pointer-events: none;
  transition: all 0.3s ease;
}

.nav-link.nav-disabled i {
  color: #666 !important;
}

.nav-link.nav-disabled:hover {
  transform: none;
  text-shadow: none;
}

.text-gray-400.text-xs.uppercase.tracking-wider {
  color: #aaa !important; /* normal menü rengiyle aynı ton */
  font-weight: 500;
  letter-spacing: 1px;
}



.sidebar .coming-soon-title {
  color: #2af081;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 20px;
  margin-bottom: 4px;
}



/* ======= Responsive Token Table Fix ======= */
@media (max-width: 768px) {
  table.min-w-full thead {
    display: none;
  }

  table.min-w-full tr {
    display: block;
    margin-bottom: 1rem;
    background: rgba(15, 27, 70, 0.3);
    border-radius: 10px;
    padding: 10px;
  }

  table.min-w-full td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none !important;
    padding: 6px 10px !important;
    font-size: 0.9rem;
  }

  table.min-w-full td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #2af081;
    text-transform: uppercase;
    font-size: 0.75rem;
  }

  table.min-w-full td:first-child {
    justify-content: flex-start;
  }

  table.min-w-full td img {
    height: 32px;
    width: 32px;
  }



}


/* ✅ Global Boosted Badge Style (applies everywhere) */
.boosted-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #2af081;
  color: #2af081 !important;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  background: rgba(42, 240, 129, 0.05);
  text-shadow: 0 0 6px rgba(42, 240, 129, 0.5);
  white-space: nowrap;
  line-height: 1;
  transition: all 0.3s ease;
}

.boosted-badge i {
  font-size: 0.7rem;
  color: #2af081 !important;
}

.boosted-badge:hover {
  background-color: rgba(42, 240, 129, 0.1);
  box-shadow: 0 0 10px rgba(42, 240, 129, 0.3);
}