:root {
  --c-main: #7c3aed;
  --c-main-light: #a78bfa;
  --c-main-glow: rgba(124, 58, 237, 0.3);
  --c-main-glow-strong: rgba(124, 58, 237, 0.5);
  --c-text: #c8c8d0;
  --c-text-muted: #6b6b7a;
  --c-bg: #07070a;
  --c-bg-alt: #0c0c12;
  --c-surface: #111118;
  --c-surface-hover: #1a1a24;
  --c-border: rgba(255, 255, 255, 0.06);
  --c-border-light: rgba(255, 255, 255, 0.1);

  --fl-duration: 1s;
  --fl-delay: 1s;
  --fl-repeat: 1;
}

html, body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color: var(--c-text);
  font-size: 100%;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  background: var(--c-bg);
}

@media screen and (min-width: 700px) {
  html {
    font-size: 112.5%;
    line-height: 1.65;
  }
}

*, * *, *::before, *::after {
  box-sizing: border-box;
}

a, a:visited {
  color: var(--c-main-light);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #fff;
}

pre, table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

code {
  font-size: 0.875em;
  background: rgba(255, 255, 255, 0.05);
  color: #e0e0e0;
  padding: 0.15em 0.4em;
  border-radius: 4px;
}

pre {
  padding: 1.25rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  color: #fff;
}

pre code {
  background: transparent;
  padding: 0;
  font-size: 0.8rem !important;
}

p, ul, ol, hr, table, pre, h1, h2, h3, h4, h5, h6 {
  margin-top: 1.5em;
  margin-bottom: 0;
}

p {
  margin-bottom: 1.5rem;
  color: var(--c-text);
}

h1, h2, h3, h4, h5, h6 {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: 3.998rem; }
h2 { font-size: 1.999rem; }
h3 { font-size: 1.414rem; }
h4 { font-size: 1.25rem; }

strong {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6em 1.5em;
  color: #fff;
  border-radius: 10px;
  border: 1px solid var(--c-main);
  background: linear-gradient(135deg, var(--c-main), #6d28d9);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--c-main-glow);
}

.button:hover::before {
  opacity: 1;
}

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

.button-animations {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border-light);
}

.button-animations:hover {
  color: #fff;
  border-color: var(--c-main);
  background: transparent;
  box-shadow: 0 0 25px var(--c-main-glow);
}

.warning {
  padding: 1rem 1.25rem;
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  font-style: italic;
}

blockquote {
  border-left: 3px solid var(--c-main);
  padding: 0.75rem 1.25rem;
  margin-left: 0;
  background: rgba(124, 58, 237, 0.04);
  border-radius: 0 12px 12px 0;
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: [callout] 1fr;
  grid-template-rows: 1fr auto;
  gap: 1rem;
  grid-template-areas:
    'callout animation-list'
    'footer aimation-list';
  max-width: 100%;
  height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 70% at 30% 20%, rgba(124, 58, 237, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 70% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 70%, rgba(124, 58, 237, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--c-bg) 0%, #0a0a18 50%, var(--c-bg-alt) 100%);
}

.intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,0,0,0.6) 0%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,0,0,0.6) 0%, transparent 80%);
  pointer-events: none;
}

.intro::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 1;
}

.intro-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.intro-bg-orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(124, 58, 237, 0.15);
  top: -150px;
  left: -100px;
  animation: orbFloat 20s ease-in-out infinite;
}

.intro-bg-orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(167, 139, 250, 0.1);
  bottom: -100px;
  right: -50px;
  animation: orbFloat 25s ease-in-out infinite reverse;
}

.intro-bg-orb--3 {
  width: 300px;
  height: 300px;
  background: rgba(124, 58, 237, 0.08);
  top: 60%;
  left: 60%;
  animation: orbFloat 18s ease-in-out infinite 5s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(60px, -80px) scale(1.1);
  }
  50% {
    transform: translate(-30px, 40px) scale(0.95);
  }
  75% {
    transform: translate(40px, 60px) scale(1.05);
  }
}

