@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url(fonts/jetbrains-mono-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Cosmic palette from the GitHub profile cards */
:root {
  --space: #090f19; --tile: #111c29; --line: #42677a; --teal: #3f6d7d;
  --text: #eef7f8; --text-2: #d4e5eb; --muted: #8cabb9;
  --accent: #6d9eb4; --accent-2: #9fc9dc; --caret: #83c5d4; --ice: #d2edf1;
  --mono: 'JetBrains Mono', 'Fira Code', Consolas, 'Courier New', monospace;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  color-scheme: dark;
}

* { box-sizing: border-box; }
/* No visible scrollbar, scrolling itself still works */
html { scroll-behavior: smooth; background: var(--space); scrollbar-width: none; }
html::-webkit-scrollbar, body::-webkit-scrollbar { display: none; }
body {
  margin: 0; min-height: 100vh;
  background: var(--space); color: var(--text);
  font: 15.5px/1.65 var(--mono);
  -webkit-font-smoothing: antialiased;
  display: flex; flex-direction: column;
}
::selection { background: rgba(109,158,180,.4); }
/* Text for screen readers only */
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
/* Text can't be selected or copied, except the nick and contact handles (.copyable) */
body { -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; }
.copyable, .copyable * { -webkit-user-select: text; user-select: text; }

a { color: var(--accent-2); text-underline-offset: 3px; text-decoration-color: rgba(159,201,220,.4); }
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 6px; }

#space { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; }
.top, main, .foot { position: relative; z-index: 1; }
main { flex: 1; }

.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }

@keyframes blink { 50% { opacity: 0; } }
.caret { color: var(--caret); -webkit-text-fill-color: var(--caret); font-weight: 700; animation: blink 1s steps(1) infinite; }

