/* Allow scrolling on this page */
html, body {
  overflow: auto;
}

/* Keep gradient covering full scroll height */
.bg {
  position: fixed;
}
.noise {
  position: fixed;
}

/* ── Social Page Layout ── */
.social-page {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px 80px;
}

.back-btn {
  align-self: flex-start;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.25s;
  margin-bottom: 40px;
}

.back-btn:hover {
  color: #ffffff;
}

/* ── Page Title ── */
.social-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.25em;
  color: #ffffff;
  margin-bottom: 52px;
  text-align: center;
}

/* ── Sections ── */
.social-section {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  margin-bottom: 52px;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 10px;
}

/* ── Social Buttons ── */
.social-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  background: rgba(10,10,10,0.7);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  text-decoration: none;
  color: #ffffff;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s, background 0.3s;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.social-btn:hover {
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
  background: rgba(20,20,20,0.85);
  box-shadow: 0 6px 28px rgba(255,255,255,0.07), 0 2px 16px rgba(0,0,0,0.5);
}

.social-btn:hover::before {
  opacity: 1;
}

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

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.15);
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.btn-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.platform-name {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.account-name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-transform: uppercase;
}
