/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ===== CSS VARIABLES ===== */
:root {
  /* Light Mode */
  --bg-primary: #f5f5f0;
  --bg-secondary: #eaeae5;
  --bg-card: #ffffff;
  --bg-card-hover: #fafaf8;
  --bg-terminal: #fafaf8;
  --bg-terminal-bar: #e8e8e3;

  --text-primary: #1a1a2e;
  --text-secondary: #4a4a5a;
  --text-muted: #7a7a8a;

  --accent: #059669;
  --accent-dim: #047857;
  --accent-glow: rgba(5, 150, 105, 0.35);
  --accent-subtle: rgba(5, 150, 105, 0.08);

  --border-color: rgba(0, 0, 0, 0.1);
  --border-hover: rgba(5, 150, 105, 0.3);

  --dot-red: #ff5f57;
  --dot-yellow: #febc2e;
  --dot-green: #059669;

  --code-key: #0284c7;
  --code-string: #047857;
  --code-accent: #059669;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
}

body.dark-mode {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --bg-terminal: #0d0d0d;
  --bg-terminal-bar: #1a1a1a;

  --text-primary: #e5e5e5;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;

  --accent: #34d399;
  --accent-dim: #059669;
  --accent-glow: rgba(52, 211, 153, 0.25);
  --accent-subtle: rgba(52, 211, 153, 0.06);

  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(52, 211, 153, 0.3);

  --code-key: #7dd3fc;
  --code-string: #34d399;
  --code-accent: #34d399;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* ===== BODY ===== */
body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 8px 16px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--accent);
  color: #000;
  z-index: 10000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== SCROLL PROGRESS BAR (top) ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bg-primary);
  z-index: 1001;
}

.scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  box-shadow: 0 0 8px var(--accent-glow);
  transition: width 0.05s linear;
}

/* ===== SIDE PROGRESS BAR ===== */
.side-progress {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 120px;
  background: var(--border-color);
  border-radius: 999px;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.side-progress.visible {
  opacity: 1;
}

.side-progress-fill {
  width: 100%;
  height: 0%;
  background: var(--accent);
  border-radius: 999px;
  transition: height 0.05s linear;
  box-shadow: 0 0 6px var(--accent-glow);
}

/* ===== SCROLL HINT ===== */
.scroll-hint {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 998;
  opacity: 0.6;
  transition: opacity 0.4s ease;
  text-decoration: none;
  cursor: pointer;
}

.scroll-hint:hover {
  opacity: 1;
}

.scroll-hint.hidden {
  opacity: 0;
}

.scroll-hint span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-hint svg {
  color: var(--text-primary);
  animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Make header background semi-transparent for blur effect */
body.dark-mode header {
  background: rgba(10, 10, 10, 0.85);
}

header:not(body.dark-mode header) {
  background: rgba(245, 245, 240, 0.85);
}

header nav {
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
}

.logo {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color 0.2s;
}

.logo:hover {
  color: var(--accent);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  margin-left: auto;
}

nav a {
  text-decoration: none;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-mono);
  transition: color 0.2s, background-color 0.2s;
}

nav a:hover {
  color: var(--accent);
  background: var(--accent-subtle);
}

nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Theme Toggle */
.theme-toggle-btn {
  margin-left: 12px;
  padding: 8px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}

.theme-toggle-btn:hover {
  color: var(--accent);
  border-color: var(--border-hover);
  background: var(--accent-subtle);
}

.theme-toggle-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Show/hide sun/moon icons */
body.dark-mode .icon-sun { display: block; }
body.dark-mode .icon-moon { display: none; }
.icon-sun { display: none; }
.icon-moon { display: block; }

/* ===== SECTION COMMON ===== */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  margin-bottom: 48px;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.prompt {
  color: var(--accent);
  font-weight: 700;
  margin-right: 6px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

/* ===== TERMINAL WINDOW ===== */
.terminal-window {
  background: var(--bg-terminal);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-terminal-bar);
  border-bottom: 1px solid var(--border-color);
  user-select: none;
}

.terminal-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  position: relative;
}

.dot:hover {
  opacity: 0.8;
  transform: scale(1.15);
}

.dot:active {
  transform: scale(0.9);
}

.dot-red { background: var(--dot-red); }
.dot-yellow { background: var(--dot-yellow); }
.dot-green { background: var(--dot-green); }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
  margin-right: 52px; /* offset for dots */
}

.terminal-body {
  padding: 32px;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  width: 100%;
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-terminal {
  animation: fadeInUp 0.6s ease-out;
}

.hero-terminal:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.hero-profile {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.profile-image-wrap {
  position: relative;
  flex-shrink: 0;
}

.profile-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--accent-glow);
}

