:root {
  color-scheme: light;
  --bg: #f3f6fa;
  --panel: #ffffff;
  --field: #f7f8fa;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(29, 29, 31, 0.12);
  --accent: #007aff;
  --accent-dark: #0066d6;
  --soft: rgba(0, 122, 255, 0.09);
  --ok: #34c759;
  --danger: #ff3b30;
  --shadow: 0 18px 48px rgba(20, 35, 60, 0.09);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #120e0a;
    --panel: #221c15;
    --field: #1e1811;
    --ink: #f6f0e6;
    --muted: #a89a89;
    --line: #3d342a;
    --accent: #cf6a35;
    --accent-dark: #f0a868;
    --soft: color-mix(in srgb, var(--accent) 18%, transparent);
    --ok: #30d158;
    --danger: #ff8a78;
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #120e0a;
  --panel: #221c15;
  --field: #1e1811;
  --ink: #f6f0e6;
  --muted: #a89a89;
  --line: #3d342a;
  --accent: #cf6a35;
  --accent-dark: #f0a868;
  --soft: color-mix(in srgb, var(--accent) 18%, transparent);
  --ok: #30d158;
  --danger: #ff8a78;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); }
body { min-width: 320px; margin: 0; background: var(--bg); color: var(--ink); font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", sans-serif; }
button, input, select, textarea { font: inherit; color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
[hidden] { display: none !important; }
h1, h2, h3, p { margin: 0; }

.book-app { width: min(1240px, calc(100% - 44px)); margin: 12px auto 64px; }
.book-header { min-height: 164px; padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.book-header h1 { margin-top: 6px; font-size: clamp(38px, 5vw, 58px); line-height: 1; letter-spacing: 0; }
.eyebrow { color: var(--muted); font-size: 11px; font-weight: 800; }
.book-header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.book-account { display: inline-flex; align-items: center; gap: 8px; }
.book-account > span:last-child { display: grid; gap: 2px; }
.book-account small { color: var(--muted); font-size: 10px; font-weight: 750; }
.book-account strong { font-size: 12px; }
.account-status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px color-mix(in srgb, var(--ok) 14%, transparent); }
.account-status-dot.is-error { background: var(--danger); box-shadow: 0 0 0 3px color-mix(in srgb, var(--danger) 14%, transparent); }

.primary-button, .quiet-button, .icon-button, .danger-button {
  min-height: 42px; padding: 0 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--panel); font-weight: 800;
}
.primary-button { border-color: var(--accent); background: var(--accent); color: #fff; box-shadow: 0 10px 26px color-mix(in srgb, var(--accent) 20%, transparent); }
.quiet-button:hover, .icon-button:hover { border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); color: var(--accent-dark); }
.icon-button { width: 42px; padding: 0; display: inline-grid; place-items: center; }
.icon-button svg { width: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.danger-button { color: var(--danger); }

.book-discovery { margin: 18px 0; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.book-discovery .book-section-heading { margin: 0; align-items: center; }
.book-discovery .book-section-heading h2 { font-size: 21px; }
.discovery-tabs { display: inline-flex; gap: 4px; padding: 3px; border: 1px solid var(--line); border-radius: 10px; background: var(--field); }
.discovery-tabs button { min-height: 34px; padding: 0 12px; border: 0; border-radius: 7px; background: transparent; color: var(--muted); font-weight: 800; }
.discovery-tabs button.is-active { background: var(--ink); color: var(--panel); }
.discovery-note { margin: 8px 0 14px; color: var(--muted); font-size: 12px; }
.book-discovery-rail { min-height: 152px; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 31%); gap: 10px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline proximity; scrollbar-width: thin; }
.discovery-book { min-width: 0; padding: 10px; display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--field); scroll-snap-align: start; }
.discovery-cover { width: 76px; aspect-ratio: 2 / 3; overflow: hidden; display: grid; place-items: center; border-radius: 6px; background: color-mix(in srgb, var(--accent) 12%, var(--panel)); color: var(--muted); font-size: 26px; font-weight: 850; }
.discovery-cover img { width: 100%; height: 100%; object-fit: cover; }
.discovery-cover i { font-style: normal; }
.discovery-book > div { min-width: 0; display: grid; align-content: start; gap: 5px; }
.discovery-book strong, .discovery-book small, .discovery-book p { overflow: hidden; text-overflow: ellipsis; }
.discovery-book strong { white-space: nowrap; }
.discovery-book small { color: var(--muted); font-size: 11px; white-space: nowrap; }
.discovery-book p { min-height: 32px; color: var(--accent-dark); font-size: 11px; font-weight: 750; line-height: 1.4; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.discovery-book .quiet-button { width: max-content; min-height: 34px; padding: 0 10px; border-radius: 8px; font-size: 11px; }
.book-recommendation-feedback { position: relative; }
.book-recommendation-feedback summary { width: max-content; color: var(--muted); font-size: 11px; font-weight: 750; cursor: pointer; list-style: none; }
.book-recommendation-feedback summary::-webkit-details-marker { display: none; }
.book-recommendation-feedback > div { position: absolute; z-index: 4; left: 0; bottom: calc(100% + 5px); width: 136px; padding: 5px; display: grid; gap: 2px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); box-shadow: var(--shadow); }
.book-recommendation-feedback button { min-height: 32px; padding: 0 8px; border: 0; border-radius: 6px; background: transparent; color: var(--ink); text-align: left; cursor: pointer; }
.book-recommendation-feedback button:hover { background: var(--field); }
.book-discovery-empty, .book-discovery-loading { min-height: 150px; display: grid; grid-auto-flow: row; place-content: center; gap: 6px; color: var(--muted); text-align: center; }
.book-discovery-empty strong { color: var(--ink); }

.book-stats { margin: 18px 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.stat-item { min-height: 102px; padding: 18px; display: grid; align-content: space-between; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.stat-item span { color: var(--muted); font-size: 12px; font-weight: 750; }
.stat-item strong { font-size: 27px; }

.reading-focus { min-height: 130px; margin: 18px 0; padding: 18px; border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line)); border-radius: 8px; background: color-mix(in srgb, var(--accent) 4%, var(--panel)); }
.book-section-heading { margin: 26px 0 12px; display: flex; align-items: end; justify-content: space-between; gap: 16px; }
.book-section-heading h2 { margin-top: 3px; font-size: 24px; }
.book-section-heading > span { color: var(--muted); font-size: 13px; font-weight: 750; }
.reading-focus .book-section-heading { margin: 0 0 14px; }
.reading-focus .book-section-heading h2 { font-size: 19px; }
.reading-focus-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.reading-focus-grid article { min-width: 0; padding: 10px; display: grid; grid-template-columns: 56px minmax(0, 1fr) auto; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.reading-focus-grid article > div:nth-child(2) { min-width: 0; display: grid; gap: 5px; }
.reading-focus-grid strong, .reading-focus-grid span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.reading-focus-grid span, .reading-focus-grid small { color: var(--muted); font-size: 11px; }
.reading-focus-empty, .book-empty { min-height: 150px; display: grid; place-content: center; gap: 7px; color: var(--muted); text-align: center; }
.reading-focus-empty strong, .book-empty strong { color: var(--ink); }

.book-toolbar { padding: 14px; display: grid; grid-template-columns: minmax(260px, 1fr) auto; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.book-search { min-height: 46px; display: flex; align-items: center; gap: 10px; padding: 0 13px; border: 1px solid var(--line); border-radius: 12px; background: var(--field); }
.book-search span { color: var(--accent-dark); font-size: 12px; font-weight: 800; }
.book-search input { min-width: 0; width: 100%; border: 0; outline: 0; background: transparent; font-size: 16px; font-weight: 700; }
.book-tabs { display: flex; align-items: center; gap: 4px; }
.book-tabs button { min-height: 42px; padding: 0 13px; border: 0; border-radius: 10px; background: transparent; color: var(--muted); font-weight: 800; white-space: nowrap; }
.book-tabs button.is-active { background: var(--ink); color: var(--panel); }

.book-grid { min-height: 260px; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 28px 18px; }
.book-empty { grid-column: 1 / -1; min-height: 280px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.book-card { min-width: 0; display: grid; grid-template-rows: auto minmax(0, 1fr); gap: 12px; }
.book-cover { width: 100%; aspect-ratio: 2 / 3; display: grid; place-items: center; overflow: hidden; border-radius: 8px 8px 5px 5px; background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 18%, var(--field)), var(--field)); box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14); }
.book-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-cover > span { color: var(--muted); font-size: 34px; font-weight: 850; }
.reading-focus-grid .book-cover { width: 56px; border-radius: 5px; box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12); }
.book-card-copy { min-width: 0; display: grid; align-content: start; gap: 6px; }
.book-cover-button, .book-title-button { margin: 0; padding: 0; border: 0; background: transparent; color: inherit; text-align: left; }
.book-cover-button { display: block; width: 100%; border-radius: 8px; }
.book-title-button { overflow: hidden; min-height: 38px; font-size: 15px; font-weight: 800; line-height: 1.25; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.book-cover-button:focus-visible, .book-title-button:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 45%, transparent); outline-offset: 3px; }
.book-card-copy > p, .book-card-copy > small { overflow: hidden; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.book-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.book-chips span { padding: 3px 6px; border-radius: 999px; background: var(--soft); color: var(--accent-dark); font-size: 10px; font-weight: 800; }
.reading-meter { height: 5px; overflow: hidden; border-radius: 999px; background: color-mix(in srgb, var(--muted) 15%, transparent); }
.reading-meter i { display: block; height: 100%; border-radius: inherit; background: var(--accent); }
.book-card-actions { min-height: 42px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 38px; gap: 5px; }
.book-card-actions .primary-button, .book-card-actions .quiet-button, .book-card-actions .icon-button { min-width: 0; min-height: 38px; padding: 0 7px; border-radius: 9px; font-size: 11px; }
.book-card-actions .icon-button { width: 38px; }

.book-history { display: grid; gap: 8px; }
.book-history-row { padding: 12px; display: grid; grid-template-columns: 40px minmax(0, 1fr) auto auto; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.book-history-row img { width: 40px; aspect-ratio: 2 / 3; object-fit: cover; border-radius: 4px; }
.book-history-row > span { min-width: 0; display: grid; gap: 3px; }
.book-history-row small, .book-history-row time { color: var(--muted); font-size: 11px; }
.book-history-row p { color: var(--muted); font-size: 12px; }
.book-history-row b { color: var(--accent-dark); font-size: 12px; }

.book-dialog { width: min(720px, calc(100% - 28px)); max-height: min(880px, calc(100dvh - 28px)); padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); color: var(--ink); box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28); }
.book-dialog::backdrop { background: rgba(15, 20, 28, 0.48); backdrop-filter: blur(10px); }
.book-detail-dialog { width: min(880px, calc(100% - 28px)); }
.book-detail-hero { display: grid; grid-template-columns: minmax(180px, 230px) minmax(0, 1fr); gap: 28px; }
.book-detail-cover .book-cover { box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2); }
.book-detail-summary { min-width: 0; display: grid; align-content: start; gap: 10px; }
.book-detail-summary h3 { font-size: clamp(26px, 4vw, 40px); line-height: 1.08; }
.book-detail-author { color: var(--muted); font-size: 16px; font-weight: 750; }
.book-detail-facts { display: flex; flex-wrap: wrap; gap: 6px 12px; color: var(--muted); font-size: 12px; }
.book-detail-progress { display: grid; gap: 6px; padding-top: 8px; }
.book-detail-progress small { color: var(--muted); font-size: 11px; }
.book-detail-actions { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 4px; }
.book-detail-actions a { display: inline-flex; align-items: center; text-decoration: none; }
.book-detail-section { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.book-detail-section > p:last-child { margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.75; white-space: pre-wrap; }
.book-detail-section-heading { display: flex; align-items: center; justify-content: space-between; }
.book-detail-section-heading span { color: var(--muted); font-size: 12px; font-weight: 750; }
.book-detail-feeling { margin-top: 8px; display: flex; align-items: center; gap: 8px; }
.book-detail-feeling strong, .book-detail-feeling span { padding: 4px 8px; border-radius: 999px; background: var(--soft); color: var(--accent-dark); font-size: 12px; }
.book-detail-history { margin-top: 10px; display: grid; gap: 8px; }
.book-detail-history article { padding: 11px; display: grid; grid-template-columns: auto auto minmax(0, 1fr); align-items: start; gap: 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--field); }
.book-detail-history time { color: var(--muted); font-size: 12px; }
.book-detail-history strong { color: var(--accent-dark); font-size: 12px; }
.book-detail-history p { color: var(--muted); font-size: 13px; line-height: 1.55; }
.compact-dialog { width: min(480px, calc(100% - 28px)); }
.dialog-shell { margin: 0; padding: 22px; max-height: inherit; overflow: auto; }
.dialog-shell > header { margin-bottom: 18px; display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.catalog-search { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 8px; }
.catalog-search-status { min-height: 18px; margin: 8px 0; color: var(--muted); font-size: 12px; }
.catalog-results { max-height: 280px; display: grid; gap: 6px; overflow-y: auto; }
.catalog-result { width: 100%; min-width: 0; padding: 8px; display: grid; grid-template-columns: 44px minmax(0, 1fr); align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--field); text-align: left; }
.catalog-result:hover, .catalog-result:focus-visible { border-color: color-mix(in srgb, var(--accent) 42%, var(--line)); outline: none; }
.catalog-cover { width: 44px; aspect-ratio: 2 / 3; overflow: hidden; display: grid; place-items: center; border-radius: 4px; background: color-mix(in srgb, var(--accent) 10%, var(--panel)); }
.catalog-cover img { width: 100%; height: 100%; object-fit: cover; }
.catalog-cover i { color: var(--muted); font-style: normal; font-size: 18px; font-weight: 850; }
.catalog-result b { min-width: 0; display: grid; gap: 3px; }
.catalog-result strong, .catalog-result small, .catalog-result em { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.catalog-result small, .catalog-result em { color: var(--muted); font-size: 11px; font-style: normal; font-weight: 650; }
.manual-book-fields { margin-top: 12px; }
.manual-book-fields summary { min-height: 38px; padding: 0 11px; display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; background: var(--field); color: var(--muted); font-size: 12px; font-weight: 800; cursor: pointer; }
.manual-book-fields[open] summary { margin-bottom: 12px; }
.book-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.book-form-grid .wide { grid-column: 1 / -1; }
.dialog-shell label { display: grid; gap: 6px; color: var(--muted); font-size: 12px; font-weight: 750; }
.field-hint { color: var(--muted); font-size: 11px; font-weight: 650; line-height: 1.45; }
.dialog-shell input, .dialog-shell select, .dialog-shell textarea { width: 100%; min-height: 42px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 8px; background: var(--field); font-size: 16px; }
.dialog-shell textarea { resize: vertical; }
.dialog-shell footer { margin-top: 18px; display: flex; align-items: center; gap: 8px; }
.dialog-footer-spacer { flex: 1; }
.form-status { min-height: 18px; margin-top: 10px; color: var(--muted); font-size: 12px; }
fieldset { margin: 14px 0 0; padding: 0; border: 0; }
legend { margin-bottom: 8px; color: var(--muted); font-size: 12px; font-weight: 750; }
.feeling-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.feeling-options label { padding: 10px; display: block; border: 1px solid var(--line); border-radius: 8px; background: var(--field); text-align: center; }
.feeling-options label:has(input:checked) { border-color: var(--accent); background: var(--soft); color: var(--accent-dark); }
.feeling-options input { width: auto; min-height: 0; margin-right: 5px; }
.toast { position: fixed; z-index: 20; left: 50%; bottom: max(24px, env(safe-area-inset-bottom)); transform: translateX(-50%); padding: 11px 16px; border-radius: 8px; background: var(--ink); color: var(--panel); box-shadow: var(--shadow); font-weight: 750; }

.auth-gate { min-height: 100dvh; display: grid; place-items: center; padding: 20px; }
.auth-panel { width: min(420px, 100%); padding: 28px; display: grid; gap: 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); box-shadow: var(--shadow); }
.auth-panel label { display: grid; gap: 6px; color: var(--muted); font-size: 12px; font-weight: 750; }
.auth-panel input { min-height: 44px; padding: 0 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--field); font-size: 16px; }
.auth-panel a { color: var(--accent-dark); font-size: 12px; font-weight: 750; text-align: center; }

