/* ══════════════════════════════════════════
   pages.css — Styles for hub, /now, /mctt, /portfolio
   ══════════════════════════════════════════ */

/* ── Active nav link ── */
.nav-links a.active,
.mm-link.active {
  color: var(--accent) !important;
}

/* ── Page Hero (shorter than index hero) ── */
.page-hero {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

/* ══════════════════════════════════════════
   /mctt — Server Status Page
   ══════════════════════════════════════════ */

/* ── Copy IP Button ── */
.mctt-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 2.2rem;
  background: var(--text);
  color: var(--bg);
  border-radius: 100px;
  border: none;
  font-family: 'Syne', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, background .45s, color .45s;
  box-shadow: 0 4px 24px var(--shadow);
}

.mctt-copy-btn .btn-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--accent2), var(--accent));
  opacity: 0;
  transition: opacity .3s;
}

.mctt-copy-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(200, 169, 110, .3);
}

.mctt-copy-btn:hover .btn-pulse {
  opacity: 1;
}

.mctt-copy-btn span {
  position: relative;
  z-index: 1;
}

/* ── Network Banner ── */
.mctt-network-banner {
  background: var(--card);
  backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 32px var(--shadow);
  transition: background .45s, border-color .45s;
}

.mctt-network-banner.online {
  border-color: rgba(46, 204, 113, .3);
}

.mctt-network-banner.offline {
  border-color: rgba(231, 76, 60, .3);
}

.mctt-net-status {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .4rem;
}

.mctt-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--muted);
  transition: background .3s;
  flex-shrink: 0;
}

.mctt-status-dot.online {
  background: #2ecc71;
  box-shadow: 0 0 8px rgba(46, 204, 113, .5);
  animation: livePulse 1.4s ease-in-out infinite;
}

.mctt-status-dot.offline {
  background: #e74c3c;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.mctt-status-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.mctt-net-address {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .05em;
}

.mctt-net-right {
  text-align: right;
}

.mctt-players-count {
  font-family: 'Instrument Serif', serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--accent);
}

.mctt-players-label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .2rem;
}

.mctt-net-version {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  color: var(--muted);
  margin-top: .4rem;
}

/* ── Server Grid ── */
.mctt-server-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}

.mctt-server-card {
  background: var(--card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color .2s, transform .2s, box-shadow .2s, background .45s;
}

.mctt-server-card:hover {
  border-color: rgba(200, 169, 110, .3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow);
}

.mctt-srv-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(200, 169, 110, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mctt-srv-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

.mctt-srv-info {
  flex: 1;
  min-width: 0;
}

.mctt-srv-name {
  font-family: 'Syne', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mctt-srv-type {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  color: var(--muted);
  margin-top: .15rem;
}

.mctt-srv-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .8rem;
  border-top: 1px solid var(--border);
  margin-top: .4rem;
}

.mctt-srv-status {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: 'Syne', sans-serif;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mctt-srv-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.mctt-srv-status.active .mctt-srv-dot {
  background: #2ecc71;
}

.mctt-srv-status.suspended .mctt-srv-dot,
.mctt-srv-status.offline .mctt-srv-dot {
  background: #e74c3c;
}

.mctt-srv-status.starting .mctt-srv-dot {
  background: #f39c12;
}

.mctt-srv-memory {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  color: var(--muted);
}

.mctt-loading,
.mctt-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--muted);
  font-size: .9rem;
}


/* ══════════════════════════════════════════
   /now — Live Activity Page
   ══════════════════════════════════════════ */

.now-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.now-card {
  background: var(--card);
  backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem 1.8rem;
  box-shadow: 0 8px 32px var(--shadow);
  transition: background .45s, border-color .2s, box-shadow .2s;
}

.now-card:hover {
  border-color: rgba(200, 169, 110, .25);
  box-shadow: 0 12px 40px var(--shadow);
}

.now-card-wide {
  grid-column: 1 / -1;
}

.now-card-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.2rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--border);
}

