/* ===== SafeShift Live Playground Styles ===== */
/* Namespace-isolated to prevent conflicts with main site */

/* ===== Playground-Specific Variables ===== */
.playground-wrapper {
  /* Deep Space Theme - Professional & Elegant */
  --pg-primary: #818cf8;      /* indigo-400 */
  --pg-secondary: #c084fc;    /* purple-400 */
  --pg-accent: #fbbf24;       /* amber-400 */
  --pg-cyan: #818cf8;         /* Use primary instead of cyan */
  --pg-teal: #c084fc;         /* Use secondary instead of teal */
  --pg-blue: #818cf8;
  --pg-orange: #fbbf24;       /* Use accent instead of orange */

  /* Slate palette (Tailwind-like) */
  --pg-slate-50: #f8fafc;
  --pg-slate-200: #e2e8f0;
  --pg-slate-300: #cbd5e1;
  --pg-slate-400: #94a3b8;
  --pg-slate-500: #64748b;
  --pg-slate-600: #475569;
  --pg-slate-700: #334155;
  --pg-slate-800: #1e293b;
  --pg-slate-900: #0f172a;
  --pg-slate-950: #020617;

  /* Semantic colors */
  --pg-red: #ef4444;
  --pg-green: #10b981;
  --pg-yellow: #f59e0b;
  --pg-purple: #a855f7;

  /* Backgrounds */
  --pg-bg-dark: rgba(15, 23, 42, 0.85);
  --pg-bg-card: rgba(30, 41, 59, 0.5);
  --pg-bg-elevated: rgba(15, 23, 42, 0.95);

  /* Text - Soft indigo tones */
  --pg-text-primary: #e0e7ff;     /* indigo-100 */
  --pg-text-secondary: #c7d2fe;   /* indigo-200 */
  --pg-text-muted: #a5b4fc;       /* indigo-300 */

  /* Spacing (8px scale) */
  --pg-space-1: 0.25rem;
  --pg-space-2: 0.5rem;
  --pg-space-3: 0.75rem;
  --pg-space-4: 1rem;
  --pg-space-6: 1.5rem;
  --pg-space-8: 2rem;
  --pg-space-12: 3rem;

  /* Transitions */
  --pg-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== Base Wrapper ===== */
.playground-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--pg-space-4);
  font-family: var(--font-primary);
  color: var(--pg-text-primary);
}

/* Background overlay for live-playground page */
body.playground-page {
  position: relative;
  background-image: url('../../../images/liveplayground_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body.playground-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.45); /* Lighter overlay - show pattern */
  z-index: -1;
}

/* ===== Header ===== */
.pg-header {
  text-align: center;
  margin-bottom: var(--pg-space-8);
  padding-top: var(--pg-space-4);
}

.pg-badge-live {
  display: inline-flex;
  align-items: center;
  gap: var(--pg-space-2);
  padding: var(--pg-space-2) var(--pg-space-4);
  background: rgba(129, 140, 248, 0.15);
  border: 1px solid rgba(129, 140, 248, 0.3);
  border-radius: 9999px;
  color: #818cf8;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: var(--pg-space-3);
}

.pg-pulse-dot {
  position: relative;
  display: inline-flex;
  width: 0.625rem;
  height: 0.625rem;
}

.pg-pulse-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #818cf8;
  opacity: 0.75;
  animation: pg-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pg-pulse-dot::after {
  content: '';
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #818cf8, #c084fc);
}

@keyframes pg-ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.pg-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--pg-space-3);
  letter-spacing: -0.02em;
}

.pg-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--pg-slate-400);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Main Grid ===== */
.pg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pg-space-8);
  min-height: 500px;
}

