/* ========== 555电影 · 复古光晕 · 设计系统 ========== */
/* 主题概念: 胶片暖调 / 珊瑚红×杏米黄 / 帧帧皆故事 */

:root {
  --primary: #E4574F;
  --primary-dark: #C9433A;
  --primary-light: #F29B93;
  --secondary: #8A6E5B;
  --accent: #F2A65A;
  --teal: #7CC4C9;
  --bg: #FBF6EE;
  --bg-card: #FFFDF8;
  --bg-alt: #F4EDE2;
  --text: #3D3833;
  --text-light: #8A857D;
  --border: #E6DCCB;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 8px 32px rgba(228, 87, 79, 0.08);
  --shadow-lg: 0 20px 60px rgba(228, 87, 79, 0.14);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========== 基础重置 ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ========== 核心布局 ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; position: relative; }
.section:nth-child(even) { background: var(--bg-alt); }

/* 胶片角标装饰线 */
.section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--primary) 0px, var(--primary) 6px, transparent 6px, transparent 12px);
  border-radius: 2px;
}

/* ========== 导航 ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.site-header:hover {
  box-shadow: 0 4px 30px rgba(228, 87, 79, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--text);
  letter-spacing: -0.3px;
  position: relative;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 4px 14px rgba(228, 87, 79, 0.3);
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 48px;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0.4;
  border-radius: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding: 4px 2px;
  letter-spacing: 0.4px;
  transition: color var(--transition);
}

.main-nav a::after {
  content: '•••••';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 7px;
  letter-spacing: 3px;
  color: var(--primary);
  opacity: 0;
  transition: opacity var(--transition), bottom var(--transition);
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a:hover::after {
  opacity: 1;
  bottom: -8px;
}

.nav-cta {
  padding: 10px 24px;
  border-radius: 30px;
  color: #fff !important;
  font-weight: 600;
  background: var(--primary);
  box-shadow: 0 4px 16px rgba(228, 87, 79, 0.25);
  transition: all var(--transition) !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(228, 87, 79, 0.35);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  font-size: 1.2rem;
}

/* ========== Hero ========== */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(242, 166, 90, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 70%, rgba(124, 196, 201, 0.14) 0%, transparent 60%),
    var(--bg);
}

.hero::before {
  content: '5 5 5';
  position: absolute;
  font-size: 340px;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.055;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: -20px;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--primary) 0px, var(--primary) 12px, transparent 12px, transparent 24px);
  opacity: 0.25;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
  background: rgba(242, 166, 90, 0.18);
  color: var(--primary-dark);
  border: 1px solid rgba(228, 87, 79, 0.2);
  letter-spacing: 1px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.5rem);
  line-height: 1.18;
  margin-bottom: 22px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--text);
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(242, 166, 90, 0.35);
  z-index: -1;
  border-radius: 4px;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.72;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
  margin-left: 48px;
  border: 4px solid var(--bg-card);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  z-index: 2;
  pointer-events: none;
}

.hero-image::after {
  content: 'PLAY ▶';
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(228, 87, 79, 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.hero-image:hover img {
  transform: scale(1.03);
}

/* ========== 按钮 ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  font-size: 0.95rem;
  letter-spacing: 0.4px;
}

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 6px 24px rgba(228, 87, 79, 0.28);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(228, 87, 79, 0.38);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: rgba(228, 87, 79, 0.08);
  transform: translateY(-3px);
}

/* ========== 标签/标题 ========== */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 14px;
  color: var(--primary);
  text-transform: uppercase;
  position: relative;
  padding-left: 18px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--primary);
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.3;
}

.section-desc {
  max-width: 620px;
  opacity: 0.68;
  margin-bottom: 48px;
  font-size: 1rem;
  line-height: 1.9;
}

/* ========== 卡片网格 ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.category-card {
  border-radius: var(--radius);
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: repeating-linear-gradient(90deg, var(--primary) 0px, var(--primary) 8px, transparent 8px, transparent 16px);
  transition: height 0.4s ease;
  border-radius: 0 0 4px 4px;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(228, 87, 79, 0.3);
}

.category-card:hover::before {
  height: 4px;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  background: rgba(228, 87, 79, 0.1);
  transition: all var(--transition);
}

.category-card:hover .card-icon {
  background: var(--primary);
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 4px 18px rgba(228, 87, 79, 0.3);
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.card-link::after {
  content: '→';
  font-size: 1rem;
}

.card-link:hover {
  gap: 12px;
}

/* ========== 特性块 ========== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.feature-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--accent) 0px, var(--accent) 8px, transparent 8px, transparent 16px);
  opacity: 0.5;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.feature-image:hover img {
  transform: scale(1.04);
}

.feature-text .section-title {
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin-top: 24px;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.feature-list li::before {
  content: '✓';
  font-weight: 900;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(124, 196, 201, 0.2);
  color: #4E9BA1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ========== 数据条 ========== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item {
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary) 20%, var(--accent) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========== 内容墙 ========== */
.content-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.content-wall-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all var(--transition);
  position: relative;
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(228, 87, 79, 0.25);
}

