.profile-modal {
  position: absolute;
  top: 100px;
  right: 70%;
  transform: translateX(-50%);
  background: rgba(0, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 16px;
  padding: 20px;
  min-width: 220px;
  box-shadow: 0 0 15px #0ff, 0 0 30px #8000ff;
  display: none;
  z-index: 999;
  text-align: center;
  animation: fadeIn 0.3s ease;
}


@media (max-width: 1200px) {
    .profile-modal {
      right: 40%;
    }
    }


.user-wrapper:hover .profile-modal {
  display: block;
}

.modal-title {
  color: #0ff;
  font-size: 18px;
  margin-bottom: 15px;
  text-shadow: 0 0 5px #0ff;
}

.modal-line {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,255,255,0.2);
}

.modal-line span {
  color: #0ff;
  text-shadow: 0 0 3px #0ff;
}

.btn-glassy-profile {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(0, 255, 255, 0.12);
  color: #0ff;
  border: 1px solid #0ff;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 10px;
}

.btn-glassy-profile:hover {
  background: #0ff;
  color: #000;
  box-shadow: 0 0 12px #0ff, 0 0 24px #8000ff;
}

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

.hash-display{
  display: block;
}

@media (max-width: 600px) {
    .hash-display{
  display: none;
}
    }