/* ===== Panel Base Styles ===== */
.pg-panel {
  background: rgba(30, 27, 75, 0.4); /* Purple tint */
  backdrop-filter: blur(16px);
  border: 1px solid rgba(129, 140, 248, 0.2); /* Indigo border */
  border-radius: 1rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(129, 140, 248, 0.1) inset; /* Subtle inner glow */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pg-panel-model {
  position: relative;
  padding: var(--pg-space-6);
}

.pg-panel-title {
  display: flex;
  align-items: center;
  gap: var(--pg-space-3);
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--pg-space-6);
  padding-bottom: var(--pg-space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pg-panel-accent {
  width: 0.375rem;
  height: 1.5rem;
  background: var(--pg-cyan);
  border-radius: 0.125rem;
}

/* ===== Diagram ===== */
.pg-diagram-wrapper {
  position: relative;
  flex: 1;
  background: var(--pg-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pg-space-8);
  min-height: 300px;
}

.pg-diagram-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#818cf8 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.15;
}

.pg-diagram {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  flex-wrap: wrap;
  justify-content: center;
}

.pg-diagram-inputs {
  display: flex;
  flex-direction: column;
  gap: var(--pg-space-4);
}

.pg-io-port {
  background: var(--pg-slate-900);
  padding: var(--pg-space-2) var(--pg-space-4);
  border: 1px solid rgba(129, 140, 248, 0.3);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: #c7d2fe; /* indigo-200 */
  white-space: nowrap;
}

.pg-wires-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.pg-wire {
  width: 3rem;
  height: 0.125rem;
  background: linear-gradient(90deg, #818cf8, #c084fc);
  box-shadow: 0 0 8px rgba(129, 140, 248, 0.5);
}

.pg-wire-right {
  width: 3rem;
  height: 0.125rem;
  background: linear-gradient(90deg, #c084fc, #818cf8);
  box-shadow: 0 0 8px rgba(192, 132, 252, 0.5);
}

/* ===== Logic Block ===== */
.pg-logic-block {
  position: relative;
  transition: all 0.5s ease;
}

.pg-operator {
  width: 8rem;
  height: 8rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  border: 2px solid #818cf8;
  background: rgba(15, 23, 42, 0.8);
  color: #818cf8;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.6),
              0 0 20px rgba(129, 140, 248, 0.3);
  transition: all 0.5s ease;
}

.pg-logic-block.pg-logic-mutant .pg-operator {
  transform: scale(1.1);
  background: rgba(127, 29, 29, 0.4);
  border-color: var(--pg-red);
  color: var(--pg-red);
  animation: pg-pulse-red 2s infinite;
}

@keyframes pg-pulse-red {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }
}

.pg-logic-label {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 700;
  color: #c7d2fe; /* indigo-200 */
  white-space: nowrap;
  transition: color 0.3s ease;
}

.pg-logic-label.pg-logic-label-mutant {
  color: #fca5a5;
}

/* ===== Scan Line Animation ===== */
.pg-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #818cf8, #c084fc, #818cf8, transparent);
  box-shadow: 0 0 10px #818cf8, 0 0 20px #c084fc;
  animation: pg-scan 1.5s linear infinite;
  z-index: 20;
}

@keyframes pg-scan {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* ===== Controls ===== */
.pg-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--pg-space-6);
  padding: var(--pg-space-4);
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  gap: var(--pg-space-4);
  flex-wrap: wrap;
}

.pg-status {
  font-size: 0.875rem;
  color: var(--pg-slate-400);
  font-family: 'JetBrains Mono', monospace;
}

.pg-status span {
  color: white;
  font-weight: 600;
}

.pg-action-buttons {
  display: flex;
  gap: var(--pg-space-3);
}

/* ===== Buttons ===== */
.pg-button {
  display: inline-flex;
  align-items: center;
  gap: var(--pg-space-2);
  padding: var(--pg-space-3) var(--pg-space-6);
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  font-family: var(--font-primary);
}

.pg-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

.pg-button:active {
  transform: translateY(0);
}

