/* ============================================================
   聚光萤 — Brand Design System v2
   Derived from logo: black/white geometric + firefly amber glow
   ============================================================ */

:root {
  /* Brand — derived from logo (pure black & white) */
  --ink-950: #060605;
  --ink-900: #0B0B0A;
  --ink-800: #14140F;
  --ink-700: #1E1D18;
  --ink-600: #2A2922;
  --ink-500: #3A382F;

  /* Paper — warm neutral surfaces */
  --paper: #FAFAF7;
  --paper-warm: #F5F3EE;
  --paper-cool: #F2F1ED;

  /* Stone — text hierarchy */
  --stone-800: #2A2922;
  --stone-700: #44423A;
  --stone-600: #5C5A50;
  --stone-500: #7A7870;
  --stone-400: #A09E94;
  --stone-300: #C4C2B8;

  /* Mist — borders & dividers */
  --mist-300: #D8D5CB;
  --mist-200: #E5E2D9;
  --mist-100: #EDEBE3;

  /* Amber — firefly glow accent (used sparingly) */
  --amber-700: #9A7320;
  --amber-600: #B07F22;
  --amber-500: #C8932A;
  --amber-400: #D9A640;
  --amber-300: #E8C168;
  --amber-200: #F0D49A;
  --amber-100: #F7E5C0;
  --amber-50:  #FBF1DA;

  /* Semantic */
  --white: #FFFFFF;
  --success: #2E7D5B;
  --success-bg: #ECF6F0;
  --danger: #C04848;
  --danger-bg: #FBEEEE;
  --warning: #C8932A;
  --warning-bg: #FBF1DA;

  /* Typography */
  --font-display: "Songti SC", "STSong", "Source Han Serif SC", "Noto Serif SC", serif;
  --font-body: "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  --font-mono: "SF Mono", "JetBrains Mono", "Fira Code", monospace;

  /* Radius */
  --r-xs: 3px;
  --r-sm: 5px;
  --r-md: 8px;
  --r-lg: 12px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(11, 11, 10, 0.04);
  --shadow-sm: 0 1px 4px rgba(11, 11, 10, 0.06);
  --shadow-md: 0 4px 16px rgba(11, 11, 10, 0.08);
  --shadow-lg: 0 12px 40px rgba(11, 11, 10, 0.12);
  --shadow-amber: 0 4px 20px rgba(200, 147, 42, 0.15);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.25s;
}

/* ============================================================
   Reset & Base
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--stone-700);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--amber-700); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--amber-500); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 700;
  line-height: 1.35;
}

.clamp-2 { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
.clamp-3 { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11, 11, 10, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color var(--dur) var(--ease);
}
.nav.scrolled { border-bottom-color: rgba(200, 147, 42, 0.2); }

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--white); text-decoration: none;
  letter-spacing: 0.04em;
}
.nav-logo:hover { color: var(--amber-300); }
.nav-logo img { width: 32px; height: 32px; flex-shrink: 0; }
.nav-logo-text { letter-spacing: 0.04em; }

.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255, 255, 255, 0.65); text-decoration: none;
  font-size: 0.85rem; font-weight: 500;
  transition: color var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--amber-300); }

.nav-cta {
  background: var(--amber-500); color: var(--ink-900) !important;
  padding: 7px 20px; border-radius: var(--r-xs); font-weight: 700 !important;
  font-size: 0.78rem !important; letter-spacing: 0.04em;
  transition: all var(--dur) var(--ease);
}
.nav-cta:hover { background: var(--amber-400); color: var(--ink-900) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none; cursor: pointer;
  font-size: 1.4rem; color: var(--white);
  padding: 4px 8px; background: none; border: none; line-height: 1;
}
.nav-mobile { display: none; }

@media (max-width: 768px) {
  .nav-toggle { display: block; z-index: 101; }
  .nav-links { display: none; }
  .nav-inner { padding: 0 16px; }
  .nav-mobile {
    display: none;
    position: fixed; top: 60px; left: 0; right: 0;
    background: rgba(11, 11, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 147, 42, 0.12);
    z-index: 99;
  }
  .nav-mobile.open { display: block; }
  .nav-mobile ul { list-style: none; padding: 8px 16px 16px; margin: 0; }
  .nav-mobile a {
    display: block; padding: 12px 16px;
    color: rgba(255, 255, 255, 0.75); text-decoration: none;
    font-size: 0.92rem; font-weight: 500;
    border-radius: var(--r-sm);
    transition: all var(--dur) var(--ease);
  }
  .nav-mobile a:hover { background: rgba(200, 147, 42, 0.08); color: var(--amber-300); }
  .nav-mobile .nav-cta { text-align: center; margin-top: 8px; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink-900);
  padding: 140px 24px 100px;
  text-align: center;
}

/* Firefly glow — radial light emanation */
.hero-bg-art {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  pointer-events: none; z-index: 0;
  opacity: 0.4;
}

