/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: #000;
    color: #fff;
    font-family:  monospace;
    min-height: 100vh;
    overflow-x: hidden;
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  cursor: pointer;
  user-select: none;
  font-family: "Inter", sans-serif;
}

.custom-select-display {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: black;
  transition: 0.2s;
}

.custom-select-display:hover {
  border-color: #888;
}

.custom-select-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: black;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-top: 4px;
  max-height: 250px;
  overflow-y: auto;
  display: none;
  z-index: 999;
}

.custom-select-list.show {
  display: block;
}

.custom-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: 0.2s;
}

.custom-option:hover {
  background: #12cc3a;
}

.option-logo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}


.bsc{
        width: 30px;
    border: solid 1px;
    padding: 1px;
    border-radius: 5px;
}
/* Header */
.header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 5%; background: #111; border-bottom: 1px solid #17f53d;
    position: sticky; top: 0; z-index: 1000;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 40px; height: 40px; border-radius: 10px; border: 1px solid #17f53d; }
.logo-text { font-size: 1.4rem; font-weight: 700; color: #17f53d; text-shadow: 0 0 5px rgba(23,245,61,0.5); }

.nav ul { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav a { color: #fff; text-decoration: none; font-weight: 500; transition: color .3s; }
.nav a:hover { color: #17f53d; }

#connect-wallet, #mobile-connect-wallet {
    background: #17f53d; color: #000; border: none; padding: 0.5rem 1rem;
    border-radius: 6px; font-weight: bold; cursor: pointer; transition: .3s;
}
#connect-wallet:hover, #mobile-connect-wallet:hover { background: #12cc3a; transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 25px; height: 3px; background: #17f53d; border-radius: 3px; transition: 0.3s; }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 70%; max-width: 300px; height: 100vh;
    background: #111; padding: 5rem 2rem 2rem; transition: right .4s ease; z-index: 999;
    border-left: 1px solid #17f53d;
}
.mobile-menu.active { right: 0; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu a, .mobile-menu button { color: #fff; font-size: 1.1rem; text-decoration: none; }

/* Container */
.container {
    width: 90%; max-width: 600px; margin: 2rem auto; padding: 2rem;
    background: #111; border-radius: 12px; box-shadow: 0 0 25px rgba(23,245,61,0.15);
    border: 1px solid rgba(23,245,61,0.2);
}
h1 { text-align: center; color: #17f53d; margin-bottom: 1.5rem; text-shadow: 0 0 8px rgba(23,245,61,0.3); }

label { display: block; margin-top: 1rem; color: #17f53d; font-weight: 500; }
input, textarea, select {
    width: 100%; padding: 12px; margin-top: 6px; background: #222;
    border: 1px solid #17f53d; color: #fff; border-radius: 6px; transition: .3s;
}
input:focus, textarea:focus, select:focus {
    outline: none; border-color: #12cc3a; box-shadow: 0 0 8px rgba(23,245,61,0.3);
}

button[type="button"], button[type="submit"] {
    width: 100%; padding: 12px; margin-top: 1.5rem; background: #17f53d;
    color: #000; border: none; border-radius: 6px; cursor: pointer;
    font-weight: bold; font-size: 1rem; transition: .3s;
}
button[type="button"]:hover, button[type="submit"]:hover {
    background: #12cc3a; transform: translateY(-2px);
}

/* MODAL (Disconnect) */
.modal {
    display: none;
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.92); backdrop-filter: blur(8px);
    justify-content: center; align-items: center; z-index: 2000;
    opacity: 0; transition: opacity 0.3s ease;
}
.modal.show { display: flex; opacity: 1; }

.modal-content {
    background: #111; padding: 2rem; border-radius: 16px; text-align: center;
    border: 1px solid #17f53d; box-shadow: 0 0 30px rgba(23,245,61,0.25);
    width: 90%; max-width: 420px; animation: modalPop 0.4s ease;
}
.modal-content h3 { color: #17f53d; margin-bottom: 0.5rem; font-size: 1.3rem; }
.modal-content p { color: #ccc; margin-bottom: 1.5rem; font-size: 0.95rem; }

.modal-actions { display: flex; gap: 1rem; justify-content: center; }
.btn-danger {
    background: #e74c3c; color: white; padding: 0.7rem 1.5rem; border: none;
    border-radius: 8px; cursor: pointer; font-weight: bold; transition: 0.3s;
}
.btn-danger:hover { background: #c0392b; transform: translateY(-2px); }

.btn-secondary {
    background: #444; color: white; padding: 0.7rem 1.5rem; border: none;
    border-radius: 8px; cursor: pointer; font-weight: bold; transition: 0.3s;
}
.btn-secondary:hover { background: #555; transform: translateY(-2px); }

@keyframes modalPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .nav { display: none; }
    .hamburger { display: flex; }
    .container { width: 95%; padding: 1.5rem; }
}