body {
  background-color: white;
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #333;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  padding: 2rem;
}

.text {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.links a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s;
}

.links a:hover {
  color: #000;
}

.links a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #333;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s;
}

.links a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.contract-address {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.address-box {
  background-color: white;
  border: 2px solid black;
  padding: 2rem;
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.label {
  font-size: 32px;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  user-select: all;
  text-align: center;
  word-break: break-word;
  max-width: 90%;
}

.address {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  word-break: break-all;
  font-family: monospace;
}