/* 设计变量 */
:root {
  --bg: #f7f0e6;
  --bg-deep: #ede2d3;
  --ink: #1b1b1b;
  --muted: #5a4e45;
  --accent: #ff6f3f;
  --accent-2: #1d8f77;
  --card: rgba(255, 255, 255, 0.82);
  --shadow: 0 24px 60px rgba(31, 24, 17, 0.2);
  --radius: 18px;
}

/* 全局重置 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 页面基础 */
body {
  min-height: 100vh;
  font-family: "Noto Sans SC", "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(160deg, var(--bg), var(--bg-deep));
  overflow-x: hidden;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}

/* 背景氛围层 */
.ambient {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.6), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(255, 198, 136, 0.4), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(255, 111, 63, 0.18), transparent 50%);
  z-index: 0;
  pointer-events: none;
}

/* 主容器布局 */
.page {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  gap: 32px;
}

/* 顶部区域 */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* 品牌与导航 */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Serif SC", "DM Serif Display", "Times New Roman", serif;
  font-size: 1.4rem;
}

.brand-text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0 0 6px;
  background: none;
  border: none;
  box-shadow: none;
  color: var(--ink);
  text-shadow: 0 2px 10px rgba(31, 24, 17, 0.12);
  text-decoration: none;
  border-bottom: 3px solid rgba(255, 111, 63, 0.6);
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffb248);
  box-shadow: 0 8px 20px rgba(255, 111, 63, 0.4);
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.nav-link.active {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(255, 111, 63, 0.35);
}

/* 内容区与进场动画 */
.content {
  display: grid;
  gap: 24px;
}

.content > section {
  animation: rise 0.7s ease both;
}

.content > section:nth-of-type(1) {
  animation-delay: 0.05s;
}

.content > section:nth-of-type(2) {
  animation-delay: 0.15s;
}

.content > section:nth-of-type(3) {
  animation-delay: 0.25s;
}

/* 首页主视觉 */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  position: relative;
}

.hero-copy {
  text-align: center;
  align-self: center;
}

.hero-copy .subhead {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy h1,
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-family: "Noto Serif SC", "DM Serif Display", "Times New Roman", serif;
  margin-bottom: 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.subhead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  justify-content: center;
}

.hero-stats .stat {
  position: relative;
  overflow: hidden;
  text-align: center;
  min-width: 170px;
  padding: 18px 20px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 232, 0.85));
  border: 1px solid rgba(255, 111, 63, 0.14);
  box-shadow: 0 18px 40px rgba(31, 24, 17, 0.16);
}

.hero-stats .stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 111, 63, 0.9), rgba(255, 178, 72, 0.9));
}

.hero-stats .stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
}

.hero-stats .stat-value {
  font-size: 2.2rem;
}

.hero-stats .stat-note {
  font-size: 0.82rem;
}

.stat {
  background: var(--card);
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  min-width: 140px;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: var(--muted);
}

.stat-value {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 8px;
}

.stat-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 245, 230, 0.8));
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card h2 {
  font-size: 1.4rem;
}

.weather-card {
  padding: 10px 12px;
  gap: 6px;
  width: 100%;
  max-width: 180px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.weather-body {
  display: grid;
  gap: 10px;
}

.weather-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.weather-head {
  display: flex;
  align-items: center;
  gap: 6px 8px;
  flex-wrap: wrap;
}

.weather-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 111, 63, 0.25);
  box-shadow: 0 10px 24px rgba(31, 24, 17, 0.12);
}

.weather-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.weather-icon[data-icon="sun"] {
  color: #ffb248;
}

.weather-icon[data-icon="cloud"] {
  color: #5a4e45;
}

.weather-icon[data-icon="rain"] {
  color: #1d8f77;
}

.weather-icon[data-icon="snow"] {
  color: #3b6c97;
}

.weather-icon[data-icon="storm"] {
  color: #b8431f;
}

.weather-icon[data-icon="fog"] {
  color: #6b6b6b;
}

