@charset "UTF-8";

/* ============ Design tokens ============ */
:root {
  --paper: #fbfaf7;
  --paper-deep: #f1efe8;
  --ink: #191a1f;
  --muted: #6b6f76;
  --line: rgba(25, 26, 31, 0.14);
  --grid-line: rgba(13, 122, 111, 0.06);
  --accent: #0d7a6f;
  --accent-deep: #0a5a52;
  --accent-ink: #08332e;
  --warm: #d97706;
  --glow: rgba(13, 122, 111, 0.16);
  --serif: "Songti SC", "STSong", "SimSun", "Noto Serif SC", "Times New Roman", serif;
  --sans: "MiSans", "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --mono: "JetBrains Mono", "Cascadia Code", "SF Mono", Consolas, "Courier New", monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: min(1320px, calc(100vw - 96px));
}

html[data-theme="dark"] {
  --paper: #12151a;
  --paper-deep: #191d24;
  --ink: #e9e7e1;
  --muted: #9aa0a8;
  --line: rgba(233, 231, 225, 0.14);
  --grid-line: rgba(70, 199, 179, 0.07);
  --accent: #46c7b3;
  --accent-deep: #2ea596;
  --accent-ink: #bfeee6;
  --warm: #f0a94e;
  --glow: rgba(70, 199, 179, 0.12);
}

/* ============ Base ============ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  transition: color 0.4s ease, background-color 0.4s ease;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: 1;
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
::selection { color: #f4fffd; background: var(--accent); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  color: #fff;
  background: var(--accent-deep);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

/* ============ Header ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 88px;
  padding: 0 48px;
  border-bottom: 1px solid transparent;
  transition: height 0.35s var(--ease), background 0.35s ease, border-color 0.35s ease;
}
.site-header.is-scrolled {
  height: 68px;
  border-color: var(--line);
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  backdrop-filter: blur(16px);
}
.wordmark { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.wordmark__mark {
  display: grid;
  place-items: center;
  height: 30px;
  padding: 0 7px;
  color: #f2fffc;
  background: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: 4px;
}
.wordmark__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.site-nav { display: flex; gap: 42px; }
.site-nav a { position: relative; font-size: 13px; letter-spacing: 0.1em; }
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; justify-content: flex-end; gap: 8px; }
.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, transform 0.25s;
}
.icon-button:hover { color: var(--accent); border-color: var(--accent); transform: rotate(8deg); }
.theme-toggle svg { width: 18px; height: 18px; stroke-width: 1.5; }
.menu-toggle { display: none; }

/* ============ Hero ============ */
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.75fr);
  align-items: center;
  gap: 64px;
  min-height: 100svh;
  padding: 150px max(48px, calc((100vw - 1320px) / 2)) 86px;
  overflow: hidden;
}
.hero::before {
  position: absolute;
  top: -20%;
  right: -12%;
  width: 56vw;
  height: 56vw;
  content: "";
  background: radial-gradient(circle, var(--glow) 0%, transparent 62%);
  pointer-events: none;
}
.hero::after {
  position: absolute;
  top: 0;
  left: 11%;
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(to bottom, transparent, var(--line) 16%, var(--line) 84%, transparent);
  pointer-events: none;
}
.hero__index {
  position: absolute;
  top: 50%;
  left: 4.7%;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 33px; color: var(--muted); font-family: var(--mono); font-size: 12px; letter-spacing: 0.26em; }
.eyebrow span { width: 30px; height: 1px; background: var(--accent); }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(52px, 6.6vw, 100px); font-weight: 400; letter-spacing: -0.02em; line-height: 1.12; }
.hero__name { color: var(--accent); }
.hero__dot { color: var(--warm); }
.hero__intro { margin: 40px 0 0; color: var(--muted); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.9; }
.hero__intro strong { color: var(--ink); font-weight: 600; }
.hero__actions { display: flex; align-items: center; gap: 32px; margin-top: 44px; }

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 26px;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.button svg { width: 17px; height: 17px; }
.button--primary { color: #f2fffc; background: var(--accent-deep); box-shadow: 0 10px 28px -12px var(--glow); }
.button--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px var(--glow); }
.text-link { font-size: 14px; letter-spacing: 0.06em; border-bottom: 1px solid var(--line); padding-bottom: 4px; transition: color 0.25s, border-color 0.25s; }
.text-link span { color: var(--accent); }
.text-link:hover { color: var(--accent); border-color: var(--accent); }

