:root {
  --primary-color: #4b5563; /* Grau */
  --secondary-color: #6b7280; /* Mittelgrau */
  --accent-color: #9ca3af; /* Hellgrau */
  --text-color: #1a202c;
  --bg-color: #f9fafb;
  --card-bg: #ffffff;
  --border-color: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

  /* Dark mode variables */
  --dark-primary-color: #1e3a8a; /* Dunkles Blau */
  --dark-secondary-color: #0f172a; /* Sehr dunkles Blau */
  --dark-accent-color: #fbbf24; /* Leuchtendes Gelb */
  --dark-text-color: #f8fafc;
  --dark-bg-color: #0f172a;
  --dark-card-bg: #1e293b;
  --dark-border-color: #334155;
}

.dark-mode {
  --primary-color: var(--dark-primary-color);
  --secondary-color: var(--dark-secondary-color);
  --accent-color: var(--dark-accent-color);
  --text-color: var(--dark-text-color);
  --bg-color: var(--dark-bg-color);
  --card-bg: var(--dark-card-bg);
  --border-color: var(--dark-border-color);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--bg-color), var(--card-bg));
  color: var(--text-color);
  line-height: 1.6;
  padding: 0;
  margin: 0;
  transition: background-color 0.3s, color 0.3s;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.container {
  animation: subtle-rise 1s ease-out;
}

@keyframes subtle-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Background Effects */
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(30, 64, 175, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 64, 175, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.08;
  animation: grid-move 60s linear infinite;
}

@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(25px, 25px); }
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  animation: float 30s infinite linear;
}

.shape:nth-child(1) {
  width: 150px;
  height: 150px;
  background: var(--primary-color);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  top: 70%;
  left: 80%;
  animation-delay: -10s;
}

.shape:nth-child(3) {
  width: 75px;
  height: 75px;
  background: var(--secondary-color);
  top: 40%;
  left: 70%;
  animation-delay: -20s;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, 15px) rotate(90deg); }
  50% { transform: translate(0, 30px) rotate(180deg); }
  75% { transform: translate(-10px, 15px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 10;
}

header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 40px;
  animation: header-glow 4s infinite alternate;
  isolation: isolate;
}

.border-beam {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
}

.border-beam::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent 30%
  );
  animation: rotate 6s linear infinite;
}

.border-beam::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: inherit;
  z-index: -1;
}

@keyframes header-glow {
  0% { box-shadow: 0 0 15px rgba(37, 99, 235, 0.5); }
  100% { box-shadow: 0 0 30px rgba(214, 158, 46, 0.8); }
}

.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.profile-image-container {
  margin-bottom: 25px;
  position: relative;
}

.profile-image-container {
  margin-bottom: 25px;
  position: relative;
  perspective: 1000px;
}

.profile-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.neon-border-glow {
  position: relative;
  display: inline-block;
}

.neon-border-glow::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff00aa, #00FFF1, #ff00aa, #00FFF1);
  z-index: -1;
  animation: rotate 4s linear infinite;
}

.neon-border-glow::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff00aa, #00FFF1, #ff00aa, #00FFF1);
  z-index: -2;
  filter: blur(20px);
  animation: rotate 6s linear infinite reverse;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.profile-image:hover {
  transform: rotateY(10deg) rotateX(5deg) scale(1.05);
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #ffffff, #d69e2e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: text-glow 3s infinite alternate;
  position: relative;
  display: inline-block;
}

h1::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.7;
  background: linear-gradient(45deg, #ffffff, #d69e2e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: text-glow 3s infinite alternate;
}

@keyframes text-glow {
  0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
  100% { text-shadow: 0 0 20px rgba(214, 158, 46, 0.8); }
}

@keyframes wave-text {
  0%, 100% { 
    transform: translateY(0) rotate(0.5deg); 
  }
  25% { 
    transform: translateY(-5px) rotate(-0.5deg); 
  }
  50% { 
    transform: translateY(0) rotate(0.5deg); 
  }
  75% { 
    transform: translateY(5px) rotate(-0.5deg); 
  }
}


.titles {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 15px 0 25px;
}

.title-badge {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.title-badge:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(214, 158, 46, 0.6);
  z-index: 10;
}

.title-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
  z-index: -1;
  opacity: 0.7;
}

.title-badge:hover::before {
  transform: rotate(45deg) translate(20%, 20%);
  opacity: 1;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
  text-align: center;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: 0.5s;
}

.contact-item:hover::before {
  left: 100%;
}

.contact-label {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 5px;
  color: white;
}

.contact-item a {
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.lang-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.82rem;
  transition: all 0.3s ease;
  font-weight: 500;
  animation: lang-toggle-pulse 2s infinite;
  text-decoration: none;
  line-height: 1.1;
}

@keyframes lang-toggle-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.lang-toggle:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  text-decoration: none;
}

.profile-intro {
  background-color: var(--card-bg);
  border-radius: 20px;
  padding: 40px;
  margin: 30px auto;
  max-width: 900px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  animation: card-entrance 0.8s ease-out;
}

