@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Mono:wght@300;400;500&family=Inter:wght@300;400;500&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:              #080808;
  --bg-2:            #0e0e0e;
  --card:            #0c0c0c;
  --card-border:     rgba(255,255,255,0.07);
  --card-border-hover: rgba(255,255,255,0.18);
  --text:            #f0f0f0;
  --text-muted:      #666;
  --text-dim:        #333;
  --white:           #ffffff;
  --green:           #a8ffb0;
  --yellow:          #ffe08a;
  --red:             #ff8a8a;
  --blue:            #8ac8ff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  animation: BodyFadeIn 0.4s ease forwards;
}

@keyframes BodyFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

#StarsCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.PageWrapper {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.Card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 26px;
  opacity: 0;
  transform: translateY(24px);
  animation: FadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  will-change: transform, opacity;
}

.Card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.028) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.Card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.028) 50%,
    transparent 80%
  );
  animation: CardShimmer 1.1s cubic-bezier(0.22,1,0.36,1) forwards;
  pointer-events: none;
  z-index: 1;
}

@keyframes CardShimmer {
  0%   { left: -60%; opacity: 0; }
  15%  { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

.Card:hover {
  border-color: var(--card-border-hover);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03), 0 8px 40px rgba(0,0,0,0.6);
}

.Card:nth-child(1) { animation-delay: 0.08s; }
.Card:nth-child(1)::after { animation-delay: 0.08s; }
.Card:nth-child(2) { animation-delay: 0.18s; }
.Card:nth-child(2)::after { animation-delay: 0.18s; }
.Card:nth-child(3) { animation-delay: 0.28s; }
.Card:nth-child(3)::after { animation-delay: 0.28s; }
.Card:nth-child(4) { animation-delay: 0.38s; }
.Card:nth-child(4)::after { animation-delay: 0.38s; }

@keyframes FadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.HeroCard {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  overflow: visible;
}

.HeroLeft {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  margin-top: -6px;
}

.HeroLeft .ContactLabel {
  margin-top: 2px;
  margin-bottom: 0;
  text-align: center;
}

.HeroLeft .SocialRow {
  flex-direction: column;
  align-items: stretch;
  margin-top: 0;
  gap: 5px;
  width: 100%;
}

.HeroLeft .SocialBtn {
  justify-content: center;
  font-size: 10.5px;
  padding: 5px 10px;
}

.HeroGlow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(255,255,255,0.035) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.02) 0%, transparent 50%);
  pointer-events: none;
  border-radius: inherit;
}

.HeroWhiteGlow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 140px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.015) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  border-radius: 50%;
}
.AvatarWrap {
  position: relative;
  flex-shrink: 0;
  animation: AvatarPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.3s;
}

@keyframes AvatarPop {
  from { opacity: 0; transform: scale(0.82); }
  to   { opacity: 1; transform: scale(1); }
}

.Avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.1);
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.03), 0 0 28px rgba(255,255,255,0.07);
  transition: box-shadow 0.4s ease;
}

.Avatar:hover {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.07), 0 0 42px rgba(255,255,255,0.16);
}

.AvatarFallback {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  font-family: 'Syne', sans-serif;
  letter-spacing: -1px;
  box-shadow: 0 0 24px rgba(255,255,255,0.05);
}

.StatusDot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2.5px solid var(--card);
  background: var(--text-dim);
  transition: background 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s cubic-bezier(0.22,1,0.36,1);
}

.StatusDot.online  {
  background: var(--green);
  box-shadow: 0 0 8px rgba(168,255,176,0.7);
  animation: PulseOnline 2.4s ease-in-out infinite;
}
.StatusDot.idle    { background: var(--yellow); box-shadow: 0 0 8px rgba(255,224,138,0.7); }
.StatusDot.dnd     { background: var(--red);    box-shadow: 0 0 8px rgba(255,138,138,0.7); }
.StatusDot.offline { background: var(--text-dim); box-shadow: none; }

@keyframes PulseOnline {
  0%   { box-shadow: 0 0 0 0 rgba(168,255,176,0.55), 0 0 8px rgba(168,255,176,0.7); }
  60%  { box-shadow: 0 0 0 5px rgba(168,255,176,0),  0 0 8px rgba(168,255,176,0.7); }
  100% { box-shadow: 0 0 0 0 rgba(168,255,176,0),    0 0 8px rgba(168,255,176,0.7); }
}
.HeroMeta { flex: 1; padding-top: 14px; }

.HeroName {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: #fff;
  animation: NamePulse 5s ease-in-out infinite alternate;
}

@keyframes NamePulse {
  from { text-shadow: 0 0 18px rgba(255,255,255,0.22), 0 0 40px rgba(255,255,255,0.06); }
  to   { text-shadow: 0 0 32px rgba(255,255,255,0.42), 0 0 72px rgba(255,255,255,0.14); }
}