.now-card-icon {
  font-size: 1.1rem;
}

.now-card-title {
  font-family: 'Syne', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  flex: 1;
}

/* ── Now Music ── */
.now-live-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: 'Syne', sans-serif;
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.now-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  transition: background .3s;
}

.now-live-badge.live .now-live-dot {
  background: #2ecc71;
  animation: livePulse 1.4s ease-in-out infinite;
}

.now-live-badge.live {
  color: #2ecc71;
}

.now-music-content {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.now-music-art-wrap {
  flex-shrink: 0;
}

.now-music-art {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--bg2);
}

.now-music-info {
  flex: 1;
  min-width: 0;
}

.now-music-song {
  font-family: 'Instrument Serif', serif;
  font-size: 1.3rem;
  letter-spacing: -.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.now-music-artist {
  font-family: 'Syne', sans-serif;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-top: .2rem;
}

.now-music-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
  margin-top: .6rem;
}

.now-music-bars span {
  width: 3px;
  border-radius: 1px;
  background: var(--muted);
  height: 4px;
  transition: background .3s;
}

.now-music-bars.active span {
  background: linear-gradient(to top, var(--accent2), var(--accent));
  animation: bar-bounce 1s ease-in-out infinite;
}

.now-music-bars span:nth-child(1) { animation-delay: 0s; height: 6px; }
.now-music-bars span:nth-child(2) { animation-delay: .1s; height: 12px; }
.now-music-bars span:nth-child(3) { animation-delay: .2s; height: 16px; }
.now-music-bars span:nth-child(4) { animation-delay: .15s; height: 10px; }
.now-music-bars span:nth-child(5) { animation-delay: .05s; height: 8px; }

/* ── Now Lyrics (matches original glow style) ── */
.now-lyrics-panel {
  display: none;
  margin-top: 1.4rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.6rem 1.8rem 1.2rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: background .45s, border-color .45s, box-shadow .6s;
}

.now-lyrics-panel > * {
  position: relative;
  z-index: 1;
}

.now-lyrics-panel.visible {
  display: block;
  animation: fadeUp .6s ease both;
}

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

.now-lyrics-panel.live {
  border-color: rgba(200, 169, 110, .3);
  box-shadow: 0 0 60px -15px rgba(200, 169, 110, .15), 0 12px 36px var(--shadow);
}

.now-lyrics-panel.live::before {
  content: '';
  position: absolute;
  inset: -80%;
  z-index: 0;
  background: radial-gradient(ellipse at center, rgba(200, 169, 110, .1) 0%, transparent 70%);
  animation: ambientPulse 3s ease-in-out infinite;
  pointer-events: none;
}

.now-lyrics-panel.live::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
  animation: ambientSweep 3s ease-in-out infinite;
}

[data-theme="light"] .now-lyrics-panel.live {
  background: rgba(200, 169, 110, .07);
  border-color: rgba(139, 111, 71, .35);
  box-shadow: 0 4px 50px -8px rgba(139, 111, 71, .22), 0 0 0 1px rgba(200, 169, 110, .12), 0 12px 36px rgba(0, 0, 0, .06);
}

[data-theme="light"] .now-lyrics-panel.live::before {
  background: radial-gradient(ellipse at center, rgba(139, 111, 71, .08) 0%, transparent 70%);
}

.now-lyrics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-family: 'Syne', sans-serif;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.now-lyrics-resync {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .3rem .7rem;
  font-family: 'Syne', sans-serif;
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: none;
  transition: color .2s, border-color .2s;
}