.hero-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200, 147, 42, 0.12) 0%, rgba(200, 147, 42, 0.03) 40%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.hero-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }

.hero-mark {
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.hero-mark img { width: 56px; height: 56px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200, 147, 42, 0.08);
  border: 1px solid rgba(200, 147, 42, 0.2);
  color: var(--amber-300);
  padding: 5px 14px;
  border-radius: var(--r-xs);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero h1 .accent { color: var(--amber-300); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px; margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 30px;
  font-family: var(--font-body);
  font-size: 0.92rem; font-weight: 600;
  border: none; cursor: pointer;
  transition: all var(--dur) var(--ease);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--amber-500); color: var(--ink-900);
  box-shadow: var(--shadow-amber);
}
.btn-primary:hover {
  background: var(--amber-400); color: var(--ink-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 147, 42, 0.3);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-outline:hover {
  border-color: var(--amber-300); color: var(--amber-300);
}
.btn-sm { padding: 7px 16px; font-size: 0.78rem; }

/* ============================================================
   Stats Strip
   ============================================================ */
.hero-stats {
  position: relative; z-index: 2;
  max-width: 900px; margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-md);
  overflow: hidden;
}
.hero-stat {
  background: rgba(11, 11, 10, 0.5);
  padding: 24px 16px;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--amber-300);
  line-height: 1.2;
}
.hero-stat-label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .hero { padding: 100px 16px 60px; }
  .hero h1 { font-size: 1.65rem; }
  .hero-sub { font-size: 0.9rem; }
  .hero-badge { font-size: 0.65rem; }
  .btn { padding: 11px 22px; font-size: 0.82rem; }
  .hero-actions { gap: 10px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); margin-top: 32px; }
  .hero-stat-num { font-size: 1.35rem; }
  .hero-stat-label { font-size: 0.68rem; }
}

/* ============================================================
   Section Framework
   ============================================================ */
.section { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
.section-wide { padding: 80px 0; max-width: 100%; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  color: var(--amber-700);
  text-transform: uppercase; letter-spacing: 0.16em;
  margin-bottom: 10px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--amber-500);
}
.section-header h2 {
  font-size: 1.9rem; color: var(--ink-900);
  margin-bottom: 10px;
}
.section-header p {
  color: var(--stone-500); font-size: 0.92rem;
  max-width: 500px;
}
.section-header.center p { margin: 0 auto; }

@media (max-width: 768px) {
  .section { padding: 48px 16px; }
  .section-wide { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: 1.35rem; }
  .section-header p { font-size: 0.85rem; }
}

/* ============================================================
   Competition Table & Cards
   ============================================================ */
.comp-section { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 768px) { .comp-section { padding: 48px 16px; } }

/* Filter Bar */
.filter-bar {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  margin-bottom: 28px; padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--mist-200);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
}
.filter-bar label { font-size: 0.78rem; font-weight: 600; color: var(--stone-600); }
.filter-bar select {
  padding: 7px 14px; border: 1px solid var(--mist-200);
  border-radius: var(--r-sm); font-size: 0.8rem; background: var(--white);
  color: var(--stone-700); cursor: pointer; min-width: 120px;
  transition: border-color var(--dur) var(--ease);
}
.filter-bar select:focus { border-color: var(--amber-500); outline: none; }
.filter-result { margin-left: auto; font-size: 0.78rem; color: var(--stone-400); }

@media (max-width: 768px) {
  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-result { margin-left: 0; }
}

