:root {
  --bg: #0a0a0f;
  --surface: #15151c;
  --surface-2: #1f1f29;
  --surface-3: #2a2a35;
  --border: #2a2a35;
  --text: #e5e5ea;
  --text-dim: #8a8a95;
  --primary: #06b6d4;
  --primary-hover: #0891b2;
  --primary-glow: rgba(6, 182, 212, 0.25);
  --accent: #fbbf24;
  --danger: #ef4444;
  --radius: 10px;
  --radius-lg: 16px;
  --t-fast: 150ms;
  --t-med: 240ms;

  --plyr-color-main: var(--primary);
  --plyr-control-radius: 8px;
  --plyr-control-spacing: 12px;
  --plyr-font-family: inherit;
}

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

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
}

html {
  overflow-y: auto;
}

body {
  color: var(--text);
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: visible;
}

button,
input {
  font: inherit;
  color: inherit;
}

input {
  background: transparent;
  border: none;
  outline: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ===== Splash ===== */
.splash {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: radial-gradient(circle at center, #15151c 0%, #0a0a0f 60%);
  z-index: 1000;
  transition: opacity var(--t-med);
}

.splash--hidden {
  opacity: 0;
  pointer-events: none;
}

.splash__logo {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--primary);
  text-shadow: 0 0 30px var(--primary-glow);
}

.splash__text {
  color: var(--text-dim);
  font-size: 15px;
}

/* ===== Auth screen ===== */
.auth-screen {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(circle at top, #15151c 0%, #0a0a0f 60%);
  z-index: 500;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.auth-card__logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--primary);
  margin-bottom: 24px;
  text-shadow: 0 0 24px var(--primary-glow);
}

.auth-card__title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
}

.auth-card__hint {
  margin: 0 0 22px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

.auth-input {
  width: 100%;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 6px;
  padding: 14px 16px;
  margin-bottom: 14px;
  background: var(--surface-2);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  text-transform: uppercase;
  transition: border-color var(--t-fast);
}

.auth-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.btn--big {
  width: 100%;
  min-height: 52px;
  font-size: 16px;
}

.auth-card__error {
  margin: 14px 0 0;
  color: var(--danger);
  font-size: 14px;
}

.auth-card__tip {
  margin: 22px 0 0;
  font-size: 12px;
  color: var(--text-dim);
}

/* ===== Header / Nav ===== */
.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.app__header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.4));
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  flex-shrink: 0;
}

.brand__mark {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 12px var(--primary-glow));
}

.brand__name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 3px;
}

.app__nav {
  display: flex;
  gap: 4px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.app__nav::-webkit-scrollbar {
  display: none;
}

.nav-btn {
  background: transparent;
  color: var(--text-dim);
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background var(--t-fast),
    color var(--t-fast);
}

.nav-btn:hover {
  background: var(--surface);
  color: var(--text);
}

.nav-btn--active {
  background: var(--primary);
  color: #08222a;
}

.nav-btn--active:hover {
  background: var(--primary-hover);
  color: #08222a;
}

.header__meta {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  white-space: nowrap;
}

.pill--muted {
  color: var(--text-dim);
}

/* ===== Main / Views ===== */
.app__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px 24px 48px;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.view {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.view__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.view__subtitle {
  margin: 12px 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dim);
}

.view__hint {
  margin: 0;
  font-size: 13px;
  color: var(--text-dim);
}

.view-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.empty-state {
  margin: 32px 0;
  padding: 32px;
  text-align: center;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

/* ===== Poster grid ===== */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}

.grid-sentinel {
  grid-column: 1 / -1;
  padding: 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
}

.poster-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform var(--t-fast),
    box-shadow var(--t-fast);
  border: 1px solid transparent;
}

.poster-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  border-color: var(--primary);
}

.poster-card__img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: var(--surface-2);
}

.poster-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 12px;
  text-align: center;
  padding: 12px;
  aspect-ratio: 2 / 3;
}

.poster-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 10px 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  pointer-events: none;
}

.poster-card__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.poster-card__meta {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.poster-card__rating {
  color: var(--accent);
  font-weight: 700;
}

.poster-card__library-flag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--primary);
  color: #08222a;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
}