.content-wall-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.content-wall-item:hover img {
  transform: scale(1.04);
}

.content-wall-body {
  padding: 24px;
}

.content-wall-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.content-wall-body p {
  font-size: 0.9rem;
  opacity: 0.65;
  line-height: 1.8;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: rgba(228, 87, 79, 0.3);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(228, 87, 79, 0.08);
}

.faq-item .faq-question {
  padding: 20px 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  letter-spacing: 0.2px;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.35s ease;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 24px 22px;
  display: none;
  opacity: 0.7;
  font-size: 0.95rem;
  line-height: 1.85;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeSlide 0.35s ease;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== CTA横幅 ========== */
.cta-banner {
  padding: 64px 56px;
  text-align: center;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 65%, #C84E45 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(228, 87, 79, 0.3);
}

.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-banner::before {
  width: 220px;
  height: 220px;
  top: -80px;
  right: -60px;
}

.cta-banner::after {
  width: 160px;
  height: 160px;
  bottom: -60px;
  left: -40px;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  position: relative;
  z-index: 1;
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto 28px;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  background: #FFF5F0;
}

/* ========== 页脚 ========== */
.site-footer {
  padding: 64px 0 32px;
  background: var(--bg-alt);
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.65;
  max-width: 300px;
  line-height: 1.9;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  opacity: 0.68;
  padding: 4px 0;
  transition: all var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
  opacity: 1;
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--text-light);
  letter-spacing: 0.4px;
}

.footer-bottom .dot {
  margin: 0 6px;
  color: var(--primary);
}

/* ========== 工具类 ========== */
.text-accent {
  color: var(--primary);
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 620px;
  margin: 0 auto 56px;
  opacity: 0.7;
  font-size: 1rem;
  line-height: 1.9;
  text-align: center;
}

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* ========== 额外电影感增强 ========== */
.hero .hero-content .hero-eyebrow {
  background: linear-gradient(90deg, rgba(228, 87, 79, 0.15), rgba(242, 166, 90, 0.2));
  font-size: 0.78rem;
}

.hero .hero-content .hero-eyebrow::before {
  content: '▶ ';
  font-size: 0.65rem;
  margin-right: 2px;
}

/* 让卡片网格中的卡片文字也有节奏 */
.category-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.category-card p {
  font-size: 0.9rem;
  opacity: 0.65;
  margin-bottom: 16px;
  line-height: 1.8;
}

/* 内容墙的底部渐变胶片条 */
.content-wall-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: all 0.4s ease;
}

.content-wall-item:hover::after {
  height: 4px;
  opacity: 1;
}

/* 数值动画数字风格占位 */
.stat-number {
  position: relative;
}

/* ========== 响应式 ========== */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    padding: 120px 0 48px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    margin-left: 0;
    max-width: 480px;
  }

  .cards-grid,
  .content-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .feature-block {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--bg-alt);
    padding: 24px 32px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(228, 87, 79, 0.1);
    border-radius: 0 0 20px 20px;
  }

  .main-nav.open a {
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
  }

  .main-nav.open a::after {
    display: none;
  }

  .main-nav.open .nav-cta {
    border-bottom: none;
    text-align: center;
    margin-top: 8px;
  }

  .hero::before {
    font-size: 200px;
    right: 0;
  }

  .cta-banner {
    padding: 48px 28px;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    justify-content: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero::before {
    font-size: 140px;
    letter-spacing: -8px;
  }

  .site-header {
    height: 64px;
  }

  .header-inner {
    height: 64px;
  }

  .logo {
    font-size: 1.05rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .btn {
    width: 100%;
  }

  .stat-number {
    font-size: 2rem;
  }

  .category-card {
    padding: 26px 22px;
  }
}

/* 打印与无障碍 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}