:root{
  color-scheme: dark;
  /* Deep navy, modern palette */
  --bg: #0a1626; /* page background (deep navy) */
  --surface: #11213a; /* section surfaces */
  --surface-2: #16294a; /* secondary surfaces */
  --surface-3: #1b3153; /* media/background accents */
  --card-bg: #132844; /* default card background, lighter than page bg */
  --card-bg-hover: #17304f; /* card background on hover/focus */
  --text: #f7fbff; /* high-contrast text */
  --muted: #cfe6ff; /* soft muted blue-tinted text */
  --subtle: #93b0ca;
  --line: rgba(255,255,255,0.09);
  --accent: #4da3ff;
  --accent-strong: #86c5ff;
  --success: #79d59a;
  --danger: #ff8d8d;
  --shadow: 0 20px 60px rgba(2,6,12,0.42);
  --shadow-soft: 0 8px 20px rgba(2,8,20,0.16);
  --radius: 10px;
  --radius-lg: 18px;
  --container: 1120px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body {
  margin: 0;
  background:
    radial-gradient(1100px 560px at 50% -8%, rgba(77, 163, 255, 0.08), transparent 62%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

/* Subtle blueprint-style grid texture, fading out quickly so it reads as texture, not noise */
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 58%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 58%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(77, 163, 255, 0.75);
  outline-offset: 3px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(8,20,38,0.94), rgba(13,32,54,0.88));
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  flex-shrink: 0;
  place-items: center;
  border: 1px solid rgba(77, 163, 255, 0.36);
  border-radius: var(--radius);
  background: rgba(77, 163, 255, 0.1);
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  padding: 10px 14px;
  text-decoration: none;
  font-size: 0.94rem;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.nav-links a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(77,163,255,0.16);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.nav-links a.is-active {
  background: rgba(77, 163, 255, 0.14);
  border-color: rgba(77, 163, 255, 0.26);
  color: var(--accent-strong);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.nav-toggle span[aria-hidden="true"] {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.section {
  position: relative;
  padding: 104px 0;
}

/* offset anchors so sticky header doesn't cover section headings */
.section {
  scroll-margin-top: 96px;
  transition: background-color 260ms ease, border-color 260ms ease, padding 200ms ease;
}

.section-muted {
  border-block: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.022) 14%, rgba(255,255,255,0.022) 86%, rgba(255,255,255,0.05));
}

.hero {
  padding-top: 96px;
}

.hero-grid,
.split-layout,
.contact-layout,
.project-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 64px;
  align-items: center;
}

.hero-grid {
  align-items: start;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 900px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.08rem;
}

#skills-title {
  font-size: clamp(1.7rem, 3vw, 2.85rem);
}

.headline {
  margin: 18px 0 0;
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.hero-summary,
.prose p,
.detail-block p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-summary {
  max-width: 720px;
  margin: 16px 0 0;
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, opacity 160ms ease;
}

.button img {
  width: 18px;
  height: 18px;
  display: block;
}

/* the GitHub mark is light-on-dark by default; invert it for the light accent button */
.button-primary img {
  filter: invert(1);
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #06111f;
  box-shadow: 0 10px 28px rgba(77, 163, 255, 0.22);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-ghost {
  border-color: transparent;
  color: var(--muted);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

/* Plain social icons: no box/border, just the mark itself with a generous
   invisible hit area (padding) so the clickable target still meets a11y size. */
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  padding: 6px;
  border-radius: var(--radius);
  opacity: 0.82;
  transition: transform 160ms ease, opacity 160ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-2px);
  opacity: 1;
}

.icon-button img {
  width: 26px;
  height: 26px;
  display: block;
}

.resume-note {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 600;
}

.resume-note .text-link {
  font-weight: 800;
}

.identity-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)), var(--card-bg);
  box-shadow: var(--shadow);
  padding: 20px;
}

.avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center 35%;
  background: var(--surface-2);
  border: 2px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 30px rgba(2,8,20,0.45);
}

