@import url('sora.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Sora', sans-serif;
  background: #0d0d0d;
  color: #e0e0e0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

body::before, body::after, .star-1, .star-2, .star-3, .star-4, .star-5, .star-6, .star-7, .star-8 {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: #F2921D;
  border-radius: 50%;
  opacity: 0.4;
  animation: drift 20s linear infinite;
}

body::before { top: 10%; left: 20%; animation-delay: 0s; }
body::after { top: 60%; left: 80%; animation-delay: -5s; opacity: 0.3; }
.star-1 { top: 30%; left: 10%; animation-delay: -2s; }
.star-2 { top: 80%; left: 30%; animation-delay: -7s; opacity: 0.5; }
.star-3 { top: 20%; left: 70%; animation-delay: -12s; }
.star-4 { top: 50%; left: 90%; animation-delay: -3s; opacity: 0.3; }
.star-5 { top: 90%; left: 60%; animation-delay: -15s; }
.star-6 { top: 15%; left: 50%; animation-delay: -8s; }
.star-7 { top: 70%; left: 15%; animation-delay: -10s; opacity: 0.35; }
.star-8 { top: 45%; left: 45%; animation-delay: -4s; opacity: 0.25; }

@keyframes drift {
  0% { transform: translate(0, 0); opacity: 0.3; }
  25% { transform: translate(30px, -30px); opacity: 0.5; }
  50% { transform: translate(-20px, -50px); opacity: 0.2; }
  75% { transform: translate(-40px, -20px); opacity: 0.4; }
  100% { transform: translate(0, 0); opacity: 0.3; }
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 400px;
}

.pfp {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 2px solid #F2921D;
  box-shadow: 0 0 20px rgba(242, 146, 29, 0.4);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

h1 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.npub-label {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.5rem;
  text-transform: lowercase;
}

.npub {
  font-size: 0.65rem;
  color: #e0e0e0;
  word-break: break-all;
  margin-bottom: 2rem;
  font-family: monospace;
  border: 1px solid #F2921D;
  padding: 0.75rem;
  border-radius: 8px;
  background: rgba(242, 146, 29, 0.1);
  cursor: pointer;
  transition: background 0.2s;
}

.npub:hover {
  background: rgba(242, 146, 29, 0.2);
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.link {
  display: block;
  padding: 0.875rem 1.5rem;
  background: #1a1a1a;
  color: #F2921D;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid #F2921D;
  transition: background 0.2s, border-color 0.2s;
}

.link:hover {
  background: #F2921D;
  color: #0d0d0d;
}