.now-lyrics-resync:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.now-lyrics-scroll {
  max-height: 280px;
  overflow-y: auto;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.now-lyrics-scroll::-webkit-scrollbar {
  display: none;
}

.now-lyrics-lines {
  text-align: center;
  padding: 2rem 0;
}

.now-lyrics-lines .lyrics-line {
  font-family: 'Instrument Serif', serif;
  font-size: 1.05rem;
  line-height: 1.6;
  padding: .45rem .8rem;
  color: var(--muted);
  opacity: .3;
  transform: scale(.95);
  transition: opacity .4s, transform .4s, color .4s, font-size .4s;
  cursor: none;
  border-radius: 8px;
}

.now-lyrics-lines .lyrics-line.active {
  opacity: 1;
  color: var(--text);
  font-size: 1.2rem;
  transform: scale(1);
  background: rgba(200, 169, 110, .07);
}

.now-lyrics-lines .lyrics-line.past {
  opacity: .2;
  transform: scale(.95);
}

.now-lyrics-lines .lyrics-line.upcoming {
  opacity: .35;
}

.now-lyrics-footer {
  margin-top: .8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .65rem;
  color: var(--muted);
  opacity: .5;
  text-align: center;
}

/* ── Now Music Card glow when live ── */
.now-card-wide.live {
  border-color: rgba(200, 169, 110, .4);
  box-shadow: 0 0 80px -20px rgba(200, 169, 110, .25), 0 12px 36px var(--shadow);
}

[data-theme="light"] .now-card-wide.live {
  background: rgba(200, 169, 110, .07);
  border-color: rgba(139, 111, 71, .35);
  box-shadow: 0 4px 50px -8px rgba(139, 111, 71, .22), 0 0 0 1px rgba(200, 169, 110, .12), 0 12px 36px rgba(0, 0, 0, .06);
}

/* ── Now Discord ── */
.now-discord-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.now-discord-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.now-discord-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.now-discord-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2.5px solid var(--card);
  background: #747f8d;
}

