/* ============================================
   Socials Page — word sea + link cards
   ============================================ */

/* Word sea background */
.word-sea {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.word-sea-col {
  position: absolute;
  top: 0;
  font-family: var(--mono);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.3;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text-light);
  opacity: 0.75;
  text-align: center;
  white-space: pre-line;
  letter-spacing: 0.05em;
  animation: wordDriftDown linear infinite;
  will-change: transform;
}

/* Alternate direction */
.word-sea-col:nth-child(even) {
  animation-name: wordDriftUp;
}

/* Solid bold columns */
.word-sea-col:nth-child(3n+2) {
  color: var(--border);
  -webkit-text-stroke: 0;
  font-size: 52px;
  opacity: 0.75;
}

/* Larger outlined */
.word-sea-col:nth-child(3n) {
  font-size: 60px;
  -webkit-text-stroke: 1.8px var(--text-light);
  opacity: 0.55;
}

@keyframes wordDriftDown {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}

@keyframes wordDriftUp {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

/* Page layout */
.socials-page {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  padding: 3rem 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(242, 244, 247, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Hero identity */
.socials-hero {
  text-align: center;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.socials-name {
  font-family: var(--mono);
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
}

.socials-name a {
  position: relative;
}

.socials-arrow {
  position: absolute;
  right: 100%;
  margin-right: 0.15em;
}

.socials-tagline {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}

/* Link cards */
.socials-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}

.social-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.social-link-card:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.social-link-card:hover .social-link-icon {
  color: var(--accent);
}

.social-link-card:hover .social-link-arrow {
  color: var(--accent);
  transform: translate(2px, -2px);
}

.social-link-icon {
  color: var(--text-mid);
  transition: color 0.2s;
  flex-shrink: 0;
  display: flex;
  width: 24px;
  justify-content: center;
}

.social-link-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.social-link-name {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
}

.social-link-handle {
  font-family: var(--serif);
  font-size: 0.78rem;
  color: var(--text-light);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-link-arrow {
  margin-left: auto;
  font-size: 1.1rem;
  color: var(--text-light);
  transition: all 0.2s;
  flex-shrink: 0;
}

/* Bottom tag */
.socials-bottom {
  margin-top: auto;
  padding-top: 3rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-light);
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
