/* ====================================================================
   gofrag-download - Ambient блок загрузки
   -----------------------------------------------------------------
   Используется plg_content_gofragdownload на страницах игр.
   TODO: объединить с /templates/yootheme/css/gofrag.css когда
         основной сайт переедет на эти же цветовые токены.
   ==================================================================== */

/* Дизайн-токены: переиспользуем переменные сайта (см. gofrag.css :root,
   там определены --gf-green, --gf-surface, --gf-text*, --gf-radius и т.д.).
   Свои переменные оставляем только для того, чего нет в общих токенах:
   акцентный gradient кнопки, моно-шрифт, glow-множитель для анимаций. */
:root {
  --gfd-glow:        1.5;       /* множитель для box-shadow и radial halo */
  --gfd-btn-scale:   1;
  --gfd-mono:        ui-monospace, 'Cascadia Code', Menlo, 'DejaVu Sans Mono', monospace;
}

/* ===== Общий контейнер ===== */
.gfd-wrap { font-family: inherit; }
.gfd-wrap * { box-sizing: border-box; }
.gfd-btn {
  appearance: none; border: 0; background: transparent; color: inherit;
  font: inherit; cursor: pointer; text-align: inherit; padding: 0;
  font-family: inherit;
}
.gfd-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 8px; border-radius: 4px;
  font-size: 11px; font-family: var(--gfd-mono);
  letter-spacing: .08em; text-transform: uppercase;
}

