/* ============================================================
   STYLE.CSS — Основные стили midgamex
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---- Variables ---- */
:root {
  --bg: #0d0d1a;
  --bg2: #13132a;
  --bg3: #1a1a35;
  --accent: #7c6fff;
  --accent2: #a78bfa;
  --grad1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --grad2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --grad3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --grad4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --card: rgba(255,255,255,0.04);
  --card-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(124,111,255,0.5);
  --text: #f0f0ff;
  --text2: rgba(240,240,255,0.6);
  --text3: rgba(240,240,255,0.35);
  --success: #4ade80;
  --danger: #f87171;
  --warning: #fbbf24;
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- Background ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(124,111,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(167,139,250,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(240,147,251,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(124,111,255,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ---- Typography ---- */
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-weight: 700; line-height: 1.2; }
p { line-height: 1.7; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(13,13,26,0.85);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
  cursor: pointer;
}
.logo-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.logo-text span { color: var(--accent2); }

.search-wrap {
  flex: 1;
  max-width: 480px;
  position: relative;
}
.search-input {
  width: 100%;
  padding: 10px 16px 10px 44px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}
.search-input::placeholder { color: var(--text3); }
.search-input:focus {
  background: var(--card-hover);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,111,255,0.15);
}
.search-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text3);
  pointer-events: none;
}

/* ---- Language switcher ---- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 3px;
  flex-shrink: 0;
  margin-left: auto;
}
.lang-btn {
  width: 32px; height: 28px;
  border-radius: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  line-height: 1;
  opacity: 0.5;
}
.lang-btn:hover { opacity: 0.85; background: rgba(255,255,255,0.06); }
.lang-btn.active {
  background: rgba(124,111,255,0.22);
  opacity: 1;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  z-index: 1;
  padding: 60px 24px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(124,111,255,0.15);
  border: 1px solid rgba(124,111,255,0.3);
  font-size: 0.8rem;
  color: var(--accent2);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.hero p {
  color: var(--text2);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--grad1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat span {
  font-size: 0.8rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
.main {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ---- Filters ---- */
.filters-wrap {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.filters-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.filters-label {
  font-size: 0.8rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  flex-shrink: 0;
  margin-right: 4px;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 0.875rem;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-weight: 500;
}
.filter-btn:hover {
  background: var(--card-hover);
  border-color: rgba(124,111,255,0.4);
  color: var(--text);
}
.filter-btn.active {
  background: var(--grad1);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(124,111,255,0.35);
}
.filter-btn .count {
  background: rgba(255,255,255,0.2);
  padding: 1px 7px;
  border-radius: 20px;
  font-size: 0.75rem;
}
.filter-btn.active .count { background: rgba(255,255,255,0.25); }

.sort-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.sort-select {
  padding: 7px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text2);
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  appearance: none;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(240,240,255,0.4)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.sort-select:focus { border-color: var(--accent); }
.results-count {
  font-size: 0.85rem;
  color: var(--text3);
  margin-left: auto;
}

/* ---- Section Title ---- */
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}
.section-title .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad1);
  flex-shrink: 0;
}

/* ---- Featured Strip ---- */
.featured-section { margin-bottom: 40px; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

/* ============================================================
   PROGRAM CARD
   ============================================================ */
.program-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.program-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad1);
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: var(--radius);
  z-index: 0;
}
.program-card:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.program-card:hover::before { opacity: 0.04; }
.program-card > * { position: relative; z-index: 1; }

.card-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.card-icon {
  width: 72px; height: 72px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.1rem;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.card-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.card-icon-emoji {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.card-meta { flex: 1; min-width: 0; }
.card-name {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-category {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.73rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.card-version {
  font-size: 0.75rem;
  color: var(--text3);
  margin-top: 2px;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--warning);
  font-weight: 600;
}
.card-size {
  font-size: 0.78rem;
  color: var(--text3);
}
.card-install-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 8px;
  background: var(--grad1);
  border: none;
  color: #fff;
  font-size: 0.82rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.card-install-btn:hover {
  opacity: 0.9;
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(124,111,255,0.4);
}
.card-install-btn:active { transform: scale(0.97); }

.card-badge-featured {
  position: absolute;
  top: 14px; right: 14px;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--grad2);
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}

/* ---- Programs Grid ---- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

/* ---- Empty State ---- */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
}
.empty-state .empty-icon { font-size: 3.5rem; margin-bottom: 16px; opacity: 0.5; }
.empty-state h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--text2); }
.empty-state p { color: var(--text3); font-size: 0.9rem; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
}
.page-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 0.875rem;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  font-weight: 500;
}
.page-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent2);
  background: rgba(124,111,255,0.1);
}
.page-btn.active {
  background: var(--grad1);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(124,111,255,0.35);
}
.page-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.page-ellipsis {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text3); font-size: 0.875rem;
}

