@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tilt+Prism&display=swap');

.coin {
  font-family: "Tilt Prism", sans-serif;
}

* {
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: #05070a;
  color: white;
}

.one {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.03);
  margin-left: 20px;
  margin-right: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.one:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.wallets {
  font-weight: 600;
  border-radius: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 85%;
  padding: 15px 25px;
  background: #0f1115;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  color: white;
  gap: 20px;
}

.wallets:hover {
  background: #161a21;
  border-color: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.wallets img {
    border-radius: 8px;
}

a:hover {
  text-decoration: none;
}

textarea:focus {
  border: 2px solid #22c55e;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
}

.line {
  width: 70px;
  height: 2px;
  background-color: #22c55e;
  margin-right: 20px;
}

.line_faint {
  width: 90px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
}

a {
  text-decoration: none;
  color: white;
}

.modal-content {
    background-color: #0f1115;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-close {
    filter: invert(1);
}

h3 {
    color: #22c55e;
    letter-spacing: 2px;
    text-transform: uppercase;
}