@media (min-width: 700px) {
  .intro {
    grid-template-columns: [callout] 1fr [sidebar] 280px;
  }
}

.callout {
  grid-area: callout;
  align-self: center;
  justify-self: center;
  text-align: center;
  z-index: 1;
}

.callout-title {
  margin: 0;
  animation-delay: 0.25s;
  font-size: clamp(3rem, 12vw, 5.5rem);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff 0%, var(--c-main-light) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 700px) {
  .callout-title {
    animation-delay: 0s;
  }
}

.callout-subtitle {
  margin: 0.5rem 0 0;
  animation-delay: 0.3s;
  color: var(--c-text-muted);
  font-size: clamp(1rem, 4vw, 1.35rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.callout-showList {
  margin-top: 2rem;
  animation-delay: 0.5s;
}

@media (min-width: 700px) {
  .callout-showList {
    display: none;
  }
}

@media (min-width: 1000px) {
  .callout-hideList {
    display: none;
  }
}

.animation-list {
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  z-index: 90;
  grid-area: animation-list;
  grid-row: 1 / 3;
  overflow-y: auto;
  padding: 2rem;
  animation-delay: 0.7s;
  animation-fill-mode: backwards;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(12, 12, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--c-border);
}

.animation-list::-webkit-scrollbar {
  width: 6px;
}

.animation-list::-webkit-scrollbar-track {
  background: transparent;
}

.animation-list::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, 0.3);
  border-radius: 3px;
}

.animationList-active .animation-list {
  transform: translateX(-100%);
}

@media (min-width: 700px) {
  .animation-list {
    position: relative;
    left: auto;
    transform: none !important;
  }
}

.intro-footer {
  grid-area: footer;
  justify-self: center;
  padding-bottom: 1rem;
  font-size: 0.8rem;
  text-align: center;
  color: var(--c-text-muted);
  z-index: 1;
}

.animation-item {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  transition: all 0.15s;
  gap: 0.5rem;
}

.animation-item:hover {
  background: rgba(124, 58, 237, 0.08);
}

.animation-item--title {
  width: 100%;
  color: var(--c-text);
  font-size: 0.9rem;
  transition: color 0.15s;
}

.animation-item:hover .animation-item--title {
  color: #fff;
}

.tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  right: -4px;
  padding: 4px 8px;
  background: var(--c-main);
  color: #fff;
  border-radius: 5px;
  font-size: 0.7rem;
  line-height: 1;
  white-space: nowrap;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(3px);
  transition: all 0.15s;
}

.tooltip::before {
  content: '';
  position: absolute;
  top: 100%;
  right: 8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: var(--c-main) transparent transparent transparent;
}

.copy-icon:hover .tooltip,
.copy-icon.copied .tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.copy-icon.copied {
  border-color: var(--c-main);
}

.copy-icon.copied svg {
  color: var(--c-main-light);
}

