:root {
  color-scheme: dark;
  --bg: #000;
  --panel: rgba(3, 3, 3, 0.86);
  --panel-soft: rgba(12, 12, 12, 0.72);
  --line: rgba(255, 255, 255, 0.44);
  --line-strong: rgba(255, 255, 255, 0.82);
  --text: rgba(255, 255, 255, 0.88);
  --muted: rgba(255, 255, 255, 0.48);
  --dim: rgba(255, 255, 255, 0.25);
  --shadow: rgba(255, 255, 255, 0.07);
  --font: "Cascadia Code", "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
  cursor: crosshair !important;
  user-select: none;
  -webkit-user-select: none;
}

html {
  min-height: 100%;
  background: var(--bg);
  cursor: crosshair;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.035), transparent 22rem),
    linear-gradient(180deg, #020202 0%, #000 100%);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  letter-spacing: 0;
  cursor: crosshair;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

a {
  color: inherit;
  cursor: crosshair;
}

button {
  font: inherit;
  cursor: crosshair;
}

::selection {
  color: inherit;
  background: transparent;
}

#starfall,
.grain,
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#starfall {
  z-index: 0;
  opacity: 1;
}

.grain {
  z-index: 0;
  background-image: url("assets/grain.png");
  background-size: 192px 192px;
  opacity: 0.3;
  filter: grayscale(1);
  mix-blend-mode: screen;
  animation: grain-shift 2.4s steps(2, end) infinite;
}

.scanlines {
  z-index: 10;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.018) 0,
    rgba(255, 255, 255, 0.018) 1px,
    transparent 1px,
    transparent 5px
  );
  opacity: 0.26;
}

.entry-gate {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #000;
  transition: opacity 360ms ease, visibility 360ms ease;
}

body.entered .entry-gate {
  visibility: hidden;
  opacity: 0;
}

.loader-ascii {
  position: absolute;
  top: 50%;
  z-index: 1;
  max-width: min(42vw, 440px);
  max-height: min(76vh, 760px);
  overflow: hidden;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font);
  font-size: clamp(8px, 1.16vw, 16px);
  line-height: 0.95;
  white-space: pre;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.18),
    0 0 26px rgba(255, 255, 255, 0.08);
  opacity: 0.52;
  transform: translateY(-52%);
  animation: loader-ascii-flash 220ms steps(1, end) infinite;
}

.loader-ascii-left {
  right: calc(50% + 242px);
}

.loader-ascii-right {
  left: calc(50% + 242px);
  transform: translateY(-52%) scaleX(-1);
  animation-delay: 80ms;
}

.loader-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(420px, calc(100% - 48px));
  transform: translate(-50%, -150px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  padding: 18px;
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.1);
}

.loader-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
}

.loader-row strong {
  color: #fff;
  font-weight: 500;
}

.loader-bar {
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.loader-bar span {
  display: block;
  width: 0%;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.64);
}

.loader-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

body:not(.is-loading) .loader-panel {
  opacity: 0;
  transform: translate(-50%, -162px);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.entry-button {
  width: min(360px, 100%);
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 15px 16px;
  background: rgba(0, 0, 0, 0.94);
  color: var(--text);
  text-align: left;
  box-shadow: 0 16px 70px rgba(0, 0, 0, 0.88), 0 0 24px var(--shadow);
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease;
}

body.is-loading .entry-button {
  opacity: 0;
  visibility: hidden;
  cursor: wait;
  pointer-events: none;
}

.entry-button:hover,
.entry-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  outline: none;
  transform: translateY(-1px);
}

.entry-path {
  color: var(--muted);
}

.entry-command {
  margin-left: 8px;
  color: #fff;
}

.entry-cursor {
  display: inline-block;
  width: 8px;
  height: 1em;
  margin-left: 6px;
  transform: translateY(2px);
  background: #fff;
  animation: cursor 1s steps(1, end) infinite;
}

.page-shell {
  position: fixed;
  inset: 0;
  z-index: 2;
  min-height: 100vh;
  width: 100%;
  perspective: 1000px;
}

.card-shell {
  position: absolute;
  width: var(--card-width);
  left: var(--card-left);
  top: var(--card-top);
  transform: translate3d(var(--drag-x, 0px), var(--drag-y, 0px), 0);
  touch-action: none;
  will-change: transform;
}

.profile-shell {
  --card-width: 300px;
  --card-left: calc(50% - 360px);
  --card-top: calc(50% - 170px);
}

.bio-shell {
  --card-width: 360px;
  --card-left: calc(50% - 40px);
  --card-top: calc(50% - 136px);
}

.presence-shell {
  --card-width: 314px;
  --card-left: calc(50% - 372px);
  --card-top: calc(50% + 150px);
}

