/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  font-family: "Inter", system-ui, sans-serif;
  background: #000;
  color: #fff;
  min-height: 100vh;
}

/* Layout */
.wrap {
  min-height: 100vh;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 22px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.9s ease forwards;
}

/* FOR SALE badge */
.sale {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 8px 24px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  opacity: 0.95;
}

/* Domain */
.domain {
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  word-break: break-word;
}

/* Price */
.price {
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.9;
}

/* Contact (desktop default) */
.contact {
  margin-top: 18px;
  padding: 14px 22px;
  background: #ffffff;
  color: #000000;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
}

.contact a {
  color: #000;
  text-decoration: none;
  word-break: break-all;
}

.contact span {
  opacity: 0.4;
  font-weight: 500;
}

/* Gradient layer */
.gradient-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    600px circle at 50% 50%,
    rgba(255, 255, 255, 0.06),
    transparent 70%
  );
  background-size: 200% 200%;
}

/* Fade animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 600px) {
  .sale {
    font-size: 0.85rem;
    padding: 6px 18px;
  }

  .price {
    font-size: 1.05rem;
  }

  .contact {
    flex-direction: column;
    gap: 6px;
    border-radius: 18px;
    padding: 14px 16px;
  }

  .contact span {
    display: none;
  }
}