@keyframes card-entrance {
  from { opacity: 0; transform: translateY(50px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
  color: var(--text-color);
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 1.8rem;
  margin: 40px 0 25px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--accent-color);
  color: var(--primary-color);
  text-align: center;
  animation: title-underline 1s ease-out;
}

@keyframes title-underline {
  from { background-position: -100% 0; }
  to { background-position: 100% 0; }
}

.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.skill-category {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: skill-card-appear 0.6s ease-out;
  animation-fill-mode: backwards;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.skill-category:nth-child(1) { animation-delay: 0.1s; }
.skill-category:nth-child(2) { animation-delay: 0.2s; }
.skill-category:nth-child(3) { animation-delay: 0.3s; }
.skill-category:nth-child(4) { animation-delay: 0.4s; }

@keyframes skill-card-appear {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.skill-category:hover {
  transform: translateY(-10px) rotateX(5deg) scale(1.02);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.2);
}

.skill-category h3 {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.skill-category h3::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  transition: width 0.4s ease;
}

.skill-category h3:hover::before {
  width: 100%;
}

.skill-category ul {
  list-style-type: none;
  padding: 0;
}

.skill-category li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  animation: skill-item-appear 0.4s ease-out;
  animation-fill-mode: backwards;
  position: relative;
  overflow: hidden;
}

.skill-category li:nth-child(1) { animation-delay: 0.1s; }
.skill-category li:nth-child(2) { animation-delay: 0.2s; }
.skill-category li:nth-child(3) { animation-delay: 0.3s; }
.skill-category li:nth-child(4) { animation-delay: 0.4s; }
.skill-category li:nth-child(5) { animation-delay: 0.5s; }

.skill-category li:hover {
  background: linear-gradient(90deg, transparent, rgba(214, 158, 46, 0.1), transparent);
  transform: translateX(5px);
}

.skill-category li::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.skill-category li:hover::after {
  left: 100%;
}

@keyframes skill-item-appear {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.skill-category li:last-child {
  border-bottom: none;
}

.skill-category li::before {
  content: "•";
  color: var(--accent-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-right: 0.5em;
}

.experience-section {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 35px;
  margin: 30px 0;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  animation: experience-card-appear 0.8s ease-out;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.experience-section:hover {
  transform: translateY(-5px) rotateX(2deg);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

@keyframes experience-card-appear {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.experience-timeline {
  position: relative;
  padding: 20px 0;
}

.experience-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
  left: 20px;
  margin-left: -2px;
  border-radius: 2px;
}

.experience-item {
  position: relative;
  margin: 30px 0;
  padding-left: 50px;
  padding-bottom: 30px;
  border-bottom: 1px dashed var(--border-color);
  animation: experience-item-appear 0.6s ease-out;
  animation-fill-mode: backwards;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.experience-item:last-child {
  border-bottom: none;
}

.experience-item::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-color);
  left: 10px;
  top: 5px;
  border: 3px solid var(--card-bg);
  z-index: 1;
  box-shadow: 0 0 0 4px var(--primary-color);
  transition: all 0.3s ease;
}

.experience-item:hover::before {
  transform: scale(1.2);
  box-shadow: 0 0 0 6px var(--accent-color);
}

.experience-item:hover {
  transform: translateX(10px);
}

.timeline-content {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.experience-item:hover .timeline-content {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.experience-item:nth-child(1) { animation-delay: 0.1s; }
.experience-item:nth-child(2) { animation-delay: 0.2s; }
.experience-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes experience-item-appear {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.experience-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.item-title {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.item-subtitle {
  color: var(--primary-color);
  font-style: italic;
  font-weight: 500;
}

.item-duration {
  color: var(--text-color);
  font-size: 1rem;
  background: rgba(37, 99, 235, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
}

.dark-mode-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  animation: toggle-rotate 5s linear infinite, float 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

@keyframes toggle-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.dark-mode-label {
  position: fixed;
  top: 28px;
  left: 75px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 7px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  z-index: 99;
  white-space: nowrap;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  animation: label-pulse 2s infinite;
}

@keyframes label-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hidden {
  display: none;
}

.ai-focus {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 30px;
  border-radius: 20px;
  margin: 40px 0;
  text-align: center;
}

.ai-focus h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.ai-focus ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.ai-focus li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-focus li:last-child {
  border-bottom: none;
}

.ai-focus li::before {
  content: "▶";
  margin-right: 10px;
  color: var(--accent-color);
}

.messaging-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.messaging-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mouse fireworks effect */
.mouse-fireworks {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

.mouse-spark {
  position: absolute;
  width: var(--spark-size, 4px);
  height: var(--spark-size, 4px);
  margin-left: calc(var(--spark-size, 4px) * -0.5);
  margin-top: calc(var(--spark-size, 4px) * -0.5);
  border-radius: 999px;
  background: var(--spark-color, #fbbf24);
  box-shadow:
    0 0 8px var(--spark-color, #fbbf24),
    0 0 16px var(--spark-color, #fbbf24);
  animation: spark-burst var(--spark-duration, 480ms) cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}

@keyframes spark-burst {
  0% {
    opacity: 0.95;
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--dx, 0), var(--dy, 0), 0) scale(0.2);
  }
}

/* Scroll progress bar */
#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  z-index: 1000;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(75, 85, 99, 0.5);
}

/* Optimized animations */
@keyframes subtle-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes header-glow {
  0% { box-shadow: 0 0 15px rgba(75, 85, 99, 0.3); }
  100% { box-shadow: 0 0 30px rgba(156, 163, 175, 0.6); }
}

@keyframes text-glow {
  0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
  100% { text-shadow: 0 0 20px rgba(156, 163, 175, 0.8); }
}

/* Optimized particle canvas */
#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.7;
}

/* Responsive design */
@media (max-width: 768px) {
  header {
    padding: 40px 15px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .profile-intro,
  .experience-section {
    padding: 25px 20px;
  }

  .contact-info {
    flex-direction: column;
    gap: 15px;
  }

  .skills-container {
    grid-template-columns: 1fr;
  }

  .item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .dark-mode-toggle {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .dark-mode-label {
    top: 25px;
    left: 70px;
    font-size: 0.8rem;
    padding: 5px 10px;
  }
}

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