.roblox-shell {
  --card-width: 330px;
  --card-left: calc(50% + 18px);
  --card-top: calc(50% + 252px);
}

.servers-shell {
  --card-width: 440px;
  --card-left: calc(100% - 468px);
  --card-top: 24px;
}

.lastfm-shell {
  --card-width: 268px;
  --card-left: calc(50% - 134px);
  --card-top: calc(100% - 180px);
}

.panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    linear-gradient(180deg, var(--panel-soft), var(--panel)),
    #000;
  box-shadow:
    0 18px 70px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 30px rgba(255, 255, 255, 0.1);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  animation: card-float 10s ease-in-out infinite;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 130ms ease;
  overflow: hidden;
}

.bio-shell .panel {
  animation-delay: -4s;
  animation-duration: 11.5s;
}

.presence-shell .panel {
  animation-delay: -7s;
  animation-duration: 12.5s;
}

.roblox-shell .panel {
  animation-delay: -2s;
  animation-duration: 12s;
}

.servers-shell .panel {
  animation-delay: -5s;
  animation-duration: 13s;
}

.lastfm-shell .panel {
  animation-delay: -8s;
  animation-duration: 12s;
}

.card-shell.is-dragging {
  z-index: 5;
}

.card-shell.is-colliding .panel {
  border-color: rgba(255, 255, 255, 0.9);
}

.card-shell.is-impact .panel {
  animation: card-impact 380ms ease-out, card-float 10s ease-in-out infinite;
}

.card-shell.is-impact .panel::before {
  position: absolute;
  inset: -1px;
  z-index: 2;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.72);
  opacity: 0;
  animation: impact-flash 420ms ease-out;
}

.card-shell.is-dragging .panel {
  animation-play-state: paused;
  border-color: var(--line-strong);
}

.panel::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.035), transparent);
  transform: translateX(-125%) skewX(-14deg);
  animation: scan-sheen 8s ease-in-out infinite;
}

.panel:hover {
  border-color: var(--line-strong);
  box-shadow:
    0 20px 78px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 30px rgba(255, 255, 255, 0.09);
}

.profile-card {
  min-height: 286px;
}

.bio-card {
  min-height: 366px;
}

.presence-card {
  min-height: 210px;
}

.roblox-card {
  min-height: 218px;
}

.servers-card {
  min-height: 292px;
}

.lastfm-card {
  min-height: 156px;
}

.terminal-bar {
  display: flex;
  align-items: center;
  min-height: 34px;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding: 0 12px;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  cursor: grab;
  user-select: none;
}

.card-shell.is-dragging .terminal-bar {
  cursor: grabbing;
}

.term-dots {
  display: flex;
  gap: 6px;
}

.term-dots span {
  width: 6px;
  height: 6px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
}

.term-title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.term-state {
  color: rgba(255, 255, 255, 0.7);
}

.terminal-body {
  padding: 22px;
}

.prompt {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.78rem;
}

.prompt span {
  color: #fff;
}

h1,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 700;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.12);
}

.tagline {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.icon-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.018);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.icon-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.icon-link::after {
  position: absolute;
  left: 50%;
  bottom: -20px;
  content: attr(data-tip);
  color: var(--muted);
  font-size: 0.56rem;
  opacity: 0;
  transform: translate(-50%, 3px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.icon-link:hover,
.icon-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  outline: none;
  transform: translateY(-2px);
}

.icon-link:hover::after,
.icon-link:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.audio-line {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  width: 100%;
  border: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  padding: 12px 0 0;
  overflow: hidden;
  color: var(--muted);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.audio-line strong {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audio-line i {
  grid-column: 1 / -1;
  width: 0%;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
  transition: width 120ms linear;
}

.audio-line:hover strong,
.audio-line:focus-visible strong {
  color: #fff;
}

.audio-line:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.38);
  outline-offset: 4px;
}

.bio-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.72;
}

.bio-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.bio-lines span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.36), transparent);
}

.bio-lines span:nth-child(2) {
  width: 76%;
  opacity: 0.55;
}

.bio-lines span:nth-child(3) {
  width: 52%;
  opacity: 0.35;
}

.matrix-location,
.matrix-extra {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
}

.matrix-location {
  margin-top: 30px;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  padding-top: 14px;
}

.matrix-extra {
  margin-top: 9px;
  opacity: 0.86;
}

.matrix-location strong,
.matrix-extra strong {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.28);
}

.text-mark {
  position: relative;
  display: inline;
  color: #fff;
  isolation: isolate;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.34);
}

