
        body {
                font-family: 'Sigmar', sans-serif;
            margin: 0;
            padding: 0;
            background-image: linear-gradient(#000000, #0a0b3a );
            color: #fff;
        }
        .circle-img {
              width: 75px;
               height: 75px; 
              border-radius: 50%; 
             object-fit: cover; 
              display: block; 
              margin: 0 auto; 
              
        }

        h1 {
            font-family: 'Sigmar', sans-serif;
            text-align: center;
            margin: 20px 0;
            color: #ffffff;
            font-size: 36px;
                      box-shadow:
        0 0 7px #0af,
        0 0 10px #0af,
        0 0 21px #0af,
        0 0 42px #0af,
        0 0 82px #0af;
                   text-shadow:
        0 0 7px #0af,
        0 0 10px #0af,
        0 0 21px #0af,
        0 0 42px #0af,
        0 0 82px #0af;
        
        }
        h6 {
            font-family: 'Sigmar', sans-serif;
            text-align: center;
            margin: 12px 0;
            color: #ffffff;
            font-size: 12px;
           text-shadow:
        0 0 7px #0af,
        0 0 10px #0af,
        0 0 21px #0af,
        0 0 42px #0af,
        0 0 82px #0af;
        }
        a {
            font-family: 'Sigmar', sans-serif;
            display: block;
            text-align: center;
            margin: 20px 0;
            color: #ffffff;
            font-size: 16px;
            text-decoration: none;
            text-shadow:
        0 0 7px #0af,
        0 0 10px #0af,
        0 0 21px #0af,
        0 0 42px #0af,
        0 0 82px #0af;
        }

        .search-bar, .filter-bar {
            width: 100%;
            padding: 10px;
            background-image: linear-gradient( black);
            display: flex;
            justify-content: center;
        }
        .search-bar input, .filter-bar button {
            font-size: 16px;
            border: none;
            border-radius: 5px;
            padding: 10px;
            cursor: pointer;
        }
        .search-bar input {
            width: 80%;
            max-width: 600px;
        }
        .filter-bar {
    display: flex;
    gap: 10px; /* Space between dropdowns */
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.filter-bar select {
    background-color: #222; /* Dark background */
    color: white; /* White text */
    border: 1px solid #444; /* Subtle border */
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 5px;
    outline: none;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}

.filter-bar select:hover,
.filter-bar select:focus {
    border-color: #666; /* Lighter on hover/focus */
    background-color: #333;
}


        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 10px;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .grid-item {
            background-image: linear-gradient(#000000, #0a0b3a);
            border-radius: 8px;
            overflow: hidden;
            text-align: center;
            padding: 10px;
            transition: transform 0.4s ease-in-out;
        }
        .grid-item img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-bottom: 1px solid #444;
        }
        .grid-item p {
            margin: 10px 0 0;
            font-size: 14px;
        }
        .grid-item a {
            text-decoration: none;
            color: #fff;
        }
        .grid-item:hover {
          transform: scale(1.1); 
        }
        .discord-widget {
  display: flex;
  justify-content: center; 
  align-items: center;      
  margin: 20px auto;
  width: 80%;              
  max-width: 900px;       
}

.discord-widget iframe {
  width: 100%;             
  height: 500px;        
  border-radius: 10px;      
  border: none;
}
.searchinglol {
    color: black;
}
/* HUD */
#bananaHud{
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
#bananaHud .btn-neon{
  background:#0b0f1a;border:2px solid #00ffff;border-radius:12px;
  color:#00ffff;padding:8px 12px;cursor:pointer;text-shadow:0 0 8px #00ffff;
}
#claimsLeft{color:#cfe; opacity:.8; font-size:.85rem;}

/* Banana base (from your previous code) */
.banana {
  position: fixed;
  top: -50px;
  font-size: 2rem;
  pointer-events: auto;
  user-select: none;
  z-index: 9999;
  animation: fall linear forwards;
}
@keyframes fall {
  to { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

/* Bonus banana (+) style */
.banana.bonus { position: fixed; }
.banana.bonus::after{
  content:"+";
  position:absolute;
  top:-8px; right:-10px;
  width:20px; height:20px;
  display:grid; place-items:center;
  background:#00ff9d; color:#001b13; font-weight:900;
  border-radius:50%;
  box-shadow:0 0 10px rgba(0,255,180,.8);
  font-size:.9rem;
}

/* Rewards modal (reuse your modal styles if you have them) */
.modal{position:fixed;inset:0;background:rgba(0,0,0,.55);display:none;align-items:center;justify-content:center;z-index:9999}
.modal.show{display:flex}
.modal-card{background:#0c1020;border:1px solid #233;border-radius:14px;padding:16px;min-width:320px;max-width:900px;box-shadow:0 0 24px rgba(0,255,255,.2);color:#eaf6ff}
.modal-wide{width:min(900px,92vw)}
.modal-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}
.btn-ghost{background:transparent;border:1px solid #445;color:#cfe;border-radius:10px;padding:6px 10px;cursor:pointer}
.muted{opacity:.8}

.rewards-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:12px;
  margin-top:8px;
}
.reward-card{
  background:#0a0f1a;border:1px solid #203040;border-radius:12px;padding:12px;
}
.reward-card h5{margin:0 0 6px}
.reward-meta{opacity:.85;font-size:.9rem;margin-bottom:8px}
.reward-card button{width:100%}

.inventory{
  border:1px solid #203040;border-radius:12px;padding:10px;min-height:46px;background:#0a0f1a
}
.inv-item{padding:6px 0;border-bottom:1px solid #1b2837}
.inv-item:last-child{border-bottom:none}

/* Mobile niceties */
@media (max-width: 640px){
  #bananaHud{right:10px; bottom:10px}
}
/* CSS */
.navbar {
  display: flex;
  justify-content: space-between; /* pushes logo left, links right */
  align-items: center;
  padding: 10px 30px;
  background-image: linear-gradient (rgb(8, 16, 65), #000000 ); /* or gradient */
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  
}

.logo img {
  height: 70px;
  width: 70px; /* adjust */
   border-radius: 50%; 
}

.logo span {
  font-size: 22px;
  font-weight: bold;
  color: #00c3ff;
  text-shadow: 0 0 8px #00c3ff;
}

.nav-links {
  display: flex;
  gap: 25px; /* spacing between links */
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00c3ff;
  text-shadow: 0 0 8px #00c3ff;
}
