/* ============================================================
   Alvaner — Liquid Glass (base stylesheet)
   Цвета темы берутся из файла в /themes/*.css — поменяй ссылку
   в index.html, чтобы переключить палитру.
   ============================================================ */

/* ---------- 1. Reset & root (fallback-переменные) ---------- */
*, *::before, *::after { box-sizing: border-box; }

:root {
  /* fallback-палитра (используется, если тема не подгрузилась) */
  --bg-0: #07051a;
  --bg-1: #0d0a2e;
  --bg-2: #1a0e4d;

  --glow-1: #3a1b8a;
  --glow-2: #0f2a6b;
  --glow-3: #5b1b7a;
  --glow-4: #2d1a00;

  --orb-1: #5b5cff; --orb-1-op: .55;
  --orb-2: #22d3ee; --orb-2-op: .35;
  --orb-3: #d946ef; --orb-3-op: .45;
  --orb-4: #fbbf24; --orb-4-op: .25;

  --c-main:   #5b5cff;   /* основной акцент */
  --c-second: #8b5cf6;   /* вторичный акцент */
  --c-cool:   #22d3ee;   /* холодный блик */
  --c-pop:    #d946ef;   /* pop-цвет */

  /* Текст */
  --text:     #eef0ff;
  --text-dim: #b4b0d8;
  --text-mut: #807cab;

  /* Стекло */
  --glass-border: rgba(255, 255, 255, 0.14);

  /* Радиусы */
  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 14px;

  /* Тени */
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-lift: 0 26px 70px rgba(10, 5, 40, 0.6);

  --safe-b: env(safe-area-inset-bottom, 0px);
}

/* ---------- Base ---------- */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  width: 100%;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg-0);
  overflow-x: hidden;
  overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

/* Без выделения текста — но НЕ на html/body, чтобы не ломать тач-скролл на iOS */
.app, .dock, .toast {
  user-select: none;
  -webkit-user-select: none;
}
/* …и оставляем выделение и ввод в формах */
input, textarea {
  user-select: text;
  -webkit-user-select: text;
}

/* Прячем скроллбар */
html { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar,
body::-webkit-scrollbar { display: none; width: 0; height: 0; }

/* Отклик тап-элементов */
a, button, .link-card, .dock button, .tab-btn, .submit {
  touch-action: manipulation;
}

.svg-defs { position: absolute; }

/* ---------- 2. Background ---------- */
.bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(1400px 900px at 8%   -5%,  var(--glow-1) 0%, transparent 55%),
    radial-gradient(1200px 800px at 100%  0%,  var(--glow-2) 0%, transparent 55%),
    radial-gradient(1000px 900px at 50% 110%,  var(--glow-3) 0%, transparent 55%),
    radial-gradient(600px  500px at 80%  60%,  var(--glow-4) 0%, transparent 60%),
    linear-gradient(160deg, var(--bg-0) 0%, var(--bg-1) 55%, var(--bg-2) 100%);
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -2;
  pointer-events: none;
  will-change: transform;
  mix-blend-mode: screen;
}
.orb.o1 { width: 540px; height: 540px; background: var(--orb-1); top: -14%; left: -12%; opacity: var(--orb-1-op); animation: float1 24s ease-in-out infinite; }
.orb.o2 { width: 480px; height: 480px; background: var(--orb-2); top: 22%;  right: -16%; opacity: var(--orb-2-op); animation: float2 28s ease-in-out infinite; }
.orb.o3 { width: 440px; height: 440px; background: var(--orb-3); bottom: -20%; left: 22%; opacity: var(--orb-3-op); animation: float3 32s ease-in-out infinite; }
.orb.o4 { width: 300px; height: 300px; background: var(--orb-4); top: 20%; left: 55%; opacity: var(--orb-4-op); animation: float1 36s ease-in-out infinite reverse; }

@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(140px, 90px) scale(1.12); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-110px, 130px) scale(1.08); } }
@keyframes float3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(90px, -110px) scale(1.18); } }

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- 3. Glass (glassmorphism) ---------- */
.glass {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  isolation: isolate;
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 18%, transparent 45%);
  mix-blend-mode: overlay;
}
.glass::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, color-mix(in oklab, var(--c-main) 55%, transparent) 0%, transparent 30%, transparent 70%, color-mix(in oklab, var(--c-pop) 45%, transparent) 100%);
  mix-blend-mode: soft-light;
  opacity: .9;
}

/* ---------- 4. Layout ---------- */
.stage {
  min-height: 100vh;
  min-height: 100dvh;
  /* блочный layout без flex-центрирования —
     иначе на мобилке при контенте выше вьюпорта ломается скролл */
  padding:
    clamp(20px, 8vh, 80px)
    clamp(12px, 3vw, 22px)
    calc(120px + var(--safe-b));
}
.app {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(12px, 2vw, 22px);
}