.gradient, .brand, h1, h2, .card h3 {
  background: linear-gradient(90deg, var(--text), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Header: a transparent bar at the top of the page that turns into a floating glass pill
   once the page is scrolled, same motion as deepseek.com/harness: the width follows a
   critically damped spring (~0.8s), the glass fades in over 0.4s, extras blur in from the left */
:root { --spring: cubic-bezier(.3, .9, .3, 1); }
@supports (transition-timing-function: linear(0, 1)) {
  :root { --spring: linear(0, 0.04, 0.13, 0.241, 0.355, 0.463, 0.559, 0.642, 0.713, 0.771, 0.819, 0.857, 0.888, 0.913, 0.932, 0.948, 0.96, 0.969, 0.976, 0.982, 0.986, 0.989, 0.992, 0.994, 0.995, 0.996, 0.997, 0.998, 0.998, 0.999, 0.999, 0.999, 1); }
}
.top { position: sticky; top: 0; z-index: 10; padding: 8px 0; pointer-events: none; }
.top-bar {
  pointer-events: auto; position: relative; display: flex; align-items: center;
  width: calc(100% - 48px); max-width: 1072px; height: 48px; margin: 0 auto; padding: 0;
  border-radius: 999px;
  transition: max-width .8s var(--spring), padding .8s var(--spring);
}
.top-bar::before {
  content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit; pointer-events: none;
  background: rgba(17,28,41,.72); border: 1px solid rgba(66,103,122,.75);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 12px 32px -14px rgba(0,0,0,.85);
  opacity: 0; visibility: hidden; transition: opacity .4s ease-in-out, visibility .4s;
}
.top-bar.is-scrolled { max-width: 960px; padding: 0 7px 0 20px; }
.top-bar.is-scrolled::before { opacity: 1; visibility: visible; transition: opacity .4s ease-in-out, visibility 0s; }
.top-left, .top-right { flex: 1 1 0; min-width: 0; display: flex; align-items: center; }
.top-right { justify-content: flex-end; }
.brand { font: 700 18px/1 var(--mono); letter-spacing: 1.5px; text-decoration: none; white-space: nowrap; }
.nav { flex: none; display: flex; gap: 28px; }
.nav a { font-size: 13.5px; color: var(--muted); text-decoration: none; transition: color .2s ease; }
@media (hover: hover) and (pointer: fine) { .nav a:hover { color: var(--text); } }

/* Chip and button that only show up in the pill: they open with a wipe on the same spring
   and blur in from the left. The wipe is a clip-path whose end state lies outside the
   element, so at rest nothing is cut off whatever the font metrics are */
.reveal { display: inline-flex; }
.reveal-in {
  display: inline-flex; align-items: center;
  opacity: 0; filter: blur(3px); transform: translateX(-6px); visibility: hidden;
  clip-path: inset(-12px 100% -12px -12px round 999px);
  transition: opacity .2s ease, filter .2s ease, transform .2s ease, clip-path .4s var(--ease-out), visibility 0s .2s;
}
/* The button sits at the right edge, so it wipes in from the right and slides in leftwards */
.top-right .reveal-in { transform: translateX(6px); clip-path: inset(-12px -12px -12px 100% round 999px); }
.is-scrolled .reveal-in {
  opacity: 1; filter: blur(0); transform: none; visibility: visible;
  clip-path: inset(-12px -12px -12px -12px round 999px);
  transition: opacity .35s var(--ease-out), filter .35s var(--ease-out), transform .35s var(--ease-out), clip-path .8s var(--spring), visibility 0s;
}
.bar-chip {
  margin-left: 12px; display: inline-flex; padding: 1px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(210,237,241,.55) 0%, rgba(131,197,212,.18) 38%, rgba(131,197,212,.06) 68%, rgba(210,237,241,.28) 100%);
}
.bar-chip span {
  padding: 5px 11px 4px; border-radius: 999px; white-space: nowrap;
  font: 500 11px/1 var(--mono); color: rgba(225,240,245,.9); background: rgba(37,66,81,.6);
}
.reveal-in .btn { margin-left: 16px; padding: 9px 18px; border-radius: 999px; white-space: nowrap; box-shadow: 0 0 0 1px rgba(210,237,241,.25), 0 4px 14px -6px rgba(109,158,180,.8); }
@media (max-width: 1023px) { .reveal-chip { display: none; } }
/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 12px;
  font: 600 14.5px/1.2 var(--mono); color: var(--text); text-decoration: none; text-align: center;
  background: rgba(17,28,41,.82); border: 1px solid var(--line);
  transition: transform 160ms var(--ease-out), background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:active { transform: scale(.97); }
.btn-sm { padding: 9px 15px; font-size: 13px; border-radius: 10px; }
.btn-primary {
  color: var(--space); border-color: transparent;
  background: linear-gradient(135deg, var(--text), var(--accent-2));
  box-shadow: 0 0 0 1px rgba(210,237,241,.25), 0 10px 32px -10px rgba(109,158,180,.8);
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover { background-color: #162536; border-color: var(--accent-2); }
  .btn-primary:hover { box-shadow: 0 0 0 1px rgba(210,237,241,.45), 0 12px 40px -8px rgba(131,197,212,.9); }
}

/* Hero */
.hero { min-height: calc(100svh - 64px); display: flex; align-items: center; padding-top: 48px; padding-bottom: 72px; }
.hero-text { max-width: 640px; text-shadow: 0 2px 18px rgba(9,15,25,.9); }
.kicker { margin: 0 0 10px; font-size: 13.5px; font-weight: 500; color: var(--caret); }
h1 {
  margin: 0; font: 700 clamp(46px, 9vw, 100px)/1.05 var(--mono); letter-spacing: 3px;
  text-shadow: none; filter: drop-shadow(0 4px 24px rgba(9,15,25,.8));
}
.typed { position: relative; height: 30px; margin-top: 18px; font: 500 clamp(15px, 1.9vw, 20px)/30px var(--mono); color: var(--text-2); }
.tl { position: absolute; left: 0; top: 0; white-space: nowrap; animation: type 16s linear infinite both; }
.t2 { animation-delay: 4s; }
.t3 { animation-delay: 8s; }
.t4 { animation-delay: 12s; }
/* Same timing as the typed lines in the profile header */
@keyframes type {
  0%   { clip-path: inset(0 100% 0 0); }
  9%   { clip-path: inset(0 0 0 0); }
  19%  { clip-path: inset(0 0 0 0); }
  24%  { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 100% 0 0); }
}
.lead { margin: 26px 0 0; max-width: 560px; font-size: 16px; line-height: 1.7; color: var(--text-2); text-wrap: pretty; }
.lead b { color: var(--text); }
.lost h1 { font-size: clamp(34px, 6vw, 64px); letter-spacing: 0; }  /* 404 page: a sentence, not a name */
/* VEYLO in the intro stays white; on hover an underline in the heading gradient draws in from the left */
.lead-link {
  color: var(--text); font-weight: 700; text-decoration: none; padding-bottom: 2px;
  background: linear-gradient(90deg, var(--text), var(--accent-2)) no-repeat 0 100% / 0 1.5px;
  transition: background-size .35s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) { .lead-link:hover { background-size: 100% 1.5px; } }
.lead-link:focus-visible { background-size: 100% 1.5px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; text-shadow: none; }

/* Sections */
.section { padding-top: 64px; padding-bottom: 64px; scroll-margin-top: 64px; }
.sec-head { margin-bottom: 28px; }
h2 { margin: 0; font: 700 clamp(26px, 3.4vw, 38px)/1.15 var(--mono); letter-spacing: -.4px; text-wrap: balance; }

.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Cards: gradient, glow, star dots and bottom stripe like the profile cards.
   The glow position (--gx/--gy) follows the cursor, see glow.js */
.card {
  position: relative; overflow: hidden; border-radius: 16px; padding: 24px;
  border: 1px solid rgba(66,103,122,.75);
  background:
    radial-gradient(360px 220px at var(--gx, 14%) var(--gy, 0%), rgba(109,158,180,.2), transparent 72%),
    linear-gradient(135deg, rgba(9,15,25,.9), rgba(30,52,70,.8) 55%, rgba(17,27,39,.9));
  box-shadow: 0 16px 40px -20px rgba(0,0,0,.9);
}
.card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 6px 8px, rgba(238,247,248,.22) .85px, transparent 1.3px),
    radial-gradient(circle at 24px 22px, rgba(159,201,220,.24) .6px, transparent 1.1px),
    radial-gradient(circle at 30px 4px, rgba(238,247,248,.18) .45px, transparent .9px);
  background-size: 32px 32px;
}
.card::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--accent); opacity: .6; pointer-events: none; }
.card > * { position: relative; }
.card h3 { margin: 0; font: 700 21px/1.3 var(--mono); }
.card p { margin: 12px 0 0; font-size: 15px; line-height: 1.6; color: var(--text-2); text-wrap: pretty; }

