/* PikachuCloud — original static hosting website */
:root {
  --ink: #0c1222;
  --ink-2: #17213a;
  --muted: #64708a;
  --surface: #ffffff;
  --surface-2: #f5f7fb;
  --surface-3: #edf1f8;
  --border: #dce3ef;
  --brand: #6558f5;
  --brand-2: #2dd4bf;
  --brand-3: #f7c948;
  --success: #16a36a;
  --danger: #dc4c64;
  --shadow: 0 24px 70px rgba(28, 35, 58, .12);
  --shadow-sm: 0 12px 34px rgba(28, 35, 58, .09);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}
[data-theme="dark"] {
  --ink: #eef2ff;
  --ink-2: #dce4fa;
  --muted: #9aa7c4;
  --surface: #11182b;
  --surface-2: #0a1020;
  --surface-3: #18223a;
  --border: #273451;
  --shadow: 0 24px 70px rgba(0, 0, 0, .35);
  --shadow-sm: 0 12px 34px rgba(0, 0, 0, .25);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--surface); line-height: 1.65; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--surface-2); }
.stack { display: grid; gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-weight: 800; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { margin: 10px 0 14px; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.08; letter-spacing: -.04em; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.lead { color: var(--muted); font-size: 1.1rem; }
.kicker { color: var(--brand); font-weight: 800; }
.text-gradient { background: linear-gradient(105deg, var(--brand), #8d71ff 45%, #11b8a2); -webkit-background-clip: text; background-clip: text; color: transparent; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 13px; border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--border)); background: color-mix(in srgb, var(--brand) 9%, var(--surface)); color: var(--brand); border-radius: 999px; font-weight: 800; font-size: .82rem; }
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px color-mix(in srgb, var(--success) 16%, transparent); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 21px; border: 1px solid transparent; border-radius: 13px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--brand), #7f6af8); box-shadow: 0 15px 35px rgba(101, 88, 245, .25); }
.btn-secondary { background: var(--surface); border-color: var(--border); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-sm { min-height: 40px; padding: 0 15px; border-radius: 11px; font-size: .9rem; }
.icon { width: 44px; height: 44px; display: inline-grid; place-items: center; border-radius: 13px; background: color-mix(in srgb, var(--brand) 11%, var(--surface)); color: var(--brand); }
.icon svg { width: 22px; height: 22px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.card-pad { padding: 28px; }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 29px; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: color-mix(in srgb, var(--success) 14%, var(--surface)); color: var(--success); font-size: .75rem; font-weight: 900; }

/* Header */
.announcement { background: #0d1530; color: #dce5ff; font-size: .88rem; }
.announcement .container { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center; }
.announcement strong { color: var(--brand-3); }
.site-header { position: sticky; top: 0; z-index: 1000; background: color-mix(in srgb, var(--surface) 88%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--border) 75%, transparent); backdrop-filter: blur(18px); }
.navbar { height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; font-size: 1.23rem; letter-spacing: -.03em; white-space: nowrap; }
.brand-mark { width: 39px; height: 39px; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 7px; }
.nav-links a { padding: 9px 11px; border-radius: 10px; color: var(--muted); font-weight: 750; font-size: .92rem; }
.nav-links a:hover, .nav-links a.active { color: var(--brand); background: color-mix(in srgb, var(--brand) 8%, transparent); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.theme-toggle, .menu-toggle { width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); color: var(--ink); display: grid; place-items: center; }
.theme-toggle svg, .menu-toggle svg { width: 20px; }
.menu-toggle { display: none; }
.mobile-panel { display: none; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 88px 0 82px; background: radial-gradient(circle at 86% 0%, rgba(101,88,245,.15), transparent 31%), radial-gradient(circle at 13% 18%, rgba(45,212,191,.12), transparent 28%), var(--surface); }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(color-mix(in srgb, var(--border) 37%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in srgb, var(--border) 37%, transparent) 1px, transparent 1px); background-size: 50px 50px; mask-image: linear-gradient(to bottom, black, transparent 74%); opacity: .48; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; gap: 60px; align-items: center; }
.hero h1 { margin: 20px 0 22px; font-size: clamp(3rem, 6vw, 5.25rem); line-height: .99; letter-spacing: -.062em; max-width: 760px; }
.hero-copy { color: var(--muted); font-size: 1.13rem; max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 16px 24px; margin-top: 31px; color: var(--muted); font-weight: 700; font-size: .9rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof i { color: var(--success); font-style: normal; }
.hero-visual { position: relative; min-height: 510px; display: grid; place-items: center; }
.hero-visual > img { width: min(100%, 600px); filter: drop-shadow(0 30px 40px rgba(31, 36, 72, .18)); }
.float-card { position: absolute; padding: 14px 16px; border-radius: 15px; background: color-mix(in srgb, var(--surface) 92%, transparent); border: 1px solid var(--border); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); animation: float 5s ease-in-out infinite; }
.float-card strong { display: block; font-size: 1rem; }
.float-card small { color: var(--muted); }
.float-a { top: 10%; right: 0; }
.float-b { left: 0; bottom: 16%; animation-delay: -2s; }
@keyframes float { 50% { transform: translateY(-9px); } }

/* Trust/domain */
.trust-row { display: grid; grid-template-columns: auto 1fr; gap: 35px; align-items: center; padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-row > strong { font-size: .92rem; }
.logo-cloud { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; color: var(--muted); font-weight: 900; letter-spacing: -.02em; }
.domain-box { padding: 36px; border-radius: 28px; background: linear-gradient(135deg, #161e38, #272051 54%, #123e49); color: white; box-shadow: var(--shadow); }
.domain-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 40px; align-items: center; }
.domain-layout h2 { margin: 8px 0; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; }
.domain-search { display: flex; background: white; border-radius: 16px; padding: 7px; box-shadow: 0 20px 45px rgba(0,0,0,.18); }
.domain-search input { min-width: 0; flex: 1; border: 0; outline: 0; padding: 0 15px; color: #111827; }
.domain-search select { border: 0; outline: 0; padding: 0 12px; color: #334155; background: white; }
.tld-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; color: #e8edff; font-size: .9rem; }
.tld-row span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.17); border-radius: 10px; }
.domain-message { min-height: 24px; margin-top: 10px; color: #dce5ff; }

/* Services / features */
.service-card { padding: 27px; transition: transform .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--brand) 35%, var(--border)); }
.service-card h3 { margin: 20px 0 8px; font-size: 1.25rem; }
.service-card p { margin: 0; color: var(--muted); }
.service-price { margin-top: 18px; font-weight: 900; }
.service-price strong { font-size: 1.55rem; }
.feature-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.feature-panel { position: relative; padding: 32px; min-height: 460px; overflow: hidden; background: linear-gradient(145deg, #111934, #2a1e59 56%, #0f4c55); color: white; }
.feature-panel::before { content: ""; position: absolute; width: 260px; height: 260px; right: -70px; top: -80px; border-radius: 50%; background: rgba(247, 201, 72, .17); filter: blur(2px); }
.metric-card { position: relative; margin-top: 22px; padding: 21px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.08); border-radius: 18px; backdrop-filter: blur(9px); }
.metric-line { height: 9px; background: rgba(255,255,255,.12); border-radius: 99px; overflow: hidden; }
.metric-line span { display: block; height: 100%; width: var(--w); background: linear-gradient(90deg, var(--brand-2), var(--brand-3)); border-radius: inherit; }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.mini-feature { display: grid; grid-template-columns: 45px 1fr; gap: 13px; padding: 20px; border: 1px solid var(--border); border-radius: 17px; background: var(--surface); }
.mini-feature h3 { margin: 0 0 4px; font-size: 1rem; }
.mini-feature p { margin: 0; color: var(--muted); font-size: .9rem; }

/* Pricing */
.toggle-wrap { display: flex; justify-content: center; margin: -20px 0 38px; }
.price-toggle { display: inline-flex; align-items: center; padding: 5px; border: 1px solid var(--border); background: var(--surface); border-radius: 13px; }
.price-toggle button { border: 0; background: transparent; color: var(--muted); padding: 9px 16px; border-radius: 9px; font-weight: 800; }
.price-toggle button.active { background: var(--ink); color: var(--surface); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.price-card { position: relative; padding: 30px; display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--brand); transform: translateY(-10px); }
.popular { position: absolute; top: 15px; right: 15px; background: color-mix(in srgb, var(--brand) 12%, var(--surface)); color: var(--brand); border-radius: 999px; padding: 6px 10px; font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.price-name { font-size: 1.2rem; font-weight: 900; }
.price-description { color: var(--muted); min-height: 52px; }
.price { display: flex; align-items: end; gap: 5px; margin: 16px 0 5px; }
.price .currency { font-size: 1.25rem; font-weight: 900; margin-bottom: 8px; }
.price .amount { font-size: 3.2rem; line-height: 1; font-weight: 950; letter-spacing: -.06em; }
.price .period { color: var(--muted); margin-bottom: 8px; }
.price-card .btn { width: 100%; margin-top: auto; }
.price-note { margin: 7px 0 22px; color: var(--muted); font-size: .86rem; }

/* Stats/location/testimonials */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.stat { padding: 31px 24px; text-align: center; background: var(--surface); }
.stat + .stat { border-left: 1px solid var(--border); }
.stat strong { display: block; font-size: 2.2rem; letter-spacing: -.05em; }
.stat span { color: var(--muted); }
.location-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: stretch; }
.map-card { padding: 22px; overflow: hidden; }
.map-card img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.location-list { display: grid; gap: 14px; }
.location-item { padding: 19px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.location-item strong { display: block; }
.location-item span { color: var(--muted); font-size: .9rem; }
.latency { color: var(--success) !important; font-weight: 900; }
.testimonial { padding: 28px; }
.stars { color: #f2b705; letter-spacing: 2px; }
.testimonial blockquote { margin: 18px 0 24px; font-size: 1.02rem; }
.person { display: flex; align-items: center; gap: 12px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: white; font-weight: 900; background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.person small { display: block; color: var(--muted); }

/* FAQ/blog/CTA */
.faq-list { max-width: 860px; margin: auto; display: grid; gap: 13px; }
.faq-item { border: 1px solid var(--border); border-radius: 16px; background: var(--surface); overflow: hidden; }
.faq-question { width: 100%; border: 0; background: transparent; color: var(--ink); padding: 20px 22px; display: flex; justify-content: space-between; text-align: left; font-weight: 850; }
.faq-question span:last-child { transition: transform .2s ease; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 22px 20px; color: var(--muted); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.blog-card { overflow: hidden; }
.blog-cover { min-height: 190px; display: grid; place-items: center; color: white; background: linear-gradient(135deg, #162143, #6a55ee); }
.blog-cover svg { width: 90px; opacity: .9; }
.blog-content { padding: 24px; }
.blog-meta { display: flex; gap: 13px; color: var(--muted); font-size: .82rem; }
.blog-content h3 { margin: 10px 0; font-size: 1.18rem; }
.blog-content p { color: var(--muted); }
.cta { position: relative; overflow: hidden; padding: 54px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: white; background: linear-gradient(135deg, #171d3b, #4d38aa 58%, #087b72); border-radius: 30px; }
.cta::after { content: ""; position: absolute; width: 240px; height: 240px; right: -80px; bottom: -130px; border-radius: 50%; border: 50px solid rgba(255,255,255,.07); }
.cta h2 { position: relative; margin: 0 0 8px; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; }
.cta p, .cta .btn { position: relative; }
.cta p { margin: 0; color: #dbe3ff; }

/* Inner pages */
.page-hero { padding: 82px 0; text-align: center; background: radial-gradient(circle at 50% 0%, rgba(101,88,245,.19), transparent 38%), var(--surface-2); border-bottom: 1px solid var(--border); }
.page-hero h1 { margin: 11px 0; font-size: clamp(2.7rem, 6vw, 4.7rem); line-height: 1; letter-spacing: -.055em; }
.page-hero p { max-width: 700px; margin: auto; color: var(--muted); font-size: 1.1rem; }
.breadcrumb { margin-top: 20px; display: flex; justify-content: center; gap: 9px; color: var(--muted); font-size: .9rem; }
.content-card { padding: 34px; }
.content-card h2, .content-card h3 { margin-top: 0; }
.compare-table { width: 100%; border-collapse: collapse; background: var(--surface); }
.compare-table th, .compare-table td { padding: 16px; border-bottom: 1px solid var(--border); text-align: left; }
.compare-table th { background: var(--surface-2); }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
.timeline { position: relative; display: grid; gap: 22px; }
.timeline::before { content: ""; position: absolute; left: 20px; top: 10px; bottom: 10px; width: 2px; background: var(--border); }
.timeline-item { position: relative; padding-left: 60px; }
.timeline-item::before { content: ""; position: absolute; left: 12px; top: 5px; width: 18px; height: 18px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 7px color-mix(in srgb, var(--brand) 13%, var(--surface)); }
.team-card { padding: 26px; text-align: center; }
.team-avatar { width: 82px; height: 82px; margin: 0 auto 17px; border-radius: 24px; display: grid; place-items: center; color: white; font-size: 1.8rem; font-weight: 900; background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.support-card { padding: 28px; text-align: center; }
.support-card h3 { margin: 17px 0 7px; }
.support-card p { color: var(--muted); }
.article { max-width: 850px; margin: auto; }
.article h2 { margin-top: 34px; }
.article p, .article li { color: var(--muted); }
.notice { padding: 18px 20px; border-left: 4px solid var(--brand); background: color-mix(in srgb, var(--brand) 8%, var(--surface)); border-radius: 0 13px 13px 0; }

/* Forms */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 800; font-size: .9rem; }
input, select, textarea { width: 100%; border: 1px solid var(--border); background: var(--surface); color: var(--ink); border-radius: 12px; padding: 13px 14px; outline: 0; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 12%, transparent); }
textarea { min-height: 145px; resize: vertical; }
.form-status { margin-top: 13px; min-height: 25px; font-weight: 750; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.contact-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 30px; }
.contact-info { padding: 32px; color: white; background: linear-gradient(145deg, #131b37, #33266c 60%, #0f6460); }
.contact-info a { color: white; }
.contact-line { display: grid; grid-template-columns: 45px 1fr; gap: 13px; margin-top: 24px; }
.contact-line .icon { background: rgba(255,255,255,.12); color: white; }
.contact-form { padding: 32px; }

/* Footer */
.site-footer { margin-top: 96px; padding: 70px 0 24px; color: #b4bfd7; background: #0b1122; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 36px; }
.site-footer .brand { color: white; }
.footer-about { max-width: 330px; }
.footer-about p { color: #8f9bb7; }
.footer-title { color: white; font-size: .95rem; margin: 6px 0 18px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 44px; padding-top: 23px; border-top: 1px solid #202b43; display: flex; justify-content: space-between; gap: 20px; font-size: .88rem; }

/* Utilities and responsive */
.reveal { opacity: 0; transform: translateY(18px); transition: .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.hide { display: none !important; }
@media (max-width: 1000px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-actions { margin-left: auto; }
  .menu-toggle { display: grid; }
  .mobile-panel { position: fixed; inset: 117px 0 0; padding: 22px; background: var(--surface); border-top: 1px solid var(--border); z-index: 999; }
  .mobile-panel.open { display: block; }
  .mobile-panel a { display: block; padding: 15px; border-bottom: 1px solid var(--border); font-weight: 800; }
  .hero-grid, .domain-layout, .feature-split, .location-grid, .contact-layout { grid-template-columns: 1fr; }
  .hero { padding-top: 65px; }
  .hero-visual { min-height: 430px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
  .announcement .container { padding: 7px 0; }
  .navbar { height: 70px; }
  .mobile-panel { inset: 108px 0 0; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4.3rem); }
  .hero-visual { min-height: 360px; }
  .float-card { display: none; }
  .trust-row { grid-template-columns: 1fr; text-align: center; }
  .logo-cloud { justify-content: center; }
  .domain-box, .cta { padding: 30px 22px; }
  .domain-search { display: grid; grid-template-columns: 1fr auto; }
  .domain-search input { min-height: 50px; grid-column: 1 / -1; }
  .grid-2, .grid-3, .grid-4, .feature-list, .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat { border-left: 0; }
  .stat:nth-child(even) { border-left: 1px solid var(--border); }
  .stat:nth-child(n+3) { border-top: 1px solid var(--border); }
  .cta { display: grid; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about { grid-column: auto; }
  .footer-bottom { display: grid; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