/* Terminal */
.hero__terminal { position: relative; z-index: 2; }
.terminal {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #101318;
  color: #d6d3cc;
  font-family: var(--mono);
  font-size: 13px;
  box-shadow: 0 34px 70px -34px rgba(0, 0, 0, 0.5);
}
html[data-theme="dark"] .terminal { border-color: rgba(233, 231, 225, 0.16); }
.terminal__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 14px;
  background: #1b2027;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.terminal__bar i { width: 10px; height: 10px; border-radius: 50%; }
.terminal__bar i:nth-child(1) { background: #ff5f57; }
.terminal__bar i:nth-child(2) { background: #febc2e; }
.terminal__bar i:nth-child(3) { background: #28c840; }
.terminal__bar span { margin-left: 10px; color: #8b929c; font-size: 11px; letter-spacing: 0.06em; }
.terminal__body { padding: 22px 24px 24px; line-height: 2; }
.terminal__body p { margin: 0; }
.terminal__body b { color: #46c7b3; font-weight: 600; }
.terminal__body .ok { color: #aeb6bf; }
.terminal__body .cursor { color: #8b929c; }
.caret {
  display: inline-block;
  width: 8px;
  height: 15px;
  vertical-align: -2px;
  background: #46c7b3;
  animation: blink 1.1s steps(2, start) infinite;
}
@keyframes blink { to { visibility: hidden; } }
.terminal__caption { margin: 16px 0 0; color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-align: center; }

.hero__scroll { position: absolute; bottom: 40px; left: 50%; display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em; transform: translateX(-50%); }
.hero__scroll i { width: 1px; height: 44px; overflow: hidden; background: var(--line); position: relative; }
.hero__scroll i::after { position: absolute; inset: 0; content: ""; background: var(--accent); animation: scroll-line 2.2s var(--ease) infinite; }

/* ============ Sections ============ */
main { position: relative; z-index: 1; }
.section { padding: 140px max(48px, calc((100vw - 1320px) / 2)); }
.section-heading {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.section-number { margin: 0; color: var(--accent); font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; }
.section-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(38px, 4.6vw, 60px); font-weight: 400; letter-spacing: 0.02em; }
.section-en { margin: 0; color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.3em; }

/* About */
.about__layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 10vw; padding: 90px 0 0; }
.about blockquote { margin: 0; font-family: var(--serif); font-size: clamp(30px, 3.6vw, 46px); font-weight: 400; line-height: 1.5; }
.about blockquote span { color: var(--accent); }
.about__copy > p { margin: 0 0 22px; color: var(--muted); font-size: 15px; line-height: 2; }
.about__copy > p:first-child { margin-top: 8px; }
.about__stack { display: flex; flex-wrap: wrap; gap: 9px; margin: 30px 0 38px; }
.about__stack span {
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: color-mix(in srgb, var(--paper) 60%, transparent);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  transition: color 0.25s, border-color 0.25s, transform 0.25s;
}
.about__stack span:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.about__facts { margin: 0; }
.about__facts div { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 16px 0; border-top: 1px solid var(--line); }
.about__facts dt { color: var(--muted); font-size: 12px; letter-spacing: 0.1em; }
.about__facts dd { margin: 0; font-size: 14px; }
.status-dot { display: inline-block; width: 8px; height: 8px; margin-right: 2px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15); }

/* Articles */
.articles-list { padding-top: 55px; }
.article {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 26px 14px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--ease), background 0.3s;
}
.article:first-child { border-top: 1px solid var(--line); }
.article:hover { padding-right: 22px; padding-left: 22px; background: color-mix(in srgb, var(--paper-deep) 55%, transparent); }
.article time { color: var(--muted); font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; }
.article__main { display: flex; flex-direction: column; gap: 8px; }
.article__tag { width: max-content; padding: 4px 10px; border-radius: 4px; color: var(--accent); background: color-mix(in srgb, var(--accent) 11%, transparent); font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; }
.article h3 { margin: 0; font-family: var(--serif); font-size: clamp(19px, 2vw, 24px); font-weight: 500; line-height: 1.5; transition: color 0.25s; }
.article:hover h3 { color: var(--accent); }
.article__arrow { color: var(--muted); font-size: 12.5px; letter-spacing: 0.04em; transition: color 0.25s; }
.article:hover .article__arrow { color: var(--accent); }
.articles__note { margin: 34px 0 0; color: var(--muted); font-size: 12.5px; letter-spacing: 0.04em; }

/* Projects */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; padding-top: 55px; }
.project { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: color-mix(in srgb, var(--paper) 72%, transparent); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s; }
.projects-grid:has(.project:only-child) .project__visual { height: 320px; }
.project:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--accent) 45%, transparent); box-shadow: 0 26px 50px -30px rgba(0, 0, 0, 0.35); }
.project__visual { position: relative; display: grid; place-items: center; height: 210px; overflow: hidden; }
.project__year { position: absolute; top: 14px; left: 16px; color: rgba(255, 255, 255, 0.85); font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; }
.project__codename { position: relative; z-index: 1; margin: 0; color: rgba(255, 255, 255, 0.96); font-family: var(--mono); font-size: clamp(20px, 2vw, 26px); font-weight: 600; line-height: 1.3; text-align: center; letter-spacing: 0.12em; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35); }
.project__visual--godot { background: linear-gradient(135deg, #0e5a4e, #0a352e); }
.grid-lines { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(5, 1fr); opacity: 0.5; }
.grid-lines i { border-right: 1px solid rgba(255, 255, 255, 0.14); border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.project__visual--bluff { background: linear-gradient(135deg, #173b5e, #0c2033); }
.nodes { position: absolute; inset: 0; }
.node { position: absolute; width: 13px; height: 13px; border: 3px solid #7fd1c4; border-radius: 50%; background: #173b5e; box-shadow: 0 0 14px rgba(127, 209, 196, 0.55); }
.node--a { top: 28%; left: 26%; }
.node--b { top: 26%; right: 22%; }
.node--c { bottom: 24%; left: 44%; }
.link { position: absolute; height: 1px; background: linear-gradient(to right, transparent, rgba(127, 209, 196, 0.75), transparent); transform-origin: left center; }
.link--ab { top: 33%; left: 31%; width: 34%; transform: rotate(-8deg); }
.link--bc { top: 32%; left: 56%; width: 30%; transform: rotate(28deg); }
.link--ca { top: 38%; left: 30%; width: 28%; transform: rotate(52deg); }
.project__visual--lab { background: linear-gradient(135deg, #6b4a12, #3a2707); }
.lab-circle { display: grid; place-items: center; width: 92px; height: 92px; border: 2px dashed rgba(240, 169, 78, 0.85); border-radius: 50%; animation: rotate 22s linear infinite; }
.lab-circle span { color: #f0a94e; font-family: var(--mono); font-size: 40px; font-weight: 200; line-height: 1; animation: rotate-reverse 22s linear infinite; }
.project__meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 22px 22px 0; }
.project__meta p { margin: 0 0 8px; color: var(--muted); font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; }
.project__meta h3 { margin: 0; font-family: var(--serif); font-size: 23px; font-weight: 600; }
.project__arrow { color: var(--muted); font-size: 18px; transition: color 0.25s, transform 0.3s; }
.project:hover .project__arrow { color: var(--accent); transform: translate(3px, -3px); }
.project__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 22px 22px; padding: 0; list-style: none; }
.project__tags li { padding: 5px 10px; border-radius: 999px; color: var(--muted); background: color-mix(in srgb, var(--paper-deep) 70%, transparent); border: 1px solid var(--line); font-family: var(--mono); font-size: 10.5px; }

.now {
  position: relative;
  padding: 130px max(48px, calc((100vw - 1320px) / 2)) 150px;
  color: var(--accent-ink);
  background: linear-gradient(120deg, var(--accent), var(--accent-deep));
  overflow: hidden;
}
.now::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.section-heading--light { border-color: rgba(8, 51, 46, 0.28); }
.section-heading--light .section-number { color: rgba(8, 51, 46, 0.7); }
.section-heading--light .section-en { color: rgba(8, 51, 46, 0.65); }
.now__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: 10vw; padding-top: 70px; }
.now__lead { margin: 0; font-family: var(--serif); font-size: clamp(34px, 4.2vw, 58px); line-height: 1.45; }
.now__lead span { color: #fff8e8; }
.now__list { margin: 0; padding: 0; list-style: none; }
.now__list li { display: grid; grid-template-columns: 95px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(8, 51, 46, 0.28); }
.now__list li:first-child { border-top: 1px solid rgba(8, 51, 46, 0.28); }
.now__list span { color: rgba(8, 51, 46, 0.72); font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; }
.now__list p { margin: 0; font-size: 14px; line-height: 1.7; }

/* Footer */
.site-footer { position: relative; z-index: 1; padding: 80px max(48px, calc((100vw - 1320px) / 2)) 35px; background: #101318; color: #e9e7e1; }
.site-footer::before { position: absolute; inset: 0; content: ""; opacity: 0.35; background-image: linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px); background-size: 44px 44px; pointer-events: none; }
.footer__bottom { position: relative; z-index: 1; }





.footer__bottom { display: grid; grid-template-columns: 1fr 1fr auto; margin-top: 0; padding-top: 22px; border-top: 1px solid rgba(233, 231, 225, 0.16); color: #8b929c; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; }
.footer__bottom p { margin: 0; }
.footer__bottom p:nth-child(2) { text-align: center; }
.footer__bottom a:hover { color: #46c7b3; }

/* ============ Reveal ============ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes rotate-reverse { to { transform: rotate(-360deg); } }
@keyframes scroll-line { 0% { transform: translateY(-110%); } 55%, 100% { transform: translateY(230%); } }

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .hero { gap: 44px; padding-right: 56px; padding-left: 8vw; }
  .hero__terminal { width: 90%; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project:last-child { grid-column: 1 / -1; }
  .project:last-child .project__visual { height: 200px; }
}

@media (max-width: 980px) {
  :root { --container: calc(100vw - 48px); }
  .site-header { height: 72px; padding: 0 24px; }
  .site-header.is-scrolled { height: 62px; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; }
  .site-nav a { font-family: var(--serif); font-size: 34px; }
  .menu-toggle { display: flex; flex-direction: column; gap: 6px; }
  .menu-toggle span { display: block; width: 15px; height: 1px; background: currentColor; transition: transform 0.3s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr 0.8fr; min-height: 900px; padding: 130px 40px 90px 10vw; }
  .hero__terminal { width: 100%; }
  .hero__scroll { display: none; }
  .section { padding: 110px 32px; }
  .about__layout, .now__grid { gap: 8vw; padding-right: 2vw; padding-left: 2vw; }
  .article { grid-template-columns: 64px 1fr auto; }
}

@media (max-width: 720px) {
  .hero { display: block; min-height: 100svh; padding: 125px 24px 80px; }
  .hero::after { left: auto; right: 22px; }
  .hero__index { display: none; }
  .hero h1 { font-size: clamp(46px, 13vw, 68px); }
  .hero__intro { margin-top: 30px; font-size: 16px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 26px; margin-top: 36px; }
  .hero__terminal { width: 100%; margin-top: 56px; }
  .section { padding: 85px 22px; }
  .section-heading { grid-template-columns: 42px 1fr; padding-bottom: 19px; }
  .section-heading h2 { font-size: 37px; }
  .section-en { display: none; }
  .about__layout, .now__grid { grid-template-columns: 1fr; gap: 50px; padding: 55px 0 0; }
  .about blockquote { font-size: 28px; }
  .about__copy > p { font-size: 14px; }
  .about__facts div { grid-template-columns: 82px 1fr; }
  .article { grid-template-columns: 52px 1fr; gap: 14px; padding: 20px 6px; }
  .article__arrow { display: none; }
  .article h3 { font-size: 19px; }
  .article:hover { padding-right: 8px; padding-left: 8px; }
  .projects-grid { grid-template-columns: 1fr; gap: 24px; }
  .project:last-child { grid-column: auto; }
  .project__visual { height: 190px; }
  .now { padding: 90px 22px 100px; }
  .now__lead { font-size: 37px; }
  .now__list li { grid-template-columns: 80px 1fr; }
  .site-footer { padding: 60px 22px 28px; }
  .footer__bottom { grid-template-columns: 1fr auto; gap: 15px; margin-top: 0; }
  .footer__bottom p:nth-child(2) { display: none; }
}

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