:root {
  --bg-dark: #0a0a0f; /* Deep Void */
  --bg-card: rgba(13, 14, 21, 0.7);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --accent-primary: hsl(174, 72%, 55%); /* Cyber Teal */
  --accent-secondary: #8b5cf6; /* Neon Purple */
  --danger: #ef4444;
  --warning: #f59e0b;
  --success: #10b981;
  --glass-border: rgba(53, 229, 213, 0.15); /* Teal tinted border */
  --glass-bg: rgba(53, 229, 213, 0.03);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Background Effects */
.bg-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.3;
  animation: float 25s infinite ease-in-out alternate;
}

.bg-1 {
  width: 600px;
  height: 600px;
  background: var(--accent-primary);
  top: -200px;
  left: -200px;
}

.bg-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-secondary);
  bottom: -150px;
  right: -100px;
  animation-delay: -12s;
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(80px) scale(1.1); }
  100% { transform: translateY(-40px) scale(0.9); }
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
}

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

nav {
  display: flex;
  gap: 1rem;
}

button {
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-btn.ghost {
  background: transparent;
  border: none;
  color: var(--text-secondary);
}
.nav-btn.ghost:hover {
  color: var(--text-primary);
  transform: translateY(-1px);
}

.nav-btn.outline {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}
.nav-btn.outline:hover {
  background: var(--glass-bg);
  border-color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Main Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

/* Hero Section */
.hero {
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(53, 229, 213, 0.1);
  border: 1px solid rgba(53, 229, 213, 0.3);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(53, 229, 213, 0.2);
}

.glow-text {
  animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 10px rgba(53, 229, 213, 0.1); }
  100% { box-shadow: 0 0 20px rgba(53, 229, 213, 0.4); }
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* App Interface */
.app-interface {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  text-align: left;
}

.input-header {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.traffic-lights {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.window-title {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-family: 'Courier New', Courier, monospace;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

#adInput {
  width: 100%;
  height: 250px;
  background: transparent;
  border: none;
  padding: 1.5rem;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  resize: vertical;
}

#adInput:focus {
  outline: none;
}
#adInput::placeholder {
  color: rgba(255,255,255,0.2);
}

.action-bar {
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.word-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.primary-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border: none;
  color: #0a0a0f; /* Dark text for bright teal button */
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(53, 229, 213, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.primary-btn.pulse-glow {
  animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
  0% { box-shadow: 0 0 0 0 rgba(53, 229, 213, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(53, 229, 213, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 229, 213, 0); }
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(53, 229, 213, 0.6);
  background: linear-gradient(135deg, #2dd4bf, #8b5cf6);
}

/* Results Section */
.results-report {
  width: 100%;
  max-width: 1000px;
  animation: fadeIn 0.5s ease;
}

.results-report.hidden {
  display: none;
}

.report-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(to right, #fff, #aaa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.report-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto auto;
  gap: 2rem;
}

.report-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.report-card h3 {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Grade Card */
.grade-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.grade-display {
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff, #aaa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.grade-display.A { background: linear-gradient(135deg, var(--success), #34d399); background-clip: text; -webkit-background-clip: text; }
.grade-display.B { background: linear-gradient(135deg, var(--accent-primary), #60a5fa); background-clip: text; -webkit-background-clip: text; }
.grade-display.C { background: linear-gradient(135deg, var(--warning), #fde047); background-clip: text; -webkit-background-clip: text; }
.grade-display.D { background: linear-gradient(135deg, #f97316, #fb923c); background-clip: text; -webkit-background-clip: text; }
.grade-display.F { background: linear-gradient(135deg, var(--danger), #fca5a5); background-clip: text; -webkit-background-clip: text; }

.grade-desc {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
}

/* Stats Card */
.stat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.stat-list li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
  font-size: 1.1rem;
}
.stat-list li:last-child {
  border-bottom: none;
}

/* Garnet Pro Card - TheAdRanker Edition */
.garnet-card {
  grid-column: span 2;
  position: relative;
  overflow: hidden;
  border-color: rgba(139, 92, 246, 0.4); /* Purple border */
}

.garnet-card.locked .blur-content {
  -webkit-filter: blur(8px);
  filter: blur(8px);
  user-select: none;
  opacity: 0.4;
}

.lock-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 100%;
  padding: 2rem;
  background: rgba(10, 10, 12, 0.6);
  border-radius: 16px;
}

.lock-icon {
  color: var(--accent-secondary);
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(139,92,246,0.5));
}

.lock-overlay h4 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.lock-overlay p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

.upgrade-btn {
  background: linear-gradient(135deg, var(--accent-secondary), #6d28d9);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.upgrade-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
}

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

/* Modal Styling */
.modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.2s ease;
}
.modal.hidden {
  display: none;
}
.modal-content.glass-panel {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.close-btn {
  position: absolute;
  top: 1rem; right: 1.5rem;
  background: transparent; border: none;
  color: var(--text-secondary); font-size: 2rem;
  cursor: pointer;
}
.close-btn:hover { color: var(--text-primary); }
.modal-content h2 {
  margin-bottom: 1.5rem; font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem); text-align: center;
}
.input-group {
  margin-bottom: 1.2rem;
}
.input-group label {
  display: block; margin-bottom: 0.5rem; color: var(--text-secondary); font-size: 0.95rem;
}
.input-group input {
  width: 100%; padding: 0.8rem; border-radius: 8px;
  background: rgba(0,0,0,0.5); border: 1px solid var(--glass-border);
  color: white; font-family: inherit; font-size: 1rem;
}
.input-group input:focus {
  outline: none; border-color: var(--accent-primary);
}
.primary-btn.shrink {
  width: 100%; justify-content: center; margin-top: 1rem;
}
.switch-mode {
  text-align: center; margin-top: 1.5rem; font-size: 0.95rem; color: var(--text-secondary);
}
.switch-mode a { color: var(--accent-primary); text-decoration: none; font-weight: 600; }
.auth-error {
  color: var(--danger); font-size: 0.9rem; margin-top: 1rem; text-align: center;
}
.auth-error.hidden { display: none; }

/* Trust Badge */
.secure-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--success);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: auto;
}

/* Custom Sections (How It Works & Pricing) */
.info-section, .pricing-section {
  width: 100%;
  max-width: 1000px;
  margin-top: 4rem;
  text-align: center;
}

.info-section h2, .pricing-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 800;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: relative;
  text-align: left;
}

.step-num {
  position: absolute;
  top: -1.5rem;
  left: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-primary);
  opacity: 0.5;
  font-family: 'JetBrains Mono', Courier, monospace;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.step-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 3rem 2rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.pro {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #0a0a0f;
  font-size: 0.75rem;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  font-family: 'JetBrains Mono', Courier, monospace;
}

.price span {
  font-size: 1rem;
  color: var(--text-secondary);
}

.feature-list {
  list-style: none;
  text-align: left;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.feature-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  color: var(--text-primary);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.full-width {
  width: 100%;
}

/* Standalone Footer */
.site-footer {
  margin-top: 4rem;
  padding: 3rem 2rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(10, 10, 12, 0.9);
  backdrop-filter: blur(10px);
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 400px;
}

.footer-links-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.footer-links-row a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-row a:hover {
  color: var(--accent-primary);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-secondary);
  opacity: 0.5;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 60;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== RESPONSIVE: MOBILE FIRST ===== */

/* Tablets */
@media (max-width: 1024px) {
  .navbar { padding: 1rem 2rem; }
  .container { padding: 3rem 1.5rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}

/* Phones & Small Tablets */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 55;
    border-left: 1px solid var(--glass-border);
  }
  
  nav.open {
    right: 0;
  }
  
  .nav-btn {
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    border-radius: 12px;
  }
  
  .nav-btn.outline {
    text-align: center;
    margin-top: 1rem;
  }
  
  .navbar {
    padding: 1rem 1.5rem;
  }
  
  .logo {
    font-size: 1.4rem;
  }
  
  h1 {
    font-size: clamp(1.8rem, 8vw, 3.5rem);
    letter-spacing: -0.5px;
  }
  
  .subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .container {
    padding: 2rem 1rem;
    gap: 3rem;
  }
  
  .hero {
    max-width: 100%;
  }
  
  #adInput {
    height: 180px;
    font-size: 1rem;
    padding: 1rem;
  }
  
  .action-bar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .primary-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.85rem 1rem;
  }
  
  .report-grid {
    grid-template-columns: 1fr;
  }
  
  .garnet-card {
    grid-column: span 1;
  }
  
  .report-title {
    font-size: 1.8rem;
  }
  
  .grade-display {
    font-size: 4rem;
  }
  
  .lock-overlay h4 {
    font-size: 1.3rem;
  }
  
  .lock-overlay p {
    font-size: 0.95rem;
  }
  
  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .info-section h2,
  .pricing-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .pricing-card .price {
    font-size: 2.5rem;
  }
  
  .footer-links-row {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  /* Modal mobile */
  .modal-content.glass-panel {
    margin: 1rem;
    max-width: calc(100vw - 2rem);
  }
}

/* Small Phones */
@media (max-width: 480px) {
  h1 {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
  }
  
  .badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
  }
  
  .bg-gradient {
    opacity: 0.15;
  }

  .step-card {
    padding: 2rem 1.25rem;
  }
  
  .step-num {
    font-size: 2rem;
    top: -1rem;
  }
}

/* Ecosystem Bar */
.ecosystem-bar {
  padding: 2rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(10, 10, 15, 0.6);
  text-align: center;
}
.ecosystem-content {
  max-width: 900px;
  margin: 0 auto;
}
.ecosystem-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.ecosystem-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
}
.ecosystem-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.ecosystem-links a:hover { color: var(--accent-primary); }
.eco-divider { color: rgba(148, 163, 184, 0.3); }
.eco-current {
  color: var(--accent-primary);
  font-weight: 600;
}

/* GDPR Banner */
.gdpr-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.gdpr-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.gdpr-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.gdpr-content strong {
  color: var(--accent-primary);
}

.gdpr-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 768px) {
  .gdpr-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .gdpr-actions {
    width: 100%;
    justify-content: center;
  }
}

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