.text-mark::after {
  position: absolute;
  left: 50%;
  top: -0.75em;
  z-index: -1;
  content: "<3  <3";
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.64em;
  letter-spacing: 3px;
  white-space: nowrap;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.28));
  transform: translateX(-50%);
  animation: mark-hearts 1.65s ease-in-out infinite;
}

.heart-pop {
  position: fixed;
  z-index: 9;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.34);
  animation: heart-pop 1150ms ease-out forwards;
}

.presence-dot {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: transparent;
}

.presence-dot.online {
  background: rgba(255, 255, 255, 0.84);
}

.presence-dot.idle {
  background: rgba(255, 255, 255, 0.52);
}

.presence-dot.dnd {
  background: rgba(255, 255, 255, 0.2);
}

.presence-user {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.presence-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.025);
  font-weight: 700;
}

.presence-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.presence-name {
  margin-bottom: 5px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.presence-status {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: lowercase;
}

.presence-activity {
  min-height: 48px;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.6;
}

.lastfm-track {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.lastfm-cover {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.025);
  font-weight: 700;
}

.lastfm-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.lastfm-title {
  margin-bottom: 5px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lastfm-artist {
  margin-bottom: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lastfm-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  padding-top: 10px;
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.lastfm-meta a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.lastfm-meta a:hover,
.lastfm-meta a:focus-visible {
  color: #fff;
  outline: none;
}

.roblox-user {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.roblox-avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.025);
  font-weight: 700;
}

.roblox-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.roblox-display {
  margin-bottom: 5px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.roblox-name {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.roblox-stats {
  display: grid;
  gap: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  padding-top: 12px;
}

.roblox-stats p {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 10px;
  margin: 0;
}

.roblox-stats span {
  color: var(--muted);
}

.roblox-stats strong {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.server-list {
  display: grid;
  gap: 12px;
}

.server-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) minmax(86px, auto);
  gap: 12px;
  align-items: center;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
  padding-top: 12px;
}

.server-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.server-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.025);
  font-weight: 700;
}

.server-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.server-meta {
  min-width: 0;
}

.server-name {
  margin-bottom: 5px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.server-desc {
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.74rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.server-counts {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: right;
}

.server-counts strong {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

@keyframes card-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}

@keyframes grain-shift {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-1%, 1%);
  }
  100% {
    transform: translate(1%, -1%);
  }
}

@keyframes scan-sheen {
  0%,
  50% {
    transform: translateX(-125%) skewX(-14deg);
  }
  70%,
  100% {
    transform: translateX(150%) skewX(-14deg);
  }
}

@keyframes cursor {
  50% {
    opacity: 0;
  }
}

@keyframes loader-ascii-flash {
  0%,
  39% {
    opacity: 0.72;
    filter: contrast(1.15);
  }
  40%,
  68% {
    opacity: 0.18;
    filter: contrast(1.8);
  }
  69%,
  100% {
    opacity: 0.55;
    filter: contrast(1.05);
  }
}

@keyframes card-impact {
  0% {
    transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) scale(1);
  }
  38% {
    transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) scale(1.018);
  }
  100% {
    transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) scale(1);
  }
}

@keyframes impact-flash {
  0% {
    opacity: 0.62;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.06);
  }
}

@keyframes mark-hearts {
  0%,
  100% {
    opacity: 0.36;
    transform: translate(-50%, 2px) scale(0.96);
  }
  50% {
    opacity: 0.9;
    transform: translate(-50%, -4px) scale(1.06);
  }
}

@keyframes heart-pop {
  0% {
    opacity: 0;
    transform: translate3d(0, 5px, 0) scale(0.6) rotate(0deg);
  }
  20% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--heart-x), -34px, 0) scale(1.35) rotate(var(--heart-r));
  }
}

@media (max-width: 760px) {
  html,
  body {
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .page-shell {
    position: relative;
    inset: auto;
    min-height: 100vh;
    width: 100%;
    padding: 34px 14px 42px;
    perspective: none;
  }

  .card-shell {
    position: static;
    left: auto;
    top: auto;
    width: min(100%, 390px);
    margin: 0 auto 16px;
    transform: none !important;
    touch-action: auto;
    will-change: auto;
  }

  .profile-card,
  .bio-card,
  .presence-card,
  .roblox-card,
  .servers-card,
  .lastfm-card {
    min-height: auto;
  }

  .panel {
    transform: none !important;
    animation: none !important;
  }

  .terminal-bar {
    cursor: default;
  }

}

@media (max-width: 420px) {
  body {
    font-size: 13px;
  }

  .terminal-body {
    padding: 19px;
  }

  h1 {
    font-size: 1.82rem;
  }

  .social-row {
    gap: 8px;
  }

  .icon-link {
    width: 32px;
    height: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .drift,
  .panel {
    transform: none !important;
  }
}