/* Stack tiles, as in stack.svg */
.stack { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(10, 1fr); gap: 14px; }
.stack li { display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 0; }
.tile {
  width: 100%; max-width: 88px; aspect-ratio: 1; display: grid; place-items: center;
  border-radius: 18px; background: var(--tile); border: 2px solid var(--line);
  transition: transform 200ms var(--ease-out), border-color .2s ease;
}
.tile svg { width: 50%; height: 50%; }
.lbl { font-size: 13.5px; color: var(--muted); }
@media (hover: hover) and (pointer: fine) { .stack li:hover .tile { transform: translateY(-3px); border-color: var(--accent-2); } }

/* Projects */
.project { display: flex; flex-direction: column; }
.project p { flex: 1; }
.meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px 16px; margin-top: 22px; font-size: 13.5px; }
.lang { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); }
.lang i { width: 12px; height: 12px; border-radius: 50%; }
.lang i.py { background: #3776AB; }
.lang i.js { background: #F7DF1E; }
.defs { position: absolute; }
.meta a { text-decoration: none; }
@media (hover: hover) and (pointer: fine) { .meta a:hover { text-decoration: underline; } }

/* Activity cards come ready-made from the profile workflow */
.activity { display: grid; gap: 16px; }
.activity img { display: block; width: 100%; height: auto; border-radius: 16px; }
/* glow.js cuts the drifting glow out of these SVGs and draws the same one here, so it can
   follow the cursor; same gradient as the SVG's radialGradient */
.shot { position: relative; border-radius: 16px; overflow: hidden; }
.shot picture { display: block; }
.shot-glow {
  position: absolute; left: 0; top: 0; pointer-events: none; will-change: transform;
  background: radial-gradient(closest-side, rgba(109,158,180,.45), rgba(109,158,180,0));
  mix-blend-mode: screen;
}

/* Spotify playlist */
.music { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr); gap: 32px; align-items: center; padding: 28px; }
.music-text p:not(.kicker) { color: var(--text-2); }
.pill {
  display: inline-block; margin-top: 20px; padding: 8px 14px; border-radius: 999px; text-decoration: none;
  font-size: 13px; font-weight: 500; color: var(--text-2);
  background: rgba(9,15,25,.55); border: 1px solid rgba(66,103,122,.8);
  transition: transform 160ms var(--ease-out), border-color .2s ease, color .2s ease;
}
.pill:active { transform: scale(.97); }
@media (hover: hover) and (pointer: fine) { .pill:hover { border-color: var(--accent-2); color: var(--text); } }
/* Spotify switches to the compact layout below 352px, so the iframe gets the full height */
.player {
  position: relative; border-radius: 13px; overflow: hidden;
  background: #132030; border: 1px solid rgba(66,103,122,.6);
  box-shadow: 0 0 0 4px rgba(9,15,25,.45), 0 18px 44px -18px rgba(109,158,180,.45);
}
.player iframe { display: block; width: 100%; height: 352px; border: 0; }
/* The embed is a cross-origin iframe, so its own colors can't be changed. Two layers over it
   tint what it renders instead: a backdrop filter turns it teal-blue and a lighten layer lifts
   Spotify's black to the card color; clicks pass through. The cover art is cut out of both, so
   it keeps its real colors. Hole = the embed's cover box: 152px at 24px, or 112px at 16px when
   the embed is narrower than 510px (its own breakpoint) */
.player { container-type: inline-size; }
.tint {
  --hole-lg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='152' height='152'%3E%3Crect width='152' height='152' rx='12'/%3E%3C/svg%3E");
  --hole-sm: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='112' height='112'%3E%3Crect width='112' height='112' rx='12'/%3E%3C/svg%3E");
  position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  -webkit-mask: linear-gradient(#000 0 0), var(--hole-lg) no-repeat 24px 24px / 152px 152px;
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0), var(--hole-lg) no-repeat 24px 24px / 152px 152px;
  mask-composite: exclude;
}
@container (max-width: 509px) {
  .tint {
    -webkit-mask: linear-gradient(#000 0 0), var(--hole-sm) no-repeat 16px 16px / 112px 112px;
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0), var(--hole-sm) no-repeat 16px 16px / 112px 112px;
    mask-composite: exclude;
  }
}
.tint-filter { -webkit-backdrop-filter: sepia(1) hue-rotate(172deg) saturate(1.7); backdrop-filter: sepia(1) hue-rotate(172deg) saturate(1.7); }
.tint-lift { background: #132030; mix-blend-mode: lighten; }

/* Contact */
.contact { text-align: center; padding: 52px 24px; background:
    radial-gradient(520px 260px at var(--gx, 50%) var(--gy, 0%), rgba(109,158,180,.28), transparent 72%),
    linear-gradient(135deg, rgba(9,15,25,.9), rgba(30,52,70,.82) 55%, rgba(17,27,39,.9)); }
.contact h2 { font-size: clamp(30px, 5vw, 52px); letter-spacing: 1px; }
.contact p:not(.kicker) { margin: 14px auto 0; color: var(--text-2); font-size: 16px; }
.contact .actions { justify-content: center; margin-top: 28px; }

/* Footer */
.foot {
  margin-top: 24px; border-top: 1px solid rgba(66,103,122,.4); background: rgba(9,15,25,.7);
  font-size: 12.5px; color: var(--muted);
}
.foot-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding-top: 22px; padding-bottom: calc(22px + env(safe-area-inset-bottom)); }

/* Now playing: a floating mini player in the bottom-left corner (player.js). Same glass as the
   header pill; the footer gets extra room at the bottom so the widget never covers it */
.foot { padding-bottom: 84px; }
.np {
  position: fixed; left: 20px; bottom: 20px; z-index: 20;
  display: flex; align-items: center; gap: 14px; width: 344px; padding: 8px 12px 8px 8px;
  border-radius: 16px; border: 1px solid rgba(66,103,122,.75); background: rgba(17,28,41,.72);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 16px 40px -18px rgba(0,0,0,.9);
  overflow: hidden;
  animation: np-in .5s var(--ease-out) .6s both;
}
@keyframes np-in { from { opacity: 0; transform: translateY(12px); filter: blur(4px); } }
.np-cover {
  position: relative; flex: none; width: 56px; height: 56px; padding: 0; border: 0; border-radius: 10px;
  overflow: hidden; cursor: pointer; background: var(--tile); transition: transform 160ms var(--ease-out);
}
.np-cover:active { transform: scale(.96); }
.np-cover img, .np-meta { transition: opacity .2s ease, filter .2s ease; }
.np-cover img { display: block; width: 100%; height: 100%; object-fit: cover; }
.np.is-switching .np-cover img, .np.is-switching .np-meta { opacity: 0; filter: blur(3px); }
.np-icon {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(9,15,25,.5); color: var(--text); transition: opacity .2s ease;
}
.np-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
/* The cover only toggles the sound: muted icon while silent; with sound on the icon hides and
   shows "sound on" on hover */
.np-icon .i-sound, .np.is-live .np-icon .i-muted { display: none; }
.np.is-live .np-icon .i-sound { display: block; }
.np.is-live .np-icon { opacity: 0; }
@media (hover: hover) and (pointer: fine) { .np.is-live .np-cover:hover .np-icon { opacity: 1; } }
.np-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.np-title {
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis; text-decoration: none;
  font: 600 14.5px/1.3 var(--mono);
  background: linear-gradient(90deg, var(--text), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.np-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.np-artist { display: flex; align-items: center; gap: 7px; font: 500 12.5px/1.3 var(--mono); color: var(--muted); }
.np-time { flex: none; font: 500 11.5px/1.3 var(--mono); color: var(--muted); font-variant-numeric: tabular-nums; }
/* Track progress along the bottom edge, like the stripe under the cards */
.np-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: rgba(66,103,122,.35); }
.np-progress i {
  display: block; height: 100%; transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.np-spotify { display: inline-flex; padding: 5.5px; margin: -5.5px; color: var(--muted); transition: color .2s ease; }  /* 24px tap target around a 13px icon */
.np-spotify svg { width: 13px; height: 13px; fill: currentColor; }
@media (hover: hover) and (pointer: fine) { .np-spotify:hover { color: var(--text); } }
.np-eq { flex: none; display: flex; align-items: flex-end; gap: 3px; height: 16px; }
.np-next {
  flex: none; display: grid; place-items: center; width: 28px; height: 28px; margin-left: -6px; padding: 0;
  border: 0; border-radius: 8px; background: transparent; color: var(--muted); cursor: pointer;
  transition: color .2s ease, background-color .2s ease, transform 160ms var(--ease-out);
}
.np-next svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.np-next:active { transform: scale(.92); }
@media (hover: hover) and (pointer: fine) { .np-next:hover { color: var(--text); background-color: rgba(66,103,122,.35); } }
.np-eq i {
  width: 3px; height: 16px; border-radius: 1.5px; background: var(--caret);
  transform: scaleY(.18); transform-origin: 50% 100%; transition: transform 90ms linear;
}
@media (max-width: 760px) {
  .np { left: 12px; right: 12px; bottom: 12px; width: auto; }
}

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stack { grid-template-columns: repeat(5, 1fr); row-gap: 20px; }
}
@media (max-width: 760px) {
  .wrap { padding: 0 16px; }
  .nav { display: none; }
  .top-bar { width: calc(100% - 32px); }
  .top-bar.is-scrolled { padding: 0 6px 0 16px; }
  /* The black hole sits in the top of the screen on phones, text starts below it */
  .hero { min-height: 0; align-items: flex-start; padding-top: 29svh; padding-bottom: 40px; }
  .actions .btn { flex: 1 1 100%; }
  .grid-3 { grid-template-columns: 1fr; }
  .section { padding-top: 44px; padding-bottom: 44px; }
  .card { padding: 20px; }
  .stack { gap: 10px; row-gap: 16px; }
  .tile { border-radius: 14px; }
  .lbl { font-size: 12px; }
  .music { grid-template-columns: 1fr; gap: 22px; padding: 20px; }
  .contact { padding: 40px 20px; }
  .foot-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .top-bar { transition: none; }
  .reveal-in, .is-scrolled .reveal-in { clip-path: none; }
  .caret { animation: none; }
  .tl { animation: none; clip-path: none; }
  .t2, .t3, .t4 { display: none; }
  .np { animation: none; }
}