@media (hover: hover) {
  .book-card .book-cover { transition: transform 0.28s ease, box-shadow 0.28s ease; }
  .book-card:hover .book-cover { transform: translateY(-3px); box-shadow: 0 23px 42px rgba(0, 0, 0, 0.2), 0 5px 24px color-mix(in srgb, var(--accent) 12%, transparent); }
}

@media (max-width: 900px) {
  .book-header { align-items: flex-start; }
  .book-header-actions { flex-wrap: wrap; }
  .book-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reading-focus-grid { grid-template-columns: 1fr; }
  .book-toolbar { grid-template-columns: 1fr; }
  .book-tabs { overflow-x: auto; }
  .book-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .book-discovery-rail { grid-auto-columns: minmax(260px, 44%); }
}

@media (max-width: 620px) {
  .book-app { width: min(100% - 24px, 1240px); margin-top: 8px; }
  .book-header { min-height: 0; padding: 20px; display: grid; }
  .book-header h1 { font-size: 40px; }
  .book-header-actions { width: 100%; display: grid; grid-template-columns: minmax(0, 1fr) auto auto; }
  .book-account { min-width: 0; }
  .book-account small { display: none; }
  .book-account:has(.account-status-dot.is-error) small { display: block; }
  .book-header-actions .media-switcher { grid-column: 1 / -1; grid-row: 2; }
  .book-header-actions > .primary-button { grid-column: 1 / 3; }
  .book-stats { gap: 8px; }
  .book-discovery { padding: 12px; }
  .book-discovery .book-section-heading { align-items: flex-start; }
  .book-discovery .book-section-heading h2 { font-size: 19px; }
  .discovery-tabs { flex: 0 0 auto; max-width: 100%; overflow-x: auto; }
  .book-discovery-rail { grid-auto-columns: minmax(255px, 88%); }
  .stat-item { min-height: 88px; padding: 14px; }
  .stat-item strong { font-size: 22px; }
  .reading-focus { padding: 12px; }
  .reading-focus-grid article { grid-template-columns: 48px minmax(0, 1fr); }
  .reading-focus-grid .book-cover { width: 48px; }
  .reading-focus-grid article > button { grid-column: 1 / -1; width: 100%; }
  .book-toolbar { padding: 10px; }
  .book-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px 10px; }
  .book-card-actions { grid-template-columns: 1fr 34px; }
  .book-card-actions .primary-button, .book-card-actions .quiet-button { grid-column: 1; }
  .book-card-actions .icon-button { width: 34px; grid-column: 2; grid-row: 1 / span 2; }
  .book-history-row { grid-template-columns: 34px minmax(0, 1fr) auto; }
  .book-history-row img { width: 34px; }
  .book-history-row b { grid-column: 2; }
  .book-form-grid { grid-template-columns: 1fr; }
  .book-form-grid .wide { grid-column: auto; }
  .catalog-search { grid-template-columns: 1fr; }
  .catalog-search .primary-button { width: 100%; }
  .dialog-shell { padding: 18px; }
}

@media (max-width: 390px) {
  .book-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .book-title-button { min-height: 36px; font-size: 14px; }
}

@media (max-width: 560px) {
  .book-detail-hero { grid-template-columns: 112px minmax(0, 1fr); gap: 16px; }
  .book-detail-summary h3 { font-size: 23px; }
  .book-detail-actions { grid-column: 1 / -1; }
  .book-detail-actions > * { flex: 1 1 calc(50% - 4px); justify-content: center; }
  .book-detail-history article { grid-template-columns: auto minmax(0, 1fr); }
  .book-detail-history p { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