/* Table */
.comp-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--mist-200);
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--shadow-xs);
}
.comp-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.86rem; min-width: 700px;
}
.comp-table thead {
  background: var(--ink-900);
}
.comp-table thead th {
  padding: 14px 16px; text-align: left;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.76rem; color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em; white-space: nowrap;
  text-transform: uppercase;
}
.comp-table tbody tr { transition: background 0.15s var(--ease); }
.comp-table tbody tr { border-bottom: 1px solid var(--mist-100); }
.comp-table tbody tr:last-child { border-bottom: none; }
.comp-table tbody tr:hover { background: var(--amber-50); }
.comp-table tbody td {
  padding: 12px 16px;
  color: var(--stone-600); vertical-align: middle;
}
.comp-name { font-weight: 600; color: var(--ink-900) !important; word-break: break-word; overflow-wrap: break-word; max-width: 0; }
.comp-name a { color: var(--ink-900); }
.comp-name a:hover { color: var(--amber-700); }
.comp-type {
  display: inline-block; background: var(--mist-100); color: var(--stone-600);
  padding: 3px 10px; border-radius: var(--r-xs); font-size: 0.73rem; white-space: nowrap;
}

/* Deadline colors */
.deadline-urgent { color: var(--danger) !important; font-weight: 700; }
.deadline-soon { color: var(--amber-700) !important; font-weight: 600; }
.deadline-ok { color: var(--success) !important; font-weight: 500; }
.deadline-unknown { color: var(--stone-400); font-style: italic; }
.prize-highlight { color: var(--amber-700) !important; font-weight: 700; font-size: 0.88rem; }

/* Status badges */
.status-badge {
  display: inline-block; padding: 3px 10px;
  border-radius: var(--r-xs); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.03em;
}
.status-active { background: var(--success-bg); color: var(--success); }
.status-upcoming { background: var(--warning-bg); color: var(--warning); }
.status-pending { background: var(--mist-100); color: var(--stone-400); }
.credibility-stars { color: var(--amber-500); letter-spacing: 1px; }

/* Mobile cards */
.comp-cards-mobile { display: none; }
@media (max-width: 768px) {
  .comp-table-wrap { display: none !important; }
  .comp-cards-mobile { display: block; }
  .comp-card-mobile {
    background: var(--white); border-radius: var(--r-md);
    padding: 16px; margin-bottom: 12px;
    border: 1px solid var(--mist-200);
    border-left: 3px solid var(--amber-500);
  }
  .comp-card-title {
    display: block; font-size: 0.92rem; font-weight: 700;
    color: var(--ink-900); margin-bottom: 10px;
    text-decoration: none;
  }
  .comp-card-title:hover { color: var(--amber-700); }
  .comp-card-meta { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 10px; }
  .comp-card-info { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.8rem; color: var(--stone-500); }
  .comp-card-info .prize-text { color: var(--amber-700); font-weight: 700; }
  .comp-card-days-tag {
    display: inline-block; font-size: 0.7rem; font-weight: 700;
    padding: 2px 8px; border-radius: var(--r-xs); margin-left: 4px;
  }
  .days-tag-urgent { background: var(--danger-bg); color: var(--danger); }
  .days-tag-soon { background: var(--warning-bg); color: var(--warning); }
  .days-tag-ok { background: var(--success-bg); color: var(--success); }
}

/* Note */
.comp-note {
  margin-top: 20px; padding: 14px 18px;
  background: var(--amber-50); border-radius: var(--r-sm);
  border-left: 3px solid var(--amber-500);
  font-size: 0.8rem; color: var(--stone-600);
  display: flex; align-items: flex-start; gap: 8px;
}

/* Empty state */
.empty-state { text-align: center; padding: 60px 20px; color: var(--stone-400); }
.empty-state .empty-icon { font-size: 2.5rem; margin-bottom: 16px; }

/* ============================================================
   Feature Cards
   ============================================================ */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 36px 28px;
  border: 1px solid var(--mist-200);
  transition: all var(--dur) var(--ease);
  text-align: left;
}
.feature-card:hover {
  border-color: var(--amber-200);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.4rem;
  background: var(--amber-50);
  border-radius: var(--r-sm);
  border: 1px solid var(--amber-100);
}
.feature-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature-card p { color: var(--stone-500); font-size: 0.86rem; line-height: 1.7; }

/* ============================================================
   Steps
   ============================================================ */