.now-discord-dot.online { background: #3ba55c; }
.now-discord-dot.idle { background: #faa61a; }
.now-discord-dot.dnd { background: #ed4245; }
.now-discord-dot.offline { background: #747f8d; }

.now-discord-name {
  font-family: 'Syne', sans-serif;
  font-size: .9rem;
  font-weight: 600;
}

.now-discord-status {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  color: var(--muted);
  margin-top: .1rem;
}

.now-discord-activity {
  margin-top: 1rem;
  padding-top: .8rem;
  border-top: 1px solid var(--border);
}

.now-discord-act-label {
  font-family: 'Syne', sans-serif;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .3rem;
}

.now-discord-act-name {
  font-family: 'Syne', sans-serif;
  font-size: .85rem;
  font-weight: 600;
}

.now-discord-act-detail {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  color: var(--muted);
  margin-top: .15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Now GitHub ── */
.now-github-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.now-github-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.now-github-name {
  font-family: 'Syne', sans-serif;
  font-size: .9rem;
  font-weight: 600;
}

.now-github-stats {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  color: var(--muted);
  margin-top: .1rem;
}

.now-github-activity {
  margin-top: 1rem;
  padding-top: .8rem;
  border-top: 1px solid var(--border);
}

.now-github-act-label {
  font-family: 'Syne', sans-serif;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .3rem;
}

.now-github-act-type {
  font-family: 'Syne', sans-serif;
  font-size: .85rem;
  font-weight: 600;
}

.now-github-act-repo {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  color: var(--muted);
  margin-top: .15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Now MCTT Quick Status ── */
.now-mctt-status {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .8rem;
}

.now-mctt-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
  transition: background .3s;
}

.now-mctt-dot.online {
  background: #2ecc71;
  box-shadow: 0 0 6px rgba(46, 204, 113, .4);
  animation: livePulse 1.4s ease-in-out infinite;
}

.now-mctt-dot.offline {
  background: #e74c3c;
}

.now-mctt-status span {
  font-family: 'Syne', sans-serif;
  font-size: .85rem;
  font-weight: 600;
}

.now-mctt-players {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: 1rem;
}

.now-mctt-count {
  font-family: 'Instrument Serif', serif;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--accent);
}

.now-mctt-players span:last-child {
  font-family: 'Syne', sans-serif;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.now-mctt-link {
  font-family: 'Syne', sans-serif;
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--accent2);
  text-decoration: none;
  transition: color .2s;
}

.now-mctt-link:hover {
  color: var(--accent);
}

/* ══════════════════════════════════════════
   Hub Landing Page — / (index)
   ══════════════════════════════════════════ */

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.hub-card {
  position: relative;
  background: var(--card);
  backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem 2rem;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: .8rem;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s, background .45s;
  box-shadow: 0 8px 32px var(--shadow);
}

.hub-card:hover {
  border-color: rgba(200, 169, 110, .35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow);
}

.hub-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(200, 169, 110, .06), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
}

.hub-card:hover .hub-card-glow {
  opacity: 1;
}

.hub-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hub-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(200, 169, 110, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hub-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
}

.hub-card-live {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: 'Syne', sans-serif;
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.hub-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #747f8d;
  transition: background .3s;
}

.hub-live-dot.online {
  background: #3ba55c;
  box-shadow: 0 0 6px rgba(59, 165, 92, .5);
  animation: livePulse 1.4s ease-in-out infinite;
}

.hub-live-dot.idle { background: #faa61a; }
.hub-live-dot.dnd { background: #ed4245; }
.hub-live-dot.offline { background: #747f8d; }

.hub-card-body {
  flex: 1;
}

.hub-card-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: .3rem;
}

.hub-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}

.hub-card-peek {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .8rem;
  background: rgba(200, 169, 110, .05);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.hub-peek-icon {
  font-size: .9rem;
  flex-shrink: 0;
}

.hub-peek-text {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.hub-card-arrow {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  font-size: 1.2rem;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s, transform .25s;
}

.hub-card:hover .hub-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Socials card */
.hub-card-socials {
  cursor: default;
}

.hub-socials-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.hub-soc-link {
  display: inline-block;
  padding: .4rem .9rem;
  background: rgba(200, 169, 110, .08);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  transition: background .2s, border-color .2s, color .2s;
}

.hub-soc-link:hover {
  background: rgba(200, 169, 110, .18);
  border-color: var(--accent);
  color: var(--accent);
}


/* ══════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════ */

@media (max-width: 768px) {
  .hub-grid,
  .now-grid {
    grid-template-columns: 1fr;
  }

  .mctt-network-banner {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .mctt-net-right {
    text-align: center;
  }

  .mctt-server-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 45vh;
    padding-top: 100px;
  }

  .now-music-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hub-card {
    padding: 1.4rem 1.5rem;
  }

  .hub-card-title {
    font-size: 1.3rem;
  }

  .hub-card-arrow {
    display: none;
  }
}

/* ══════════════════════════════════════════
   /socials — Social Links Page
   ══════════════════════════════════════════ */

.soc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}

.soc-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.soc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  opacity: 0;
  transition: opacity .3s;
}

.soc-card:hover {
  border-color: var(--accent2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px -10px rgba(200, 169, 110, .2);
}

.soc-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: 12px;
  transition: background .3s;
}

.soc-card-icon svg {
  width: 22px;
  height: 22px;
}

.soc-card:hover .soc-card-icon {
  background: rgba(200, 169, 110, .12);
}

.soc-card-body {
  flex: 1;
}

.soc-card-platform {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.2;
}

.soc-card-handle {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .2rem;
}

.soc-card-arrow {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: color .3s, transform .3s;
  flex-shrink: 0;
}

.soc-card:hover .soc-card-arrow {
  color: var(--accent2);
  transform: translateX(3px);
}

/* ── Socials CTA ── */
.soc-cta {
  margin-top: 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.soc-cta-text {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--text);
}

.soc-cta-text em {
  font-style: italic;
  color: var(--accent2);
}

.soc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .95rem 2.4rem;
  background: var(--text);
  color: var(--bg);
  border-radius: 100px;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .25s, box-shadow .25s, background .45s, color .45s;
  box-shadow: 0 4px 24px var(--shadow);
}

.soc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--shadow);
}

@media (max-width: 600px) {
  .soc-grid {
    grid-template-columns: 1fr;
  }
}