/* ===== Search ===== */
.search-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 6px 6px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color var(--t-fast);
}

.search-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.search-form input {
  flex: 1;
  padding: 12px 0;
  font-size: 16px;
}

.search-form input::placeholder {
  color: var(--text-dim);
}

/* ===== Player section ===== */
.player-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.player-shell {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--border);
}

.player-shell .plyr {
  border-radius: var(--radius-lg);
}

.player-shell video {
  width: 100%;
  display: block;
}

.player-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 2;
  transition: opacity var(--t-med);
}

.player-overlay--hidden {
  opacity: 0;
  pointer-events: none;
}

.overlay-spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  animation: spin 0.8s linear infinite;
}

.overlay-text {
  font-size: 15px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

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

.player-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 4px;
}

.player-title {
  font-size: 17px;
  font-weight: 700;
}

.member-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dim);
  flex-wrap: wrap;
}

.member-strip__count {
  color: var(--text);
  font-weight: 600;
}

.member-strip__names {
  color: var(--text-dim);
  font-size: 12px;
}

.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
}

.lang-select {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 8px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
}

.lang-select:hover {
  border-color: var(--primary);
}

.lang-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-glow);
}

/* ===== Buttons ===== */
.btn {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  transition:
    background var(--t-fast),
    transform var(--t-fast),
    border-color var(--t-fast);
}

.btn:hover {
  background: var(--surface-3);
}

.btn:active {
  transform: scale(0.97);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn--primary {
  background: var(--primary);
  color: #08222a;
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn--ghost {
  background: transparent;
  color: var(--text-dim);
}

.btn--ghost:hover {
  background: var(--surface-2);
  color: var(--text);
}

.btn--danger {
  background: transparent;
  color: var(--danger);
  border-color: rgba(239, 68, 68, 0.35);
}

.btn--danger:hover {
  background: rgba(239, 68, 68, 0.12);
  border-color: var(--danger);
}

.btn--sm {
  min-height: 32px;
  padding: 6px 12px;
  font-size: 13px;
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  animation: fadeIn var(--t-med);
}

.modal__panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: slideUp var(--t-med);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
}

.modal__panel--small {
  max-width: 480px;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: background var(--t-fast);
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.35;
  filter: blur(0px);
  z-index: 0;
}

.modal__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(21, 21, 28, 0.4) 0%,
    rgba(21, 21, 28, 0.95) 80%
  );
}

.modal__body {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 24px;
  padding: 24px;
  overflow-y: auto;
}

.modal__body--vertical {
  flex-direction: column;
}

.modal__poster {
  width: 200px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--surface-2);
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.modal__info {
  flex: 1;
  min-width: 0;
}

.modal__title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 800;
}

.modal__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-dim);
}

.modal__meta__rating {
  color: var(--accent);
  font-weight: 700;
}

.modal__tagline {
  margin: 0 0 12px;
  font-style: italic;
  color: var(--text-dim);
  font-size: 14px;
}

.modal__overview {
  margin: 0 0 16px;
  line-height: 1.55;
  font-size: 14px;
}

.modal__library-status {
  background: var(--surface-2);
  border: 1px solid var(--primary);
  padding: 10px 14px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 13px;
}

.modal__library-status code {
  font-family: ui-monospace, "Cascadia Mono", "Consolas", monospace;
  font-size: 12px;
  color: var(--primary);
  word-break: break-all;
}

.modal__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.modal__source-form {
  display: flex;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
}

.modal__source-form input {
  flex: 1;
  padding: 10px 12px;
  font-size: 14px;
}

.modal__candidates {
  margin-top: 16px;
  padding: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.modal__candidates-title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
}

.modal__candidates-hint {
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--text-dim);
}

.candidates-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.candidate-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--t-fast), transform var(--t-fast);
}

.candidate-row:hover {
  border-color: var(--primary);
  transform: translateX(2px);
}

.candidate-row__poster {
  width: 40px;
  height: 60px;
  object-fit: cover;
  background: var(--surface-2);
  border-radius: 4px;
  flex-shrink: 0;
}