/* ===== Ambient карточка ===== */
.amb-wrap {
  position: relative;
  padding: 36px 36px 32px;
  background: radial-gradient(ellipse at top, #131b22 0%, #0b0f13 70%);
  border-radius: 18px;
  border: 1px solid var(--gf-border, rgba(255,255,255,.08));
  overflow: hidden;
  margin: 24px 0;
}
.amb-head { text-align: center; margin-bottom: 28px; }

/* Build chip (мелкая пилюля над H2) */
.amb-build-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(34,197,94,.28);
  background: rgba(34,197,94,.07);
  color: var(--gf-text-dim, #a1a1aa);
  font-family: var(--gfd-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  box-shadow: 0 0 12px rgba(34,197,94, calc(.08 * var(--gfd-glow)));
}
.amb-build-chip b {
  color: var(--gf-green, #22c55e);
  font-weight: 700;
  letter-spacing: .05em;
}

/* H2 - основной заголовок */
.amb-h2 {
  font-size: 30px; font-weight: 700;
  color: var(--gf-text, #e4e4e7); letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.25;
}
.amb-h2__accent {
  color: var(--gf-green, #22c55e);
  font-weight: 700;
}

/* Подзаголовок "Последняя взломанная · обновлено N" */
.amb-sub { font-size: 15px; color: var(--gf-text-dim, #a1a1aa); margin-top: 12px; }

.amb-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 14px;
}

.amb-btn {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  transform: scale(var(--gfd-btn-scale));
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  display: block;
  box-shadow:
    0 12px 40px rgba(34,197,94, calc(.18 * var(--gfd-glow))),
    inset 0 1px 0 rgba(255,255,255,.28);
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s;
}
.amb-btn:hover {
  transform: scale(calc(var(--gfd-btn-scale) * 1.025));
  box-shadow:
    0 16px 50px rgba(34,197,94, calc(.28 * var(--gfd-glow))),
    inset 0 1px 0 rgba(255,255,255,.28);
}
.amb-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.32) 50%, transparent 70%);
  background-size: 220% 100%;
  animation: gfd-sheen 3.8s ease-in-out infinite;
  pointer-events: none;
}
.amb-halo {
  position: absolute; inset: -24px;
  background: radial-gradient(circle at 50% 50%, rgba(34,197,94, calc(.32 * var(--gfd-glow))) 0%, transparent 62%);
  animation: gfd-pulse 2.8s ease-in-out infinite;
  pointer-events: none;
}
.amb-btn-inner {
  position: relative;
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  color: #041607;
}
.amb-btn-icon {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0,0,0,.16);
  color: #041607;
  flex-shrink: 0;
}
.amb-btn-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.amb-btn-label {
  font-size: 19px; font-weight: 800;
  letter-spacing: -0.01em; line-height: 1.2;
}
.amb-btn-meta {
  font-size: 13px; font-family: var(--gfd-mono);
  opacity: .75; line-height: 1.2;
}
.amb-btn-arrow {
  font-size: 24px; font-weight: 800; color: #041607; opacity: .85;
  transition: transform .2s;
  flex-shrink: 0;
}
.amb-btn:hover .amb-btn-arrow { transform: translateX(4px); }

.amb-fill {
  position: absolute; top: 0; left: 0; bottom: 0; width: 0%;
  background: linear-gradient(90deg, rgba(255,255,255,.25), rgba(255,255,255,.45));
  pointer-events: none; transition: none;
}
.amb-btn.filling .amb-fill { width: 100%; transition: width 1s cubic-bezier(.2,.8,.2,1); }

/* ===== Help кнопка (Открой полный гайд) ===== */
.amb-help {
  position: relative; width: 100%;
  padding: 18px 22px;
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  cursor: pointer;
  overflow: hidden;
  display: flex; align-items: center; gap: 14px;
  color: var(--gf-text, #e4e4e7);
  text-align: left;
  text-decoration: none;
  transition: background .2s, border-color .2s;
  margin-top: 14px;
}
.amb-help:hover { background: rgba(34,197,94,.06); border-color: rgba(34,197,94,.22); }
.amb-help-halo {
  position: absolute; right: -60px; top: -60px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(34,197,94, calc(.14 * var(--gfd-glow))) 0%, transparent 70%);
  animation: gfd-drift-r 6s ease-in-out infinite;
  pointer-events: none;
}
.amb-help-icon {
  position: relative;
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(34,197,94,.12); color: var(--gf-green, #22c55e);
  flex-shrink: 0;
}
.amb-help-text {
  position: relative; flex: 1;
  display: flex; flex-direction: column; gap: 3px;
  min-width: 0;
}
.amb-help-title { font-size: 16px; font-weight: 600; color: var(--gf-text, #e4e4e7); line-height: 1.3; }
.amb-help-sub { font-size: 13px; color: var(--gf-text-dim, #a1a1aa); line-height: 1.3; }
.amb-help-arrow { position: relative; color: var(--gf-green, #22c55e); font-weight: 700; font-size: 18px; flex-shrink: 0; }

/* ===== Спойлер "Другие варианты загрузки (uFiler)" ===== */
.amb-other { margin-top: 6px; }
.amb-other-compact { margin-top: 10px; }
.amb-other-compact .amb-other-head { padding: 8px 12px; }
.amb-other-compact .amb-other-label { font-size: 11px; }
.amb-other-compact .amb-other-btn { padding: 10px 14px; }
.amb-other-compact .amb-other-btn-label { font-size: 13px; }
.amb-other-compact .amb-other-btn-meta { font-size: 10px; }
.amb-other-head {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 13px 16px;
  background: transparent;
  border: 1px dashed var(--gf-border-hover, rgba(255,255,255,.14));
  border-radius: 10px;
  color: var(--gf-text-dim, #a1a1aa); cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.amb-other-head:hover {
  border-color: rgba(34,197,94,.35);
  color: var(--gf-text, #e4e4e7);
  background: rgba(34,197,94,.03);
}
.amb-other-chev {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  color: var(--gf-green, #22c55e);
  transition: transform .25s;
  flex-shrink: 0;
}
.amb-other-chev[data-open="true"] { transform: rotate(45deg); }
.amb-other-chev svg { display: block; }
.amb-other-label {
  font-family: var(--gfd-mono); letter-spacing: .05em; font-size: 14px;
}
.amb-other-hint { color: var(--gf-text-muted, #71717a); }
.amb-other-body { margin-top: 8px; display: none; }
.amb-other.is-open .amb-other-body { display: block; }
.amb-other-btn {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 12px 16px;
  background: rgba(34,197,94,.05);
  border: 1px solid rgba(34,197,94,.22);
  border-radius: 10px;
  cursor: pointer; text-align: left;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.amb-other-btn:hover {
  background: rgba(34,197,94,.12);
  border-color: rgba(34,197,94,.4);
}
.amb-other-btn-icon {
  display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 7px;
  background: rgba(34,197,94,.12); color: var(--gf-green, #22c55e);
  flex-shrink: 0;
}
.amb-other-btn-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.amb-other-btn-label { font-size: 14px; font-weight: 600; color: var(--gf-text, #e4e4e7); }
.amb-other-btn-meta { font-size: 11px; font-family: var(--gfd-mono); color: var(--gf-text-dim, #a1a1aa); }
.amb-other-btn-arrow { color: var(--gf-green, #22c55e); font-weight: 700; font-size: 16px; }

/* ===== Заметка Шлёпы (внутри Ambient) ===== */
.shlep-note {
  position: relative;
  background: var(--gf-surface, #1c1c24);
  border: 1px solid rgba(34,197,94,.16);
  border-radius: 14px;
  margin-top: 20px;
  box-shadow: 0 0 30px rgba(34,197,94,.05), 0 2px 12px rgba(0,0,0,.3);
  overflow: visible;
}
.shlep-note__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 0 0 20px;
  min-height: 46px;
  background: linear-gradient(135deg, rgba(34,197,94,.09) 0%, rgba(34,197,94,.02) 100%);
  border-bottom: 1px solid rgba(34,197,94,.10);
  border-radius: 14px 14px 0 0;
  position: relative;
  overflow: visible;
}
.shlep-note__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: #1c1c24; background: #22c55e;
  padding: 5px 14px; border-radius: 8px;
  box-shadow: 0 0 10px rgba(34,197,94,.3);
  font-family: var(--gfd-mono);
}
.shlep-note__badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #1c1c24;
}
.shlep-note__cat-head {
  width: 100px; height: auto; flex-shrink: 0;
  margin-top: -30px; margin-bottom: -2px; margin-right: 8px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.5));
  pointer-events: none;
  user-select: none;
}
.shlep-note__body {
  padding: 20px 24px; position: relative;
  max-height: none; overflow: hidden;
  transition: max-height .3s ease;
}
.shlep-note__body:not(.expanded) { max-height: 300px; }
.shlep-note__fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 90px;
  background: linear-gradient(180deg, transparent 0%, var(--gf-surface, #1c1c24) 85%);
  pointer-events: none;
}
.shlep-note__more-wrap {
  padding: 0 24px 20px; margin-top: -8px;
  position: relative; z-index: 2;
}
.shlep-note__more {
  padding: 9px 16px;
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 8px;
  color: var(--gf-green, #22c55e);
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.shlep-note__more:hover { background: rgba(34,197,94,.16); border-color: rgba(34,197,94,.5); }
.shlep-note__section {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 700; color: var(--gf-text, #e4e4e7);
  margin: 20px 0 12px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(34,197,94,.12);
  letter-spacing: .02em;
}
.shlep-note__body > .shlep-note__section:first-child { margin-top: 0; }
.shlep-note__section::before {
  content: ''; width: 4px; min-height: 18px; align-self: stretch;
  border-radius: 2px; background: var(--gf-green, #22c55e);
  box-shadow: 0 0 6px rgba(34,197,94,.45); flex-shrink: 0;
}
.shlep-note__body p {
  font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.78);
  margin: 8px 0; text-wrap: pretty;
}
.shlep-note__body ol, .shlep-note__body ul {
  padding-left: 28px; margin: 10px 0;
}
.shlep-note__body li {
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,.78); margin-bottom: 6px;
}
.shlep-note__body ol > li::marker {
  color: var(--gf-green, #22c55e); font-weight: 700;
}
.shlep-note__body ul > li::marker { color: var(--gf-green, #22c55e); }
.shlep-note__body code {
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.15);
  color: #4ade80;
  padding: 2px 7px; border-radius: 5px;
  font-size: 13px; font-family: var(--gfd-mono);
}
.shlep-note__body a {
  color: var(--gf-green, #22c55e);
  text-decoration: none;
  border-bottom: 1px solid rgba(34,197,94,.3);
  transition: border-color .2s, color .2s;
}
.shlep-note__body a:hover {
  color: #4ade80;
  border-color: #4ade80;
}
.shlep-note__body strong { color: #fff; font-weight: 700; }
.shlep-note__body em { color: rgba(255,255,255,.88); font-style: italic; }

/* Аккордеон details/summary в заметке Шлёпы - стиль живёт в gofrag.css
   (единый селектор .gf-note__details, .shlep-note__details), здесь не дублируем. */

/* ===== Секция "Другие варианты загрузки" (аккордеон снизу) ===== */
.rel-section { margin-top: 24px; }
.rel-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin: 36px 0 14px;
}
.rel-title {
  font-size: 22px; font-weight: 700; color: var(--gf-text, #e4e4e7);
  letter-spacing: -0.01em;
}
.rel-intro {
  font-size: 13px; color: var(--gf-text-dim, #a1a1aa);
  margin-top: 4px; max-width: 560px;
}
.rel-count {
  font-size: 12px; font-family: var(--gfd-mono);
  color: var(--gf-text-dim, #a1a1aa); letter-spacing: .1em;
  white-space: nowrap; margin-left: 16px;
}

.rel-list { display: flex; flex-direction: column; gap: 8px; }
.rel-card {
  background: var(--gf-surface, #1c1c24);
  border: 1px solid var(--gf-border, rgba(255,255,255,.08));
  border-radius: 12px; overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.rel-card.open {
  border-color: rgba(34,197,94,.3);
  box-shadow:
    0 0 0 1px rgba(34,197,94, calc(.08 * var(--gfd-glow))),
    0 10px 30px rgba(0,0,0,.3);
}
.rel-head-btn {
  display: flex; align-items: center; gap: 14px;
  width: 100%; padding: 14px 16px;
  cursor: pointer;
  transition: background .2s;
}
.rel-head-btn:hover { background: rgba(34,197,94,.04); }
.rel-icon {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(34,197,94,.08); color: var(--gf-green, #22c55e);
  flex-shrink: 0;
}
.rel-main { flex: 1; min-width: 0; text-align: left; }
.rel-tags {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 5px;
}
.rel-chip-tag {
  background: rgba(34,197,94,.08); color: var(--gf-green, #22c55e);
  border: 1px solid rgba(34,197,94,.22);
  padding: 3px 8px; border-radius: 4px;
  font-size: 11px; font-family: var(--gfd-mono);
  letter-spacing: .08em; text-transform: uppercase;
}
.rel-meta {
  font-size: 11px; font-family: var(--gfd-mono);
  color: var(--gf-text-muted, #71717a);
}
.rel-title-text { font-size: 15px; font-weight: 600; color: var(--gf-text, #e4e4e7); }
.rel-chevron {
  color: var(--gf-text-dim, #a1a1aa); font-size: 18px;
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
  flex-shrink: 0; width: 20px; text-align: center;
}
.rel-card.open .rel-chevron { transform: rotate(180deg); color: var(--gf-green, #22c55e); }

/* ---- Тело раскрытой карточки: action-tray + reading zone ---- */
.rel-body {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--gf-border, rgba(255,255,255,.08));
}
.rel-card.open .rel-body { display: flex; }

/* Action tray: плотная зона с кнопками на чуть тёмном фоне */
.rel-actions {
  padding: 14px 18px 16px;
  background: rgba(0,0,0,.18);
  border-bottom: 1px solid var(--gf-border, rgba(255,255,255,.08));
}
.rel-actions__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.rel-dl {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(34,197,94,.4);
  background: rgba(34,197,94,.14);
  border-radius: 8px;
  color: var(--gf-green, #22c55e);
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  letter-spacing: .01em;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
}
.rel-dl:hover {
  background: rgba(34,197,94,.22);
  border-color: rgba(34,197,94,.6);
  color: var(--gf-green, #22c55e);
  box-shadow: 0 0 0 1px rgba(34,197,94,.25);
}
.rel-dl svg { flex-shrink: 0; }
.rel-dl__label { flex: 1; min-width: 0; }
.rel-dl__meta {
  font-family: var(--gfd-mono);
  font-size: 11px; font-weight: 500;
  color: var(--gf-text-dim, #a1a1aa);
  letter-spacing: 0;
  white-space: nowrap;
}

/* uFiler - inline <details>, тихий, не перетягивает внимание */
.rel-ufiler { margin-top: 10px; }
.rel-ufiler__summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 2px;
  color: var(--gf-text-muted, #71717a);
  font-family: var(--gfd-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  user-select: none;
  transition: color .15s;
}
.rel-ufiler__summary::-webkit-details-marker { display: none; }
.rel-ufiler__summary::marker { content: ''; }
.rel-ufiler__summary:hover { color: var(--gf-green, #22c55e); }
.rel-ufiler__plus {
  display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px;
  color: var(--gf-green, #22c55e);
  transition: transform .2s;
}
.rel-ufiler__plus svg { display: block; }
.rel-ufiler[open] .rel-ufiler__plus { transform: rotate(45deg); }
.rel-ufiler[open] .rel-ufiler__summary { color: var(--gf-green, #22c55e); }
.rel-ufiler__link {
  display: flex; align-items: center; gap: 10px;
  margin-top: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(34,197,94,.18);
  background: rgba(34,197,94,.03);
  border-radius: 8px;
  color: var(--gf-text, #e4e4e7);
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.rel-ufiler__link:hover {
  background: rgba(34,197,94,.08);
  border-color: rgba(34,197,94,.3);
  color: var(--gf-text, #e4e4e7);
}
.rel-ufiler__link svg { flex-shrink: 0; color: var(--gf-green, #22c55e); }
.rel-ufiler__link-meta {
  font-family: var(--gfd-mono);
  font-size: 11px; font-weight: 500;
  color: var(--gf-text-dim, #a1a1aa);
  margin-left: auto;
  white-space: nowrap;
}

/* Content zone: описание на всю ширину, комфортная читалка */
.rel-content {
  padding: 22px 24px 24px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
}
.rel-content:empty { display: none; }
.rel-content > :first-child { margin-top: 0; }
.rel-content > :last-child { margin-bottom: 0; }
.rel-content p { margin: 10px 0; text-wrap: pretty; }
.rel-content ol, .rel-content ul { padding-left: 28px; margin: 12px 0; }
.rel-content li { margin-bottom: 6px; }
.rel-content ol > li::marker { color: var(--gf-green, #22c55e); font-weight: 700; }
.rel-content ul > li::marker { color: var(--gf-green, #22c55e); }
.rel-content code {
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.15);
  color: #4ade80;
  padding: 2px 7px; border-radius: 5px;
  font-size: 13px; font-family: var(--gfd-mono);
}
.rel-content strong { color: #fff; font-weight: 700; }
.rel-content em { color: rgba(255,255,255,.88); font-style: italic; }
.rel-content a {
  color: var(--gf-green, #22c55e);
  text-decoration: none;
  border-bottom: 1px solid rgba(34,197,94,.3);
  transition: border-color .2s, color .2s;
}
.rel-content a:hover { color: #4ade80; border-color: #4ade80; }
/* Заголовки секций внутри описания уже стилизованы через .shlep-note__section выше */

/* ===== Анимации ===== */
@keyframes gfd-sheen {
  0% { background-position: -100% 0 }
  60%, 100% { background-position: 220% 0 }
}
@keyframes gfd-pulse {
  0%, 100% { opacity: .55; transform: scale(1) }
  50% { opacity: 1; transform: scale(1.05) }
}
@keyframes gfd-drift-r {
  0%, 100% { transform: translate(0, 0) }
  50% { transform: translate(-40px, 30px) }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .gfd-wrap *,
  .gfd-wrap *::before,
  .gfd-wrap *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== Мобильная раскладка ===== */
@media (max-width: 720px) {
  .amb-wrap { padding: 24px 20px 20px; }
  .amb-row { grid-template-columns: 1fr; }
  .rel-actions { padding: 12px 14px 14px; }
  .rel-actions__buttons { grid-template-columns: 1fr; }
  .rel-content { padding: 18px 16px 20px; font-size: 16px; }
  .rel-ufiler__link-meta { display: none; }
  .shlep-note__cat-head { width: 70px; margin-top: -24px; }
  .shlep-note__head { padding-left: 16px; min-height: 40px; }
  .shlep-note__badge { font-size: 11px; padding: 4px 10px; }
  .shlep-note__body { padding: 16px; }
  .shlep-note__more-wrap { padding: 0 16px 16px; }
}