.pg-button-primary {
  background: linear-gradient(135deg, #818cf8, #c084fc);
  color: white;
  box-shadow: 0 4px 20px rgba(129, 140, 248, 0.4);
}

.pg-button-primary:hover {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  box-shadow: 0 0 30px rgba(129, 140, 248, 0.6);
  transform: translateY(-3px);
}

.pg-button-purple {
  background: #9333ea;
  color: white;
}

.pg-button-purple:hover {
  background: #a855f7;
}

.pg-button-slate {
  background: #475569;
  color: white;
}

.pg-button-slate:hover {
  background: #64748b;
}

.pg-button-green {
  background: #059669;
  color: white;
}

.pg-button-green:hover {
  background: #10b981;
}

.pg-button-red {
  background: #dc2626;
  color: white;
}

.pg-button-red:hover {
  background: #ef4444;
}

.pg-button-bounce {
  animation: pg-bounce 1s infinite;
}

@keyframes pg-bounce {
  0%, 100% {
    transform: translateY(-5%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.pg-button-pulse {
  animation: pg-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

/* ===== Right Panel (Code + Console) ===== */
.pg-panel-right {
  display: flex;
  flex-direction: column;
  gap: var(--pg-space-6);
}

/* ===== Code Editor ===== */
.pg-code-editor {
  flex: 1;
  min-height: 250px;
}

.pg-editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--pg-space-3) var(--pg-space-4);
  background: rgba(15, 23, 42, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pg-filename {
  font-size: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--pg-slate-400);
}

.pg-window-dots {
  display: flex;
  gap: var(--pg-space-2);
}

.pg-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--pg-slate-600);
}

.pg-editor-content {
  position: relative;
  flex: 1;
  background: rgba(15, 23, 42, 0.8);
  padding: var(--pg-space-4);
  overflow: auto;
  max-height: 400px;
}

.pg-editor-content pre {
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #a5f3fc;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.pg-editor-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pg-cyan);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  gap: var(--pg-space-3);
}

.pg-spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--pg-cyan);
  border-top-color: transparent;
  border-radius: 50%;
  animation: pg-spin 1s linear infinite;
}

@keyframes pg-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== Console ===== */
.pg-console {
  height: 250px;
}

.pg-console-header {
  padding: var(--pg-space-2) var(--pg-space-4);
  background: rgba(15, 23, 42, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--pg-slate-400);
}

.pg-console-content {
  flex: 1;
  background: rgba(0, 0, 0, 0.6);
  padding: var(--pg-space-4);
  overflow-y: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  line-height: 1.6;
}

.pg-console-empty {
  color: var(--pg-slate-500);
  font-style: italic;
}

.pg-log {
  display: flex;
  align-items: flex-start;
  gap: var(--pg-space-2);
  margin-bottom: var(--pg-space-2);
}

.pg-log-prompt {
  opacity: 0.5;
  color: var(--pg-cyan);
  margin-top: 0.125rem;
}

.pg-log-info {
  color: var(--pg-slate-300);
}

.pg-log-success {
  color: #10b981; /* Green - success */
}

.pg-log-error {
  color: var(--pg-red);
}

.pg-log-warning {
  color: var(--pg-yellow);
}

/* ===== Report Modal ===== */
.pg-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pg-space-4);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pg-modal-overlay.pg-modal-visible {
  opacity: 1;
}

.pg-modal-content {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.95);
  width: 100%;
  max-width: 42rem;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: pg-pop-in 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes pg-pop-in {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pg-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #020617;
  border-bottom: 1px solid #1e293b;
}

.pg-modal-header-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pg-icon-wrapper {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: rgba(6, 182, 212, 0.2);
  color: #22d3ee;
}

.pg-modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.pg-modal-subtitle {
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 0.25rem 0 0 0;
}

.pg-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
}

.pg-badge-success {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.pg-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
}

.pg-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pg-metric-card {
  background: rgba(30, 41, 59, 0.5);
  padding: 1rem;
  border: 1px solid #334155;
  border-radius: 0.75rem;
  text-align: center;
}

.pg-metric-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.pg-metric-success {
  color: #fbbf24; /* Amber - warm highlight */
}

.pg-metric-cyan {
  color: #818cf8; /* Indigo primary */
}

.pg-metric-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pg-report-section {
  margin-bottom: 0;
}

.pg-section-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.pg-table-wrapper {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid #334155;
  border-radius: 0.75rem;
  overflow: hidden;
}

.pg-table {
  width: 100%;
  font-size: 0.875rem;
  text-align: left;
  border-collapse: collapse;
}

