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

:root {
  --bg-dark:    #0a0e1a;
  --bg-card:    #111827;
  --border:     #1e2d45;
  --accent:     #3b82f6;
  --accent-glow:#1d4ed8;
  --text-primary:   #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted:     #64748b;
}

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Starfield background ── */
.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  animation: twinkle var(--dur, 4s) var(--delay, 0s) infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50%       { opacity: var(--max-opacity, 0.6); transform: scale(1); }
}

/* ── Layout ── */
.container {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

/* ── Card ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 3rem 2.5rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(59, 130, 246, 0.06);
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Globe icon ── */
.icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.globe-icon {
  width: 56px;
  height: 56px;
  color: var(--accent);
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.5));
}

/* ── Label ── */
.label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ── Domain name ── */
.domain-name {
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 0;
  word-break: break-all;
  min-height: 1.2em;
}

/* ── Divider ── */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 1.75rem 0;
}

/* ── Message ── */
.message {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* ── Contact button ── */
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: 0.625rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
  word-break: break-all;
}

.contact-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-btn:hover {
  background: var(--accent-glow);
  box-shadow: 0 4px 28px rgba(59, 130, 246, 0.55);
  transform: translateY(-2px);
}

.contact-btn:active {
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .card {
    padding: 2rem 1.5rem;
  }
}