.weather-temp {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.weather-value {
  font-size: 1.6rem;
  font-weight: 600;
}

.weather-unit {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.weather-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.weather-advice {
  font-size: 0.8rem;
  color: var(--muted);
  background: rgba(29, 143, 119, 0.12);
  border-radius: 10px;
  padding: 6px 10px;
  line-height: 1.5;
}

.weather-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 2px;
}

.weather-card .badge {
  font-size: 0.7rem;
  padding: 3px 7px;
  white-space: normal;
  line-height: 1.2;
  max-width: 100%;
}

.weather-card .status:empty {
  display: none;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span {
  font-size: 0.8rem;
  padding: 6px 10px;
  background: rgba(29, 143, 119, 0.12);
  color: var(--accent-2);
  border-radius: 999px;
}

/* 通用网格与卡片 */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

/* 标签与徽章 */
.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.chip {
  background: rgba(29, 143, 119, 0.12);
  color: var(--accent-2);
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.85);
  color: var(--muted);
  border: 1px solid rgba(27, 27, 27, 0.08);
  white-space: nowrap;
}

.badge.accent {
  background: rgba(255, 111, 63, 0.14);
  color: #b8431f;
  border-color: rgba(255, 111, 63, 0.3);
}

.badge.success {
  background: rgba(29, 143, 119, 0.16);
  color: var(--accent-2);
  border-color: rgba(29, 143, 119, 0.3);
}

.badge.warning {
  background: rgba(255, 178, 72, 0.18);
  color: #ad5a00;
  border-color: rgba(255, 178, 72, 0.35);
}

/* 表单控件 */
.form {
  display: grid;
  gap: 16px;
}

.form.compact {
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
textarea {
  border: 1px solid rgba(90, 78, 69, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: block;
}

#todo-note {
  resize: none;
  overflow: hidden;
}

/* 历史页日期输入的中文显示 */
.date-input {
  position: relative;
}

.date-input input[type="date"] {
  color: transparent;
  caret-color: transparent;
  -webkit-text-fill-color: transparent;
}

.date-input input[type="date"]:focus {
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.date-input .date-display {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 12px;
  pointer-events: none;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.2;
}

.date-input .date-display.filled {
  color: var(--ink);
}


input:focus,
textarea:focus {
  outline: 2px solid rgba(255, 111, 63, 0.4);
  border-color: transparent;
}

/* 按钮与状态提示 */
.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

#cancel-edit,
#todo-cancel {
  display: none;
}

.btn {
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 111, 63, 0.3);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border: 1px solid rgba(27, 27, 27, 0.1);
}

.btn.danger {
  background: #e24b4b;
}

.status {
  color: var(--muted);
  font-size: 0.9rem;
}

.status.error {
  color: #b93434;
}

/* 学习记录列表 */
.session-list {
  display: grid;
  gap: 12px;
}

.session-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 18px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(27, 27, 27, 0.05);
}

.session-main {
  display: grid;
  gap: 10px;
}

.session-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.session-topic {
  font-weight: 600;
  font-size: 1.05rem;
}

.session-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.session-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 8px 10px;
  border: 1px dashed rgba(27, 27, 27, 0.08);
}

.session-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.session-actions button {
  font-size: 0.85rem;
  padding: 6px 10px;
}

/* 待办列表 */
.todo-list {
  display: grid;
  gap: 12px;
}

.todo-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 18px;
  padding: 18px 18px 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(27, 27, 27, 0.05);
  border-left: 4px solid rgba(255, 111, 63, 0.35);
}

.todo-item.done {
  opacity: 0.7;
  border-left-color: rgba(29, 143, 119, 0.6);
}

.todo-main {
  display: grid;
  gap: 10px;
}

.todo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.todo-title {
  font-weight: 600;
  font-size: 1.05rem;
}

.todo-item.done .todo-title {
  text-decoration: line-through;
}

.todo-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 8px 10px;
  border: 1px dashed rgba(27, 27, 27, 0.08);
}

.todo-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.todo-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.todo-actions button {
  font-size: 0.85rem;
  padding: 6px 10px;
}

.todo-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.todo-filter .btn {
  font-size: 0.8rem;
  padding: 6px 10px;
}

.todo-filter .btn.active {
  background: var(--accent-2);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(29, 143, 119, 0.25);
}

/* 筛选与表格展示 */
.filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  align-items: end;
}

.filter-actions {
  display: flex;
  gap: 12px;
}

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

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.table th,
.table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(27, 27, 27, 0.08);
}

.table td.actions {
  display: flex;
  gap: 8px;
}

.table button {
  font-size: 0.8rem;
  padding: 6px 10px;
}

/* 统计图表 */
.chart {
  display: grid;
  grid-template-columns: repeat(7, minmax(30px, 1fr));
  gap: 12px;
  align-items: end;
  height: 240px;
  padding-bottom: 8px;
}