.pg-table thead {
  background: rgba(15, 23, 42, 0.5);
  color: #94a3b8;
}

.pg-table th {
  padding: 0.75rem;
  font-weight: 500;
}

.pg-table tbody {
  border-top: 1px solid rgba(71, 85, 105, 0.5);
}

.pg-table tbody tr {
  border-bottom: 1px solid rgba(71, 85, 105, 0.5);
}

.pg-table tbody tr:last-child {
  border-bottom: none;
}

.pg-table td {
  padding: 0.75rem;
}

.pg-table-row-success {
  background: rgba(251, 191, 36, 0.05);
}

.pg-table-cell {
  color: #cbd5e1;
}

.pg-table-cell-mono {
  font-family: 'JetBrains Mono', monospace;
  color: #cbd5e1;
}

.pg-status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 700;
  color: #fbbf24; /* Amber */
}

.pg-status-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #fbbf24;
}

.pg-table-footer {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  background: rgba(15, 23, 42, 0.5);
  border-top: 1px solid rgba(71, 85, 105, 0.5);
  font-size: 0.75rem;
  color: #94a3b8;
  gap: 1rem;
  flex-wrap: wrap;
}

.pg-modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 1.5rem;
  background: #020617;
  border-top: 1px solid #1e293b;
}

.pg-modal-footer .pg-button {
  background: linear-gradient(135deg, #818cf8, #c084fc);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(129, 140, 248, 0.3);
  transition: all 0.15s ease-in-out;
}

.pg-modal-footer .pg-button:hover {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  box-shadow: 0 0 20px rgba(129, 140, 248, 0.5);
  transform: translateY(-2px);
}

/* ===== Responsive Design (Mobile-First) ===== */

/* Mobile: < 768px (default styles above) */
@media (max-width: 767px) {
  .playground-wrapper {
    padding: var(--pg-space-3);
  }

  .pg-header {
    margin-bottom: var(--pg-space-6);
  }

  .pg-title {
    font-size: 2rem;
  }

  .pg-subtitle {
    font-size: 0.875rem;
  }

  .pg-diagram {
    flex-direction: column;
    gap: var(--pg-space-4);
  }

  .pg-diagram-inputs {
    flex-direction: row;
    gap: var(--pg-space-3);
  }

  .pg-wires-left,
  .pg-wire-right {
    display: none;
  }

  .pg-operator {
    width: 6rem;
    height: 6rem;
    font-size: 2rem;
  }

  .pg-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .pg-action-buttons {
    width: 100%;
  }

  .pg-button {
    flex: 1;
    justify-content: center;
    font-size: 0.8125rem;
    padding: var(--pg-space-3) var(--pg-space-4);
  }

  .pg-editor-content {
    max-height: 300px;
  }

  .pg-console {
    height: 200px;
  }

  .pg-metrics-grid {
    grid-template-columns: 1fr;
  }

  .pg-table-footer {
    flex-direction: column;
    gap: var(--pg-space-2);
  }

  /* Modal responsive */
  .pg-modal-content {
    max-width: 95vw;
    margin: var(--pg-space-3);
  }

  .pg-modal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--pg-space-3);
  }

  .pg-metrics-grid {
    grid-template-columns: 1fr;
  }

  .pg-table {
    font-size: 0.75rem;
  }

  .pg-table th,
  .pg-table td {
    padding: var(--pg-space-2);
  }

  .pg-table-footer {
    flex-direction: column;
    gap: var(--pg-space-2);
  }
}

/* Tablet: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .pg-grid {
    grid-template-columns: 1fr;
    gap: var(--pg-space-6);
  }

  .pg-panel-right {
    flex-direction: row;
    gap: var(--pg-space-4);
  }

  .pg-code-editor,
  .pg-console {
    flex: 1;
  }
}

/* Desktop: >= 1024px */
@media (min-width: 1024px) {
  .pg-grid {
    grid-template-columns: 7fr 5fr;
    gap: var(--pg-space-8);
  }

  .pg-panel-model {
    min-height: 650px;
  }
}

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