.identity-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.identity-list div {
  display: grid;
  gap: 2px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.identity-list dt,
.project-meta,
.timeline-period {
  color: var(--subtle);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.identity-list dd {
  margin: 0;
  color: var(--text);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 64px;
}

.stat-card,
.skill-card,
.project-card,
.timeline-item,
.learning-card,
.detail-block,
.about-highlights article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
}

.stat-card,
.about-highlights article,
.skill-card,
.learning-card {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.stat-card:hover,
.about-highlights article:hover,
.skill-card:hover,
.learning-card:hover {
  border-color: rgba(77, 163, 255, 0.24);
  background: var(--card-bg-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(3,8,20,0.3);
}

.stat-card {
  padding: 28px;
}

.stat-card strong {
  display: block;
  color: var(--text);
  font-size: 2.12rem;
  line-height: 1;
  letter-spacing: -0.01em;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.split-layout {
  align-items: start;
}

.about-stack {
  display: grid;
  gap: 28px;
  /* heading stays above content on every screen size */
  grid-template-columns: 1fr;
}

.prose {
  display: grid;
  gap: 20px;
  max-width: 820px;
}

.prose p {
  margin: 0;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-highlights span {
  display: block;
  color: var(--accent-strong);
  font-weight: 800;
}

.about-highlights p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  color: var(--accent-strong);
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.back-link span {
  display: inline-block;
  transition: transform 160ms ease;
}

.back-link:hover span {
  transform: translateX(-3px);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.skill-card,
.timeline-item,
.learning-card,
.detail-block,
.about-highlights article {
  padding: 24px;
}

.skill-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.skill-icon {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(77, 163, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(77, 163, 255, 0.12);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 850;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag,
.status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 999px;
  color: var(--text);
  padding: 4px 10px;
  font-size: 0.82rem;
  font-weight: 650;
}

.status {
  border-color: rgba(121, 213, 154, 0.3);
  color: var(--success);
}

.tag-icon {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  flex-shrink: 0;
  /* Brand marks carry their own fill; this is only a fallback for icons
     with no official color (e.g. the generic cloud glyph). */
  color: var(--accent-strong);
  fill: currentColor;
  opacity: 0.9;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.project-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.project-card:hover {
  border-color: rgba(77, 163, 255, 0.26);
  background: var(--card-bg-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(3,8,20,0.32);
}

.project-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-gallery-hero {
  position: relative;
  border-radius: var(--radius);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(10, 22, 38, 0.65);
  backdrop-filter: blur(4px);
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease;
}

.gallery-arrow:hover {
  border-color: rgba(77, 163, 255, 0.4);
  background: rgba(77, 163, 255, 0.24);
}

.gallery-arrow[hidden] {
  display: none;
}

.gallery-arrow-prev {
  left: 12px;
}

.gallery-arrow-next {
  right: 12px;
}

.project-thumb-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.project-thumb {
  width: 140px;
  height: 80px;
  object-fit: contain; /* screenshots stay fully visible, never cropped */
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--surface-3);
  padding: 4px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.project-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(2,8,20,0.32);
  border-color: rgba(77, 163, 255, 0.3);
}

.project-thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.18);
}

.project-media {
  display: block;
  height: 220px; /* unified image height across every card */
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface-3);
  text-decoration: none;
}

.project-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* center important content */
  background: var(--surface-3);
  transition: transform 260ms ease, filter 260ms ease;
}

/* applied via JS when an image's aspect ratio is too extreme for a clean crop */
.project-shot.fit-contain {
  object-fit: contain;
  padding: 14px;
}

.project-card:hover .project-shot {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.03);
}

.project-card:hover .project-shot.fit-contain {
  transform: scale(1.015);
}

.project-shot.large {
  height: auto;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface-3);
  object-fit: contain; /* full screenshot, never cropped */
  padding: 12px;
  transition: opacity 200ms ease;
}

.project-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.project-card-body p {
  margin: 0;
  color: var(--muted);
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.card-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item p {
  color: var(--muted);
}

.timeline-subtitle {
  margin: 8px 0 10px;
  color: var(--text);
  font-weight: 700;
}

.clean-list,
.detail-block ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.learning-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.learning-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.learning-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent-strong);
  fill: currentColor;
  opacity: 0.9;
}

.section-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-layout {
  display: block;
  max-width: 640px;
}

.connect-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.connect-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.connect-item:hover {
  transform: translateY(-2px);
  border-color: rgba(77,163,255,0.24);
  background: var(--card-bg-hover);
}

.connect-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.connect-label {
  font-weight: 700;
  color: var(--text);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--muted);
  padding: 28px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: var(--muted);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--text);
}

.project-detail {
  min-height: 70vh;
}

.project-hero {
  padding-top: 80px;
}

.project-detail-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 640px);
}

/* smaller, more proportionate headline on project detail pages so long names
   don't wrap awkwardly and the screenshot gallery reads as the focal point */
[data-project-name] {
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
}

.detail-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.detail-block h2 {
  font-size: 1.3rem;
}

.load-error {
  margin: 120px auto 0;
  width: min(100% - 40px, var(--container));
  color: var(--accent-strong);
}

@media (max-width: 980px) {
  .section {
    padding: 84px 0;
  }

  .hero {
    padding-top: 84px;
  }

  .hero-grid,
  .split-layout,
  .contact-layout,
  .project-detail-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .identity-panel {
    max-width: 420px;
  }

  .stats-grid {
    margin-top: 48px;
  }

  .stats-grid,
  .skills-grid,
  .project-grid,
  .learning-grid,
  .about-highlights,
  .detail-sections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-media {
    height: 230px;
  }

  .section-heading {
    margin-bottom: 30px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links a {
    padding: 13px 16px;
  }

  .nav-links.visible,
  .nav-links.is-open {
    display: flex;
    animation: nav-menu-in 180ms ease;
  }

  @keyframes nav-menu-in {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .section,
  .hero {
    padding: 72px 0;
  }

  .hero-grid,
  .split-layout,
  .contact-layout,
  .project-detail-grid {
    gap: 36px;
  }

  .card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .card-actions .button {
    width: 100%;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .icon-button {
    padding: 9px;
  }

  .stats-grid,
  .skills-grid,
  .project-grid,
  .learning-grid,
  .about-highlights,
  .detail-sections {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    margin-top: 40px;
  }

  .project-media {
    height: 220px;
  }

  .heading-row {
    align-items: start;
    flex-direction: column;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  /* comfortably fill narrow screens without the desktop headline scale wrapping awkwardly */
  h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  h2 {
    font-size: clamp(1.5rem, 7.5vw, 2.1rem);
  }

  [data-project-name] {
    font-size: clamp(1.65rem, 9vw, 2.1rem);
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading.compact {
    margin-bottom: 18px;
  }

  .about-stack {
    gap: 22px;
  }

  /* tighter card padding on phones, still well above the 44px touch-target minimum */
  .stat-card {
    padding: 22px;
  }

  .skill-card,
  .timeline-item,
  .learning-card,
  .detail-block,
  .about-highlights article {
    padding: 20px;
  }

  .project-card-body {
    padding: 20px;
  }

  .gallery-arrow {
    width: 44px;
    height: 44px;
  }
}

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