.copy-icon {
  position: relative;
  width: 28px;
  height: 24px;
  border: 1px solid var(--c-border);
  align-self: center;
  outline: none;
  cursor: pointer;
  background: transparent;
  visibility: hidden;
  border-radius: 5px;
  flex-shrink: 0;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.copy-icon svg {
  width: 14px;
  height: 14px;
  color: var(--c-text-muted);
  transition: color 0.15s;
}

.copy-icon:hover svg {
  color: var(--c-main-light);
}

.animation-item:hover .copy-icon {
  visibility: visible;
}

.animation-item .copy-icon:hover,
.animation-item .copy-icon:hover::before {
  border-color: rgba(124, 58, 237, 0.5);
}

.copy-icon:hover .tooltip {
  visibility: visible;
}

.animation-group, .animation-title {
  font-size: 1rem;
}

.animation-title {
  margin-bottom: 0.5em;
  color: var(--c-main-light);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.animation-group {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  line-height: 1.4;
}

.container {
  gap: 1rem;
  margin: 0 auto;
  max-width: 100%;
}

@media (min-width: 1000px) {
  .container {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 280px;
  }
}

@media (min-width: 1520px) {
  .container {
    grid-template-columns: 1fr minmax(0, 800px) 2fr;
  }
}

.docs {
  position: relative;
}

.docs-header {
  position: sticky;
  top: 0;
  padding: 0.75rem 0;
  background: rgba(7, 7, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  border-bottom: 1px solid var(--c-border);
}

.docs-mainTitle {
  grid-column: 1 / 2;
  padding-left: 1rem;
  margin-top: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.docs-mainTitle a {
  color: #fff;
  text-decoration: none;
}

@media (min-width: 1520px) {
  .docs-mainTitle {
    grid-column: 2 / 3;
  }
}

.meta {
  padding-left: 2rem;
  margin-top: 1rem;
}

.content {
  padding: 0 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 1520px) {
  .content {
    grid-column: 2 / 3;
  }
}

.hamburger {
  --size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 1rem;
  left: 100%;
  width: var(--size);
  height: var(--size);
  background: var(--c-main);
  border-radius: 0 8px 8px 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  z-index: 101;
}

.hamburger-active .hamburger {
  transform: translateX(-240px);
}

@media (min-width: 1000px) {
  .hamburger {
    display: none;
  }
}

.sidebar {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 100;
  width: 240px;
  height: 100%;
  background: rgba(12, 12, 18, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid var(--c-border);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: 1.5rem;
}

.hamburger-active .sidebar {
  transform: translateX(-100%);
}

@media (min-width: 1000px) {
  .sidebar {
    position: sticky;
    top: 4rem;
    left: auto;
    width: auto;
    height: auto;
    border-left: none;
    background: none;
    backdrop-filter: none;
    padding-top: 0;
  }

  .hamburger-active .sidebar {
    transform: none;
  }
}

.icon-github {
  display: inline-flex;
  align-items: center;
  margin-right: 0.3em;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.icon-github:hover {
  opacity: 1;
}

.docs-index {
  top: 1rem;
  padding-left: 2rem;
  list-style: none;
}

@media (min-width: 1000px) {
  .docs-index {
    position: sticky;
    top: 5rem;
  }
}

.docs-indexItem {
  margin-bottom: 0.4rem;
}

.docs-indexItem a {
  color: var(--c-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
  position: relative;
}

.docs-indexItem a::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--c-main);
  border-radius: 2px;
  transition: height 0.2s;
}

.docs-indexItem a:hover {
  color: #fff;
}

.docs-indexItem a:hover::before {
  height: 60%;
}

[class*='docSection'] {
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 1em;
}

[class*='docSection']:last-of-type {
  border-bottom: 0;
}

[class*='docSection'] h2 {
  margin-top: 2rem;
  position: relative;
  display: inline-block;
}

[class*='docSection'] h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--c-main);
  border-radius: 2px;
}

.main-footer {
  padding: 1.5rem 2rem;
  background: var(--c-surface);
  color: var(--c-text-muted);
  border-top: 1px solid var(--c-border);
  font-size: 0.85rem;
  text-align: center;
}

.main-footer p {
  margin: 0;
}

.motionless__banner a {
  color: #fff;
}

.motionless__banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 150;
  width: 100%;
  padding: 1rem;
  background: #111;
  color: #fff;
  border-top: 2px solid var(--c-main);
  text-align: center;
}

@media (print), (prefers-reduced-motion: reduce) {
  .motionless__banner {
    display: block;
  }
}

.fl-paused {
  animation-play-state: paused !important;
}

.fl-reverse {
  animation-direction: reverse !important;
}

.fl-reduced-motion .fl-animated,
.fl-reduced-motion [class*="fl-"] {
  animation: none !important;
  transition: none !important;
}

.playground {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.playground-header {
  text-align: center;
  margin-bottom: 3rem;
}

.playground-header h2 {
  font-size: 2.5rem;
  margin: 0;
}

.playground-header p {
  color: var(--c-text-muted);
  margin-top: 0.5rem;
}

.playground-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 900px) {
  .playground-layout {
    grid-template-columns: 1fr;
  }
}

.preview-card {
  background: var(--c-surface);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 16px;
  padding: 2rem;
  margin: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: borderGlow 3s ease-in-out infinite;
}

.preview-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--c-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.preview-stage {
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.08) 0%, transparent 70%);
  border: 1px solid var(--c-border-light);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  min-height: 320px;
}