/* ============================================================
   PROGRAM PAGE
   ============================================================ */
.prog-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 32px;
}
.prog-back:hover {
  border-color: var(--accent);
  color: var(--accent2);
  background: rgba(124,111,255,0.08);
}

.prog-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .prog-layout { grid-template-columns: 1fr; }
}

.prog-main { min-width: 0; }
.prog-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}
.prog-icon {
  width: 88px; height: 88px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
  flex-shrink: 0;
  overflow: hidden;
}
.prog-icon img { width: 100%; height: 100%; object-fit: cover; }
.prog-info { flex: 1; }
.prog-info h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 8px;
}
.prog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.prog-tag {
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(124,111,255,0.12);
  border: 1px solid rgba(124,111,255,0.25);
  font-size: 0.78rem;
  color: var(--accent2);
  font-weight: 500;
}
.prog-developer { font-size: 0.85rem; color: var(--text3); }

.prog-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}
.prog-gallery img {
  width: 100%; border-radius: var(--radius-sm);
  aspect-ratio: 16/9;
  object-fit: cover;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.prog-gallery img:hover { border-color: var(--accent); transform: scale(1.01); }

.prog-desc-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.prog-description {
  color: var(--text2);
  font-size: 0.95rem;
  white-space: pre-line;
}

/* Sidebar */
.prog-sidebar { position: sticky; top: 88px; }
.prog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.prog-install-btn {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--grad1);
  border: none;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.prog-install-btn:hover {
  opacity: 0.9;
  box-shadow: 0 8px 24px rgba(124,111,255,0.4);
  transform: translateY(-1px);
}
.prog-install-btn:active { transform: translateY(0); }

.prog-meta-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.prog-meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.prog-meta-item:last-child { border-bottom: none; padding-bottom: 0; }
.prog-meta-label { color: var(--text3); font-weight: 500; }
.prog-meta-value { color: var(--text); font-weight: 600; }
.prog-rating-stars { color: var(--warning); }

.prog-related-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 32px 0 16px;
}
.prog-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.prog-related-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.prog-related-card:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
}
.prog-related-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.prog-related-info { min-width: 0; }
.prog-related-name { font-size: 0.875rem; font-weight: 600; }
.prog-related-desc {
  font-size: 0.75rem;
  color: var(--text3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   TOAST
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg3);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  font-size: 0.875rem;
  color: var(--text);
  box-shadow: var(--shadow);
  animation: slideIn 0.25s ease;
  max-width: 320px;
}
.toast.success { border-color: rgba(74,222,128,0.4); }
.toast.success .toast-icon { color: var(--success); }
.toast.error { border-color: rgba(248,113,113,0.4); }
.toast.error .toast-icon { color: var(--danger); }
.toast.info .toast-icon { color: var(--accent2); }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(30px); }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  padding: 13px 24px;
  margin-bottom: 24px;
  background: rgba(74, 222, 128, 0.05);
  border-top: 1px solid rgba(74, 222, 128, 0.14);
  border-bottom: 1px solid rgba(74, 222, 128, 0.14);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  color: var(--text2);
  font-weight: 500;
}
.trust-item svg {
  color: var(--success);
  flex-shrink: 0;
}
.trust-divider {
  width: 1px;
  height: 14px;
  background: rgba(74, 222, 128, 0.2);
}
@media (max-width: 640px) {
  .trust-divider { display: none; }
  .trust-strip { gap: 8px 16px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  color: var(--text3);
  font-size: 0.82rem;
}
.footer a { color: var(--accent2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero { padding: 40px 16px 28px; }
  .main { padding: 0 16px 60px; }
  .header-inner { padding: 0 16px; gap: 12px; }
  .search-wrap { max-width: none; }
  .hero-stats { gap: 20px; }
  .programs-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .prog-header { flex-direction: column; }
  .prog-icon { width: 70px; height: 70px; font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .header-actions .btn-ghost span { display: none; }
  .filter-btn .count { display: none; }
}

/* ---- Skeleton loader ---- */
.skeleton {
  background: linear-gradient(90deg, var(--card) 25%, rgba(255,255,255,0.06) 50%, var(--card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
