.htsn-container {
  width: min(600px, 92vw);
  margin: 0 auto;
  padding: 12px 0 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-btn {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 120ms;
}

.home-btn:hover {
  opacity: 1;
}

.htsn-icon {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 12px;
  user-select: none;
}

.htsn-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 32px;
  text-align: center;
}

.htsn-card {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 10px 24px var(--shadow);
  padding: 28px 24px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  text-align: center;
}

#reason {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text);
}

.htsn-actions {
  display: flex;
  gap: 12px;
  width: 100%;
}

.htsn-btn {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: opacity 120ms, transform 80ms;
}

.htsn-btn:active {
  transform: scale(0.97);
}

.htsn-btn-primary {
  background: #d32f2f;
  color: #fff;
}

.htsn-btn-secondary {
  background: var(--card-bg);
  color: #d32f2f;
  border: 1.5px solid #d32f2f;
}

.htsn-btn-secondary[data-copied] {
  background: #d32f2f;
  color: #fff;
}

.htsn-count {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--muted);
}

.htsn-footer-links {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  .htsn-title {
    font-size: 1.3rem;
  }

  #reason {
    font-size: 1.05rem;
  }
}