.steps { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.step {
  flex: 1; min-width: 220px; max-width: 280px; text-align: center;
  background: var(--white); border-radius: var(--r-md);
  padding: 40px 24px; border: 1px solid var(--mist-200);
  position: relative;
}
.step-num {
  width: 44px; height: 44px;
  background: var(--ink-900); color: var(--amber-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  margin: 0 auto 16px; border-radius: 50%;
  border: 2px solid var(--amber-500);
}
.step h3 { font-size: 0.98rem; margin-bottom: 8px; }
.step p { color: var(--stone-500); font-size: 0.83rem; }
.step-arrow {
  position: absolute; right: -22px; top: 50%;
  transform: translateY(-50%);
  color: var(--amber-500); font-size: 1.4rem; font-weight: 700;
}
@media (max-width: 768px) {
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { display: none; }
}

/* ============================================================
   Roadmap
   ============================================================ */
.roadmap-list { max-width: 700px; margin: 0 auto; }
.roadmap-item {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid var(--mist-200);
  align-items: flex-start;
}
.roadmap-phase {
  min-width: 90px; padding: 5px 12px; border-radius: var(--r-xs);
  font-size: 0.73rem; font-weight: 700; text-align: center;
}
.roadmap-phase.m1 { background: var(--amber-100); color: var(--amber-700); }
.roadmap-phase.m2 { background: var(--success-bg); color: var(--success); }
.roadmap-phase.m3 { background: var(--mist-100); color: var(--stone-500); }
.roadmap-content h4 { font-size: 0.92rem; margin-bottom: 4px; }
.roadmap-content p { color: var(--stone-500); font-size: 0.83rem; }
.coming-soon-badge {
  display: inline-block; background: var(--amber-50); color: var(--amber-700);
  padding: 2px 10px; border-radius: var(--r-xs); font-size: 0.7rem;
  font-weight: 600; margin-left: 8px;
}

/* ============================================================
   Contact
   ============================================================ */
.contact-methods { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.contact-card {
  flex: 1; min-width: 160px; max-width: 200px;
  background: var(--white); border-radius: var(--r-md);
  padding: 28px 20px; text-align: center;
  border: 1px solid var(--mist-200);
  transition: all var(--dur) var(--ease);
}
.contact-card:hover { border-color: var(--amber-200); box-shadow: var(--shadow-sm); }
.contact-card .icon { font-size: 1.8rem; margin-bottom: 12px; }
.contact-card h4 { font-size: 0.88rem; margin-bottom: 6px; }
.contact-card p { color: var(--stone-500); font-size: 0.8rem; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink-950);
  color: rgba(255, 255, 255, 0.42);
  padding: 48px 24px 32px; text-align: center;
  font-size: 0.8rem;
}
.footer a { color: rgba(255, 255, 255, 0.7); }
.footer a:hover { color: var(--amber-300); }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.footer-logo img { width: 28px; height: 28px; }
.footer p { word-break: break-word; overflow-wrap: break-word; }

/* ============================================================
   Detail Page
   ============================================================ */
.detail-back { margin-bottom: 24px; }
.detail-back a {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--stone-500); font-size: 0.83rem;
}
.detail-back a:hover { color: var(--amber-700); }

.detail-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 40px; border: 1px solid var(--mist-200);
  box-shadow: var(--shadow-xs);
  max-width: 800px; margin: 0 auto;
}
.detail-card h1 { font-size: 1.65rem; margin-bottom: 16px; }
.detail-meta {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px;
  padding-bottom: 24px; border-bottom: 1px solid var(--mist-200);
}
.detail-meta-item { font-size: 0.8rem; color: var(--stone-500); }
.detail-grid {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 12px 20px; font-size: 0.86rem;
}
.detail-grid dt { color: var(--stone-400); font-weight: 500; }
.detail-grid dd { color: var(--stone-600); }

@media (max-width: 768px) {
  .detail-card { padding: 24px; }
  .detail-card h1 { font-size: 1.25rem; }
  .detail-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   404 / 500
   ============================================================ */
.page-404 { text-align: center; padding: 160px 24px 100px; }
.page-404 .code {
  font-family: var(--font-display);
  font-size: 5rem; font-weight: 800;
  color: var(--ink-700);
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes glow-pulse {
  0%, 100% { opacity: 0.35; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.05); }
}
@keyframes slow-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-glow { animation: glow-pulse 5s ease-in-out infinite; }
.hero-bg-art { animation: slow-rotate 180s linear infinite; }

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

/* Focus states */
*:focus-visible {
  outline: 2px solid var(--amber-500);
  outline-offset: 2px;
}
