/* KILL LINE — Index Page Styles */

/* Hero */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 20px 60px;
  width: 100%;
  max-width: 800px;
}

.kill-text {
  font-family: 'Impact', 'Bebas Neue', sans-serif;
  font-weight: 900;
  font-size: clamp(96px, 20vw, 200px);
  letter-spacing: 16px;
  color: var(--white);
  line-height: 1;
  text-align: center;
  -webkit-user-select: none;
  user-select: none;
}

.subtitle {
  font-family: 'Ma Shan Zheng', 'KaiTi', serif;
  font-size: clamp(32px, 7vw, 64px);
  color: var(--red);
  letter-spacing: 14px;
  text-align: center;
  margin-top: 8px;
  -webkit-user-select: none;
  user-select: none;
}

.tagline {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 24px);
  color: #555;
  letter-spacing: 6px;
  text-align: center;
  margin-top: 32px;
  text-transform: lowercase;
  -webkit-user-select: none;
  user-select: none;
}

/* Stats */

.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 48px 20px;
  width: 100%;
  max-width: 600px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-label {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #555;
  letter-spacing: 4px;
}

.stat-value {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 400;
  font-size: 48px;
  color: var(--red);
  letter-spacing: 2px;
  line-height: 1;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: #222;
}

/* Cold line */

.cold-line {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  letter-spacing: 5px;
  text-align: center;
  padding: 0 20px 32px;
  text-transform: lowercase;
}

/* Contract Address */

.ca-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 20px;
  width: 100%;
}

.ca-label {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #555;
  letter-spacing: 4px;
}

.ca-button {
  background: #0a0a0a;
  border: 1px solid #222;
  color: #888;
  font-family: 'Courier New', monospace;
  font-size: clamp(11px, 2.5vw, 15px);
  padding: 14px 24px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  position: relative;
  max-width: 90vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-button:hover {
  border-color: var(--red);
  color: #ccc;
}

.ca-button:active {
  border-color: var(--red);
  background: #110000;
}

.ca-copied {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  color: var(--red);
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 16px;
  letter-spacing: 6px;
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
}

.ca-button.copied .ca-copied {
  opacity: 1;
}

.ca-button.copied .ca-text {
  opacity: 0;
}

/* Social Links */

.socials {
  display: flex;
  gap: 32px;
  padding: 48px 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
  text-decoration: none;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 3px;
  transition: color 0.2s;
}

.social-link:hover {
  color: var(--red);
}

.social-icon {
  width: 20px;
  height: 20px;
}

/* Mobile */

@media (max-width: 480px) {
  .hero {
    padding: 80px 16px 40px;
  }

  .stats {
    gap: 24px;
  }

  .stat-value {
    font-size: 36px;
  }

  .socials {
    gap: 24px;
  }
}