.status-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--dot-green);
  border-radius: 50%;
  border: 3px solid var(--bg-terminal);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(40, 200, 64, 0); }
}

.hero-text {
  min-width: 0;
}

.terminal-line {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.hero-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
  line-height: 1.2;
}

.hero-role {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.code-accent {
  color: var(--accent);
  font-weight: 700;
}

.cursor {
  display: inline-block;
  color: var(--accent);
  animation: blink 1s step-end infinite;
  font-weight: 700;
  margin-left: 2px;
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-location svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-bio {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

/* Open to Work badge */
.open-to-work {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  background: var(--accent-subtle);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.otw-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.hero-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dim);
  border-color: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-color);
}

.btn-outline:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-subtle);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 7px 14px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 0.95rem;
}

/* ===== PARTICLES ===== */
.particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
  padding: 100px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.project-card .terminal-bar {
  border-radius: 0;
}

.project-image-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 0.4s ease;
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-content {
  padding: 24px;
}

.project-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.project-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-subtle);
  color: var(--accent);
  border: 1px solid var(--border-color);
}

.project-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* CTA project card */
.project-card--cta {
  border-style: dashed;
}

.project-content--cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 260px;
}

.cta-icon {
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.6;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.about-terminal .terminal-body {
  padding: 24px;
}

.code-block {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
  white-space: pre-wrap;
  word-wrap: break-word;
}

.code-key { color: var(--code-key); }
.code-string { color: var(--code-string); }

.about-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: justify;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.2s;
}

.inline-link:hover {
  color: var(--accent-dim);
}

/* XP Bar - gaming easter egg */
.xp-bar-wrap {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.xp-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.xp-bar {
  flex: 1;
  height: 8px;
  background: var(--border-color);
  border-radius: 999px;
  overflow: hidden;
}

.xp-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  border-radius: 999px;
  transition: width 1.5s ease-out;
}

.xp-fill.animated {
  width: var(--xp-width);
}

.xp-value {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 0;
  text-align: center;
}

.contact-content {
  max-width: 480px;
  margin: 0 auto;
}

.contact-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border-color);
  padding: 32px 0;
  text-align: center;
}

.footer-text {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 8px;
}

footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.heart {
  color: var(--accent);
  display: inline-block;
  transition: transform 0.2s;
}

footer:hover .heart {
  transform: scale(1.2);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-subtle);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== KONAMI EASTER EGG ===== */
.konami-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.konami-overlay.active {
  opacity: 1;
  visibility: visible;
}

.konami-text {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 40px var(--accent-glow), 0 0 80px var(--accent-glow);
  animation: konamiPulse 0.6s ease-out;
}

@keyframes konamiPulse {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Terminal dot click animations */
.terminal-window.closing {
  animation: windowClose 0.4s ease-in forwards;
}

.terminal-window.minimizing {
  animation: windowMinimize 0.4s ease-in forwards;
}

.terminal-window.opening {
  animation: windowOpen 0.4s ease-out forwards;
}

@keyframes windowClose {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0); opacity: 0; }
}

@keyframes windowMinimize {
  0% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.01) translateY(20px); opacity: 0.5; }
}

@keyframes windowOpen {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .side-progress {
    display: none;
  }

  .scroll-hint {
    bottom: 24px;
  }

  header nav {
    padding: 0 16px;
    height: 56px;
  }

  .logo {
    font-size: 1rem;
  }

  nav ul {
    gap: 4px;
  }

  nav a {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .hero-section {
    padding: 80px 16px 60px;
  }

  .hero-profile {
    flex-direction: column;
    text-align: center;
  }

  .hero-name {
    font-size: 1.6rem;
  }

  .hero-location {
    justify-content: center;
  }

  .hero-bio {
    text-align: center;
  }

  .open-to-work {
    text-align: center;
    justify-content: center;
  }

  .hero-links {
    justify-content: center;
  }

  .terminal-body {
    padding: 24px 20px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .xp-bar-wrap {
    flex-wrap: wrap;
  }

  .projects-section,
  .about-section,
  .contact-section {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 0.9rem;
  }

  nav a {
    font-size: 0.75rem;
    padding: 5px 8px;
  }

  .hero-name {
    font-size: 1.4rem;
  }

  .hero-role {
    font-size: 0.85rem;
  }

  .profile-image {
    width: 80px;
    height: 80px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .code-block {
    font-size: 0.75rem;
  }

  .konami-text {
    font-size: 2rem;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .xp-fill {
    transition: none;
    width: var(--xp-width);
  }
}