.HeroBio {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 3px;
  letter-spacing: 0.01em;
}

.HeroAboutMe {
  margin-top: 10px;
  font-size: 12.5px;
  color: #555;
  line-height: 1.6;
  padding: 8px 12px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border-left: 1.5px solid rgba(255,255,255,0.12);
  font-weight: 300;
  font-style: italic;
  transition: border-color 0.3s, color 0.3s;
}

.HeroAboutMe:hover {
  border-color: rgba(255,255,255,0.28);
  color: #777;
}

.ViewsRow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 11.5px;
  font-family: 'DM Mono', monospace;
  color: var(--text-dim);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  cursor: default;
  flex-wrap: wrap;
}

.ViewsRow:hover { color: var(--text-muted); }

.ViewsRow svg { width: 13px; height: 13px; opacity: 0.45; }

.PlatformRow {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0;
}

.PlatformBadge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  padding: 3px 9px;
  border-radius: 99px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--text-dim);
  transition: all 0.25s;
}
.PlatformBadge.Active {
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 0 10px rgba(255,255,255,0.04);
}
.PlatformBadge svg { width: 12px; height: 12px; flex-shrink: 0; }
.SocialRow {
  display: flex;
  gap: 7px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.SocialBtn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  padding: 5px 11px;
  border-radius: 99px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  letter-spacing: 0.03em;
}

.SocialBtn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.SocialBtn:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  box-shadow: 0 0 14px rgba(255,255,255,0.06);
  transform: translateY(-1px);
}
.SocialBtn:hover svg { opacity: 1; }
.StatusBubble {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px 14px 14px 4px;
  padding: 5px 11px;
  font-size: 12px;
  font-family: 'DM Mono', monospace;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  box-shadow: 0 0 16px rgba(255,255,255,0.04), 0 4px 20px rgba(0,0,0,0.5);
  animation: BubblePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  pointer-events: none;
  margin-top: -20px;
}

.StatusBubble::before {
  content: '';
  position: absolute;
  left: -7px;
  bottom: 4px;
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-right: 8px solid rgba(255,255,255,0.1);
  border-bottom: 0 solid transparent;
}

.StatusBubble::after {
  content: '';
  position: absolute;
  left: -5px;
  bottom: 5px;
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-right: 7px solid #111;
  border-bottom: 0 solid transparent;
}

@keyframes BubblePop {
  from { opacity: 0; transform: scale(0.8) translateY(6px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.SectionLabel {
  font-size: 10px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.SectionLabel::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.18), transparent);
  vertical-align: middle;
}
.PresenceWrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.PresenceArt {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 0 14px rgba(255,255,255,0.04);
}

.PresenceInfo { flex: 1; min-width: 0; }

.PresenceName {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(255,255,255,0.82);
  font-family: 'Syne', sans-serif;
}

.PresenceDetail {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.PresenceState {
  font-size: 11px;
  color: var(--text-dim);
  font-family: 'DM Mono', monospace;
  margin-top: 1px;
}

.NoPresence {
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
  font-family: 'DM Mono', monospace;
}
.ProjectList {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ProjectItem {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.012);
  text-decoration: none;
  color: inherit;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ProjectItem::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,0.025) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.ProjectItem:hover {
  background: rgba(255,255,255,0.028);
  border-color: rgba(255,255,255,0.11);
  transform: translateX(4px);
  box-shadow: 0 0 22px rgba(255,255,255,0.04);
}

.ProjectItem:hover::after { opacity: 1; }

.ProjectIcon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 0 12px rgba(255,255,255,0.04);
  filter: grayscale(0.3);
  transition: filter 0.3s;
}

.ProjectItem:hover .ProjectIcon { filter: grayscale(0); }

.ProjectInfo { flex: 1; min-width: 0; }

.ProjectNameRow {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.ProjectName {
  font-size: 14px;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  color: rgba(255,255,255,0.85);
}

.BadgeUsers {
  font-size: 10px;
  font-family: 'DM Mono', monospace;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1px 7px;
  border-radius: 99px;
}

.BadgeDev {
  font-size: 10px;
  font-family: 'DM Mono', monospace;
  color: rgba(255,224,138,0.65);
  background: rgba(255,224,138,0.05);
  border: 1px solid rgba(255,224,138,0.12);
  padding: 1px 7px;
  border-radius: 99px;
}

.ProjectDesc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

.TagRow {
  display: flex;
  gap: 5px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.Tag {
  font-size: 10px;
  font-family: 'DM Mono', monospace;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 1px 7px;
  border-radius: 99px;
  transition: color 0.2s, border-color 0.2s;
}

.ProjectItem:hover .Tag {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.15);
}

.ProjectArrow {
  color: var(--text-dim);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}

.ProjectItem:hover .ProjectArrow {
  color: var(--text-muted);
  transform: translateX(3px);
}
.Spinner {
  width: 22px;
  height: 22px;
  animation: Spin 1s linear infinite;
  opacity: 0.18;
  filter: grayscale(1);
}

@keyframes Spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.07); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.14); }
::selection { background: rgba(255,255,255,0.14); color: #fff; }
@media (max-width: 500px) {
  .HeroCard {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .HeroLeft {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 0;
    width: 100%;
  }
  .HeroLeft .SocialRow {
    flex-direction: row;
    width: auto;
  }
  .PageWrapper {
    padding: 50px 16px 80px;
  }
}
.SpotifyWrap {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 2px 0;
}

.SpotifyArt {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255,255,255,0.08);
}

.SpotifyInfo {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.SpotifyIcon {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #1db954;
  font-size: 10px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-bottom: 1px;
}

.SpotifyIcon::after {
  content: 'spotify';
}

.SpotifySong {
  font-size: 13px;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.SpotifyArtist {
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.SpotifyBar {
  margin-top: 6px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
}

.SpotifyProgress {
  height: 100%;
  background: #1db954;
  border-radius: 99px;
  transition: width 1s linear;
  width: 0%;
}
.ContactLabel {
  font-size: 10px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  margin-top: 14px;
  margin-bottom: 6px;
}
.ActivityDivider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 12px 0;
}
.LyricsWrap {
  margin-top: 12px;
  height: 88px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.055);
  opacity: 1;
  transition:
    opacity 0.5s cubic-bezier(0.22,1,0.36,1),
    max-height 0.5s cubic-bezier(0.22,1,0.36,1),
    margin-top 0.5s cubic-bezier(0.22,1,0.36,1);
  max-height: 88px;
  will-change: contents;
}
.LyricsWrap.hidden {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  border-color: transparent;
  pointer-events: none;
}
.LyricsWrap::before,
.LyricsWrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 24px;
  z-index: 2;
  pointer-events: none;
}
.LyricsWrap::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
}
.LyricsWrap::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95), transparent);
}

.LyricsInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 0 16px;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.LyricPad {
  flex-shrink: 0;
  width: 100%;
  height: 44px;
  pointer-events: none;
}

.LyricLine {
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.035em;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  opacity: 0.3;
  transform: scale(0.95);
  transition:
    color    0.32s cubic-bezier(0.22,1,0.36,1),
    opacity  0.32s cubic-bezier(0.22,1,0.36,1),
    transform 0.32s cubic-bezier(0.22,1,0.36,1),
    font-size 0.32s cubic-bezier(0.22,1,0.36,1);
  will-change: transform, opacity;
}

.LyricLine.active {
  color: rgba(255,255,255,0.96);
  font-size: 12px;
  opacity: 1;
  transform: scale(1.06);
}

.LyricLine.slide-up.active {
  animation: LyricSlideUp 0.28s cubic-bezier(0.22,1,0.36,1) both;
}
.LyricLine.slide-down.active {
  animation: LyricSlideDown 0.28s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes LyricSlideUp {
  from { opacity: 0; transform: translateY(12px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0)    scale(1.06); }
}
@keyframes LyricSlideDown {
  from { opacity: 0; transform: translateY(-12px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0)     scale(1.06); }
}

.LyricLine.prev {
  color: rgba(255,255,255,0.32);
  font-size: 11px;
  opacity: 0.55;
  transform: scale(0.97);
}

.LyricLine.next {
  color: rgba(255,255,255,0.24);
  font-size: 11px;
  opacity: 0.42;
  transform: scale(0.97);
}
.LyricLine.near {
  opacity: 0.18;
  transform: scale(0.93);
  font-size: 10.5px;
}
.LyricLine.far {
  opacity: 0.06;
  transform: scale(0.9);
  font-size: 10px;
}
#DiscordCard {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;  
  margin-top: 0;
  pointer-events: none;
  transition:
    max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

#DiscordCard.visible {
  max-height: 900px;
  opacity: 1;
  overflow: visible;
  padding-top: 26px;
  padding-bottom: 26px;
  border-width: 1px;
  margin-top: 0;
  pointer-events: auto;
}
@keyframes activityIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.PresenceWrap,
.SpotifyWrap {
  animation: activityIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.ActivityDivider {
  animation: activityIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.PresenceWrap:nth-child(1),
.SpotifyWrap:nth-child(1) { animation-delay: 0ms; }
.PresenceWrap:nth-child(3),
.SpotifyWrap:nth-child(3) { animation-delay: 80ms; }
.PresenceWrap:nth-child(5),
.SpotifyWrap:nth-child(5) { animation-delay: 160ms; }