/* ---------- 5. Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(14px, 3vw, 24px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px) clamp(18px, 3vw, 30px);
}

.avatar-wrap {
  position: relative;
  width: clamp(86px, 13vw, 118px);
  height: clamp(86px, 13vw, 118px);
  flex-shrink: 0;
}
.avatar-wrap .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    var(--c-main) 0deg,
    var(--c-cool) 90deg,
    var(--orb-4) 180deg,
    var(--c-pop)  270deg,
    var(--c-main) 360deg);
  animation: spin 8s linear infinite;
  filter: drop-shadow(0 0 16px color-mix(in oklab, var(--c-main) 60%, transparent));
  z-index: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.avatar-wrap img {
  position: relative;
  z-index: 1;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  margin: 3px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-0);
  display: block;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  -webkit-user-drag: none;
  pointer-events: none;
}

.hero-text { min-width: 0; }
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  margin: 0 0 6px;
  font-size: clamp(26px, 5.5vw, 42px);
  letter-spacing: -.6px;
  line-height: 1.05;
  background: linear-gradient(120deg, #ffffff 0%, color-mix(in oklab, var(--c-second) 60%, #fff) 45%, var(--c-cool) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.tag {
  margin: 0;
  color: var(--text-dim);
  font-size: clamp(13px, 2.5vw, 15px);
  letter-spacing: .3px;
}

/* ---------- 6. Tabs ---------- */
.tabs {
  display: flex;
  gap: 4px;
  padding: 6px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-dim);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font: 600 14px 'Inter', sans-serif;
  transition: all .35s cubic-bezier(.2, .8, .2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.tab-btn:hover { color: #fff; }
.tab-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--c-main) 0%, var(--c-second) 50%, var(--c-pop) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 8px 24px color-mix(in oklab, var(--c-main) 45%, transparent);
}
.tab-btn svg { width: 16px; height: 16px; }

/* ---------- 7. Panels ---------- */
.panels { padding: 0; }
.panel {
  padding: clamp(20px, 3vw, 30px);
  min-height: 280px;
  display: none;
  animation: fadeUp .45s cubic-bezier(.2, .8, .2, 1);
  position: relative;
  z-index: 1;
}
.panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.panel h2 {
  font-family: 'Space Grotesk', sans-serif;
  margin: 0 0 6px;
  font-size: clamp(20px, 3vw, 24px);
  letter-spacing: -.3px;
  color: #fff;
}
.panel .sub {
  color: var(--text-dim);
  margin: 0 0 22px;
  font-size: 14px;
}

/* ---------- 8. Home — link chiclets ---------- */
.links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.link-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 8px 24px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px) saturate(170%);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s, border-color .35s;
  overflow: hidden;
}
.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, transparent 40%);
  mix-blend-mode: overlay;
}
.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), var(--shadow-lift);
}
.link-card:active { transform: translateY(-1px); }

.link-card .ico {
  position: relative;
  width: 54px; height: 54px;
  border-radius: 16px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 10px 20px -4px var(--ico-shadow, rgba(0, 0, 0, 0.4));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 45%),
    var(--ico-bg, linear-gradient(135deg, #888, #555));
  transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}
.link-card .ico::after {
  content: "";
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 45%;
  border-radius: 15px 15px 40% 40% / 15px 15px 90% 90%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.link-card:hover .ico { transform: scale(1.06) rotate(-2deg); }
.link-card .ico svg { width: 26px; height: 26px; position: relative; z-index: 1; filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35)); }

