.counter-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(0, 212, 232, 0.2), rgba(0, 150, 200, 0.15));
  border: 2px solid rgba(0, 212, 232, 0.4);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 212, 232, 0.2);
}

.counter-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand-300);
  line-height: 1;
  min-width: 40px;
  text-align: center;
}

.counter-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-200);
  opacity: 0.95;
}

.address-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 100px 0;
}

.address-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(0, 20, 40, 0.6);
  border: 1px solid rgba(0, 212, 232, 0.25);
  border-radius: var(--radius);
  padding: 18px 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 28px rgba(0, 212, 232, 0.08);
}

.address-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  align-items: baseline;
}

.address-label {
  font-weight: 700;
  color: var(--brand-300);
  font-size: 0.95rem;
  white-space: nowrap;
}

.address-value {
  color: var(--brand-200);
  font-size: 1rem;
  line-height: 1.6;
  word-break: break-word;
}

.address-code {
  font-weight: 700;
  letter-spacing: 1.2px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  color: var(--brand-300);
  font-size: 1rem;
}

.btn.small {
  padding: 10px 18px;
  font-size: 0.9rem;
  max-width: none;
  min-width: 80px;
}

.empty {
  opacity: 0.8;
  text-align: center;
  margin-top: 32px;
  color: var(--brand-200);
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px calc(12px + env(safe-area-inset-left, 0px)) calc(12px + env(safe-area-inset-bottom, 0px)) calc(12px + env(safe-area-inset-right, 0px));
  background: linear-gradient(to top, rgba(5, 11, 22, 0.95), rgba(5, 11, 22, 0.7));
  backdrop-filter: blur(12px);
  z-index: 20;
  border-top: 1px solid rgba(0, 212, 232, 0.15);
}

.back-link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 232, 0.35);
  background: rgba(0, 212, 232, 0.14);
  color: var(--brand-200);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(0, 212, 232, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.back-link:hover {
  background: rgba(0, 212, 232, 0.22);
  box-shadow: 0 10px 34px rgba(0, 212, 232, 0.24), 0 6px 16px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

@media (max-width: 560px) {
  .address-content {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .address-label {
    font-size: 0.85rem;
  }

  .address-value {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
  
  .back-link__label {
    display: none;
  }
  
  .back-link {
    padding: 10px 14px;
  }
}