.candidate-row__poster--placeholder {
  background: var(--surface-2);
}

.candidate-row__info {
  flex: 1;
  min-width: 0;
}

.candidate-row__title {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.candidate-row__meta {
  font-size: 11px;
  color: var(--text-dim);
}

.candidate-row__score {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.form-field span {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-field input {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 14px;
  transition: border-color var(--t-fast);
}

.form-field input:focus {
  border-color: var(--primary);
}

.form-advanced {
  margin-top: 4px;
  padding: 8px 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.form-advanced summary {
  cursor: pointer;
  font-size: 13px;
  color: var(--text-dim);
}

.form-advanced[open] summary {
  margin-bottom: 8px;
  color: var(--text);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== Provider cards ===== */
.provider-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.provider-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition:
    border-color var(--t-fast),
    transform var(--t-fast);
}

.provider-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.provider-card--active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-glow);
}

.provider-card__name {
  font-weight: 700;
  margin: 0 0 6px;
  font-size: 15px;
}

.provider-card__url {
  font-size: 11px;
  color: var(--text-dim);
  word-break: break-all;
  margin-bottom: 8px;
}

.provider-card__stats {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-dim);
}

.provider-card__count {
  color: var(--primary);
  font-weight: 700;
}

.provider-card__actions {
  display: flex;
  gap: 4px;
  margin-top: 10px;
}

/* ===== Admin ===== */
.admin {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
}

.admin summary {
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  list-style: none;
  position: relative;
  padding-left: 18px;
}

.admin summary::before {
  content: "▸";
  position: absolute;
  left: 0;
  transition: transform var(--t-fast);
}

.admin[open] summary::before {
  transform: rotate(90deg);
}

.admin[open] summary {
  color: var(--text);
  margin-bottom: 14px;
}

.admin__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table th {
  text-align: left;
  color: var(--text-dim);
  font-weight: 600;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.admin-table td {
  padding: 10px;
  border-bottom: 1px solid var(--border);
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table td.actions {
  text-align: right;
  white-space: nowrap;
}

/* ===== Toasts ===== */
.toasts {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 300;
  max-width: 340px;
}

.toast {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: toastIn var(--t-med) ease-out;
}

.toast--error {
  border-color: var(--danger);
  border-left-width: 3px;
}

.toast--ok {
  border-color: var(--primary);
  border-left-width: 3px;
}

@keyframes toastIn {
  from {
    transform: translateX(20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===== Responsive tweaks ===== */
@media (max-width: 720px) {
  .app__header {
    flex-wrap: wrap;
  }
  .modal__body {
    flex-direction: column;
  }
  .modal__poster {
    width: 140px;
    margin: 0 auto;
  }
}

/* ===== Low-fi mode (Second Life CEF — old Chromium, slow GPU) ===== */
.low-fi *,
.low-fi *::before,
.low-fi *::after {
  transition: none !important;
  animation: none !important;
}

.low-fi .app__header {
  backdrop-filter: none;
  background: rgba(0, 0, 0, 0.85);
}

.low-fi .modal__overlay {
  backdrop-filter: none;
  background: rgba(0, 0, 0, 0.94);
}

.low-fi .modal__backdrop {
  display: none;
}

.low-fi .splash,
.low-fi .auth-screen {
  background: var(--bg);
}

.low-fi .splash__logo,
.low-fi .auth-card__logo,
.low-fi .brand__name {
  text-shadow: none;
}

.low-fi .brand__mark {
  filter: none;
}

.low-fi .poster-card:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border);
}

.low-fi .poster-card {
  box-shadow: none;
}

.low-fi .player-shell {
  box-shadow: 0 0 0 1px var(--border);
}

.low-fi .toast {
  box-shadow: none;
  animation: none;
}

.low-fi .auth-input:focus,
.low-fi .source-form:focus-within,
.low-fi .search-form:focus-within {
  box-shadow: none;
}

.low-fi .overlay-spinner {
  animation: spin 1.6s linear infinite;
  /* Keep spinner alive but slower so it still gives feedback */
}

.low-fi .poster-card__img {
  image-rendering: -webkit-optimize-contrast;
}