.link-card.youtube  .ico { --ico-bg: linear-gradient(135deg, #ff4e50, #ff1e1e); --ico-shadow: rgba(255, 30, 30, 0.55); }
.link-card.telegram .ico { --ico-bg: linear-gradient(135deg, #40b9ff, #0088cc); --ico-shadow: rgba(0, 136, 204, 0.55); }
.link-card.discord  .ico { --ico-bg: linear-gradient(135deg, #7289ff, #5865f2); --ico-shadow: rgba(88, 101, 242, 0.55); }

.link-card .meta { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; flex: 1; }
.link-card .meta b    { font-size: 15px; font-weight: 700; color: #fff; }
.link-card .meta span { font-size: 12px; color: var(--text-dim); }

.link-card .arrow { width: 18px; height: 18px; color: var(--text-mut); transition: transform .3s, color .3s; flex-shrink: 0; }
.link-card:hover .arrow { color: #fff; transform: translate(2px, -2px); }

/* ---------- 9. About ---------- */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 16px; }

.bio {
  padding: 20px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  line-height: 1.65;
  color: var(--text);
  font-size: 15px;
  min-height: 180px;
}
.typed::after { content: "▍"; color: var(--c-cool); animation: blink 1s step-end infinite; margin-left: 2px; }
@keyframes blink { 50% { opacity: 0; } }

.interests { display: grid; grid-template-columns: 1fr; gap: 10px; align-content: start; }
.interest {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform .3s, border-color .3s;
}
.interest:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.18); }
.i-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.i-text b { font-size: 14px; color: #fff; }
.i-text span { font-size: 11px; color: var(--text-dim); }

.i-ico {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 14px -4px rgba(0, 0, 0, 0.4);
}
.i-gaming { background: linear-gradient(135deg, var(--c-second), var(--c-main)); }
.i-music  { background: linear-gradient(135deg, var(--c-pop), var(--c-second)); }
.i-code   { background: linear-gradient(135deg, var(--c-cool), var(--c-main)); }
.i-yt     { background: linear-gradient(135deg, var(--orb-4), #f97316); }

/* ---------- 10. Projects ---------- */
.projects { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px; }
.proj {
  padding: 18px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.proj:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.2); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), var(--shadow-lift); }
.proj .emoji { font-size: 26px; }
.proj h3     { margin: 8px 0 6px; font-size: 17px; color: #fff; }
.proj p      { margin: 0 0 14px; font-size: 13px; color: var(--text-dim); line-height: 1.5; }
.proj .tags  { display: flex; flex-wrap: wrap; gap: 6px; }
.proj .tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--c-main) 20%, transparent);
  color: color-mix(in oklab, var(--c-main) 40%, #fff);
  border: 1px solid color-mix(in oklab, var(--c-main) 35%, transparent);
  font-weight: 600;
}

/* ---------- 11. Contact form ---------- */
.contact { display: grid; gap: 12px; max-width: 520px; margin: 0 auto; }
.field {
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.field:focus-within {
  border-color: color-mix(in oklab, var(--c-main) 65%, transparent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--c-main) 20%, transparent);
}
.field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-mut);
  margin-bottom: 4px;
  font-weight: 600;
}
.field input,
.field textarea {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  font: 500 16px 'Inter', sans-serif;  /* 16px — чтобы iOS не зумил */
  outline: none;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-mut); }

.submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-sm);
  border: 0;
  cursor: pointer;
  font: 700 15px 'Inter', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, var(--c-main) 0%, var(--c-second) 50%, var(--c-pop) 100%);
  box-shadow: 0 12px 30px color-mix(in oklab, var(--c-main) 50%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform .2s, box-shadow .3s;
}
.submit svg { width: 18px; height: 18px; transition: transform .3s; }
.submit:hover { transform: translateY(-2px); box-shadow: 0 16px 38px color-mix(in oklab, var(--c-main) 55%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.35); }
.submit:hover svg { transform: translateX(3px); }
.submit:active { transform: translateY(0); }

.direct-mail { margin: 4px 0 0; text-align: center; color: var(--text-mut); font-size: 12.5px; }
.direct-mail a {
  color: var(--c-cool);
  text-decoration: none;
  border-bottom: 1px dashed color-mix(in oklab, var(--c-cool) 40%, transparent);
  transition: color .2s, border-color .2s;
}
.direct-mail a:hover { color: #fff; border-color: #fff; }

/* ---------- 12. Dock ---------- */
.dock {
  position: fixed;
  left: 50%;
  bottom: calc(18px + var(--safe-b));
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 8px;
  z-index: 50;
  border-radius: 22px;
}
.dock button {
  width: 46px; height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  transition: all .25s cubic-bezier(.2, .8, .2, 1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  position: relative; z-index: 1;
}
.dock button:hover {
  background: linear-gradient(135deg, var(--c-main), var(--c-second));
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 24px color-mix(in oklab, var(--c-main) 55%, transparent);
}
.dock button svg { width: 20px; height: 20px; }

/* ---------- 13. Toast ---------- */
.toast {
  position: fixed;
  bottom: calc(90px + var(--safe-b));
  left: 50%;
  transform: translate(-50%, 20px);
  padding: 12px 22px;
  border-radius: var(--r-sm);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: all .3s cubic-bezier(.2, .8, .2, 1);
  z-index: 100;
  background: linear-gradient(135deg, var(--c-main), var(--c-second));
  box-shadow: 0 14px 40px color-mix(in oklab, var(--c-main) 55%, transparent);
  max-width: calc(100vw - 40px);
  text-align: center;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ---------- 14. Responsive ---------- */
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .stage { padding-bottom: calc(100px + var(--safe-b)); }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
    padding: 20px;
  }
  .avatar-wrap { margin: 0 auto; }

  .tab-btn span { display: none; }
  .tab-btn { padding: 10px; width: 44px; height: 44px; justify-content: center; }
  .tab-btn.active { width: auto; padding: 10px 16px; }
  .tab-btn.active span { display: inline; }

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

  .panel { padding: 22px 18px; min-height: 240px; }

  .dock { gap: 6px; padding: 6px; }
  .dock button { width: 42px; height: 42px; border-radius: 12px; }
  .dock button svg { width: 18px; height: 18px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 26px; }
  .link-card { padding: 12px 14px; }
  .link-card .ico { width: 48px; height: 48px; border-radius: 14px; }
  .link-card .ico svg { width: 22px; height: 22px; }
}

/* ---------- 15. A11y / reduced motion ---------- */
:focus-visible {
  outline: 2px solid var(--c-cool);
  outline-offset: 3px;
  border-radius: 10px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .avatar-wrap .ring { animation: none; }
}