.chart-bar {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  height: 100%;
}

.chart-bar span {
  background: linear-gradient(180deg, var(--accent), #ffb248);
  border-radius: 12px 12px 8px 8px;
  display: block;
  width: 100%;
  min-height: 12px;
  transition: height 0.3s ease;
  transform-origin: bottom;
  animation: grow 0.6s ease both;
}

.chart-bar label {
  font-size: 0.75rem;
  text-align: center;
  color: var(--muted);
  white-space: nowrap;
}

/* 主题分布 */
.topic-list {
  display: grid;
  gap: 14px;
}

.topic-row {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(27, 27, 27, 0.05);
  border-left: 4px solid rgba(29, 143, 119, 0.35);
}

.topic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topic-name {
  font-weight: 600;
  font-size: 1.02rem;
}

.topic-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.topic-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(29, 143, 119, 0.2);
  overflow: hidden;
}

.topic-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-2), #3cc7a3);
}

/* 历史记录 */
.history-list {
  display: grid;
  gap: 12px;
}

.history-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.history-pagination .btn {
  min-width: 120px;
  background: rgba(255, 111, 63, 0.18);
  color: #b8431f;
  border: 1px solid rgba(255, 111, 63, 0.35);
}

.topic-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.topic-pagination .btn {
  min-width: 120px;
  background: rgba(255, 111, 63, 0.18);
  color: #b8431f;
  border: 1px solid rgba(255, 111, 63, 0.35);
}

.topic-pagination .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.topic-page-info {
  font-size: 0.85rem;
  color: var(--muted);
}

.history-page-info {
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
  padding: 0 6px;
}

.history-pagination .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.history-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 18px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(27, 27, 27, 0.05);
}

.history-main {
  display: grid;
  gap: 10px;
}

.history-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.history-topic {
  font-weight: 600;
  font-size: 1.05rem;
}

.history-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.history-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 8px 10px;
  border: 1px dashed rgba(27, 27, 27, 0.08);
}

.history-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.history-actions button {
  font-size: 0.85rem;
  padding: 6px 10px;
}

/* 弹窗 */
.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(25, 20, 15, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  max-width: 420px;
  width: min(90vw, 420px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.modal-close {
  border: none;
  background: none;
  color: var(--muted);
  font-size: 0.9rem;
  justify-self: end;
  cursor: pointer;
}

/* 页脚 */
.site-footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  padding-top: 16px;
}

.brand-text,
.nav-link,
.eyebrow,
.stat-label,
.stat-note,
.chip {
  white-space: nowrap;
}

/* 动画 */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes grow {
  from {
    transform: scaleY(0.12);
  }
  to {
    transform: scaleY(1);
  }
}

/* 响应式布局 */
@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    flex-direction: column;
    align-items: stretch;
  }

  .weather-card {
    max-width: 100%;
    width: 100%;
    position: static;
    margin-top: 16px;
  }

  .hero-copy {
    align-self: center;
    text-align: center;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 10px 16px;
  }

  .card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    flex-direction: column;
  }

  .session-item {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .session-actions {
    flex-direction: row;
  }

  .todo-item {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .todo-actions {
    flex-direction: row;
  }

  .history-item {
    grid-template-columns: 1fr;
  }

  .history-actions {
    flex-direction: row;
    align-items: center;
  }

  .chart {
    grid-template-columns: repeat(7, minmax(36px, 1fr));
    gap: 8px;
  }

  .chart-bar label {
    font-size: 0.65rem;
  }

  .table thead {
    display: none;
  }

  .table tbody,
  .table tr,
  .table td {
    display: block;
    width: 100%;
  }

  .table tr {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(27, 27, 27, 0.08);
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 12px;
  }

  .table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(27, 27, 27, 0.08);
    overflow-wrap: anywhere;
  }

  .table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-weight: 600;
    flex: 0 0 auto;
  }

  .table td:first-child {
    padding-top: 0;
  }

  .table td:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .table td.actions {
    align-items: center;
    flex-wrap: wrap;
  }

  .table td.table-empty {
    justify-content: center;
    border-bottom: none;
    padding: 0;
  }

  .table td.table-empty::before {
    display: none;
  }
}

/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
  .content > section {
    animation: none;
  }

  .btn,
  .nav-link {
    transition: none;
  }

  .chart-bar span {
    animation: none;
  }
}