#pgPlayStatus {
  font-size: 0.6rem;
  color: #22c55e;
  animation: pgPulse 1.2s ease-in-out infinite;
}

@keyframes pgPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.preview-box {
  width: 260px;
  height: 260px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  position: relative;
}

.preview-box .preview-label {
  font-size: clamp(4.5rem, 12vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  filter: drop-shadow(0 2px 20px rgba(124,58,237,0.4));
}

.preview-box .preview-label .preview-icon {
  display: inline-block;
  vertical-align: middle;
}
#pgPreviewLabel{
  font-family: var(--c-main-glow), 'SF Mono', 'Fira Code', monospace;
  font-size: 50px;
  font-weight: bolder;
  background: linear-gradient(135deg, #fff 30%, #c084fc 70%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.preview-box .preview-label #pgPreviewLabel {
  background: linear-gradient(135deg, #fff 30%, #c084fc 70%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.controls-card {
  background: var(--c-surface);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 16px;
  padding: 2rem;
  margin: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: borderGlow 3s ease-in-out infinite;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.control-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.control-group select,
.control-group input[type="range"] {
  width: 100%;
}

.control-group select {
  background: var(--c-bg);
  color: #fff;
  border: 1px solid var(--c-border-light);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.control-group select:focus {
  outline: none;
  border-color: var(--c-main);
}

.control-group input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--c-border-light);
  outline: none;
}

.control-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-main);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 10px var(--c-main-glow);
}

.control-row {
  display: flex;
  gap: 1rem;
}

.control-row .control-group {
  flex: 1;
}

.control-value {
  font-size: 0.85rem;
  color: var(--c-main-light);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.copy-snippet {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid var(--c-border-light);
  background: var(--c-bg);
  color: var(--c-text);
  border-radius: 8px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.copy-snippet:hover {
  border-color: var(--c-main);
}

.easing-card {
  grid-column: 1 / -1;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 2rem;
}

.easing-card h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.easing-visualizer {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 700px) {
  .easing-visualizer {
    flex-direction: column;
  }
}

.easing-canvas-wrap {
  position: relative;
  flex-shrink: 0;
}

.easing-canvas-wrap svg {
  display: block;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  cursor: crosshair;
}

.easing-canvas-wrap svg line.grid {
  stroke: rgba(255,255,255,0.06);
  stroke-width: 1;
}

.easing-canvas-wrap svg line.handle {
  stroke: rgba(255,255,255,0.15);
  stroke-width: 1.5;
  stroke-dasharray: 4;
}

.easing-canvas-wrap svg path.curve {
  stroke: var(--c-main);
  stroke-width: 2.5;
  fill: none;
}

.easing-canvas-wrap svg circle.handle {
  fill: var(--c-main);
  cursor: grab;
  r: 7;
}

.easing-canvas-wrap svg circle.handle:active {
  cursor: grabbing;
}

.easing-canvas-wrap svg circle.start-end {
  fill: var(--c-text-muted);
  r: 4;
}

.easing-info {
  flex: 1;
  min-width: 0;
}

.easing-info code {
  display: block;
  background: var(--c-bg);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--c-border);
  font-size: 0.85rem;
  word-break: break-all;
  margin-bottom: 0.75rem;
}

.easing-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.easing-preset {
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  border: 1px solid var(--c-border-light);
  background: transparent;
  color: var(--c-text);
  border-radius: 5px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}

.easing-preset:hover {
  border-color: var(--c-main);
  color: #fff;
}

.easing-preset.active {
  border-color: var(--c-main);
  background: rgba(124,58,237,0.1);
}

.docs {
  text-align: left;
}

.animation-list {
  text-align: left;
}

@keyframes borderGlow {
  0%, 100% {
    border-color: rgba(124, 58, 237, 0.15);
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.05);
  }
  50% {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.25);
  }
}
