@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700;900&family=Oswald:wght@500;600;700&display=swap');

:root {
  --brand: #0a7a4b;
  --brand-dark: #065c38;
  --brand-light: #12a866;
  --ink: #0c1a14;
  --ink-soft: #2a3d34;
  --muted: #5a6f64;
  --paper: #f3f7f4;
  --surface: #ffffff;
  --line: #d5e3db;
  --accent: #e8a317;
  --danger: #c0392b;
  --hero-overlay: linear-gradient(135deg, rgba(6, 40, 28, 0.92) 0%, rgba(10, 80, 50, 0.78) 55%, rgba(8, 50, 35, 0.88) 100%);
  --radius: 10px;
  --shadow: 0 12px 40px rgba(6, 40, 28, 0.12);
  --max: 1180px;
  --header-h: 72px;
  --font-display: 'Oswald', 'Noto Sans SC', sans-serif;
  --font-body: 'Noto Sans SC', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-dark); }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(100% - 32px, var(--max)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(12, 26, 20, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  flex-shrink: 0;
}

.logo img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.logo-text span { color: var(--brand-light); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-desktop a {
  color: rgba(255,255,255,.82);
  padding: 8px 12px;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 6px;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform .15s, background .2s, box-shadow .2s;
  text-align: center;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 20px rgba(10, 122, 75, 0.35);
}

.btn-primary:hover {
  background: var(--brand-light);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}

.btn-outline:hover {
  background: var(--brand);
  color: #fff;
}

.btn-accent {
  background: var(--accent);
  color: var(--ink);
}

.btn-accent:hover {
  background: #f0b43a;
  color: var(--ink);
}

.btn-lg { padding: 14px 28px; font-size: 1.05rem; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: #0c1a14;
  padding: 16px 20px 28px;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform .28s ease, opacity .28s ease;
  border-bottom: 1px solid rgba(255,255,255,.08);
  z-index: 999;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}

.nav-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile a {
  display: block;
  color: rgba(255,255,255,.9);
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-weight: 500;
}

.nav-mobile a:hover { color: var(--brand-light); }
.nav-mobile .mobile-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

@media (min-width: 960px) {
  .hamburger { display: none; }
  .nav-desktop { display: flex; }
  .header-actions .btn { display: inline-flex; }
}

@media (max-width: 959px) {
  .header-actions .btn-hide-sm { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  background:
    var(--hero-overlay),
    url('/开云体育首页.jpg') center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to top, var(--paper), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 0 96px;
  max-width: 720px;
  animation: fadeUp .8s ease both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-brand em {
  font-style: normal;
  color: var(--brand-light);
  display: block;
  font-size: 0.42em;
  letter-spacing: 0.28em;
  margin-bottom: 8px;
  opacity: .9;
}

.hero h1 {
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 16px;
  color: #fff;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Sections */
.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--surface);
}

.section-head {
  margin-bottom: 40px;
  max-width: 720px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
  font-weight: 600;
}

.section-head h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
}

/* Quick entry */
.entry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 768px) {
  .entry-grid { grid-template-columns: repeat(4, 1fr); }
}

.entry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  text-align: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.entry-item:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--brand-dark);
}

.entry-item .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(10, 122, 75, 0.1);
  border-radius: 50%;
  color: var(--brand);
  font-size: 1.35rem;
  font-weight: 700;
}

.entry-item strong {
  font-size: 1.02rem;
}

/* Download / feature split */
.split {
  display: grid;
  gap: 36px;
  align-items: center;
}

@media (min-width: 880px) {
  .split { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }
}

.split-media {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: fadeIn 1s ease both;
}

.split-media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.split-body h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.35;
}

.split-body p {
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.split-body ul {
  margin: 18px 0 24px;
}

.split-body li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--ink-soft);
}

.split-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

/* Product grid */
.product-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

.product {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.product-body {
  padding: 20px 18px 22px;
}

.product-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.product-body p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.product-body a {
  font-weight: 700;
  font-size: 0.92rem;
}

/* Partners */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 720px) {
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1000px) {
  .partner-grid { grid-template-columns: repeat(4, 1fr); }
}

.partner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  transition: border-color .2s;
}

.partner:hover { border-color: var(--brand); }

.partner img {
  height: 72px;
  width: 100%;
  object-fit: contain;
  margin: 0 auto 12px;
}

.partner strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.partner span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Provider logos */
.provider-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  align-items: center;
}

.provider-row img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(0.2);
  opacity: 0.85;
  transition: opacity .2s, filter .2s;
}

.provider-row img:hover {
  opacity: 1;
  filter: none;
}

/* Feature list */
.feature-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 768px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature {
  padding: 28px 22px;
  background: linear-gradient(160deg, #ffffff 0%, #eef6f1 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.feature-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 12px;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.feature p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Promo strip */
.promo-strip {
  display: grid;
  gap: 16px;
}

@media (min-width: 800px) {
  .promo-strip { grid-template-columns: repeat(2, 1fr); }
}

.promo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 200px;
}

.promo img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,40,28,.9), rgba(6,40,28,.25));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
}

.promo-overlay h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.promo-overlay p {
  font-size: 0.9rem;
  opacity: .9;
}

/* SEO article */
.seo-article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(24px, 4vw, 48px);
}

.seo-article h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  margin-bottom: 18px;
  font-weight: 900;
}

.seo-article h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
  font-weight: 800;
  color: var(--brand-dark);
}

.seo-article p {
  margin-bottom: 14px;
  color: var(--ink-soft);
}

.seo-article ul,
.seo-article ol {
  margin: 0 0 16px 1.2em;
  list-style: disc;
}

.seo-article ol { list-style: decimal; }

.seo-article li {
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.seo-article a { font-weight: 600; }

.toc {
  background: var(--paper);
  border-left: 3px solid var(--brand);
  padding: 16px 18px;
  margin: 20px 0 28px;
  border-radius: 0 8px 8px 0;
}

.toc strong {
  display: block;
  margin-bottom: 8px;
}

.toc a {
  display: inline-block;
  margin-right: 14px;
  margin-bottom: 6px;
  font-size: 0.92rem;
}

/* FAQ */
.faq-list { display: grid; gap: 10px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 16px 48px 16px 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  position: relative;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--brand);
  font-weight: 400;
}

.faq-item.is-open .faq-q::after { content: '−'; }

.faq-a {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-item.is-open .faq-a { display: block; animation: fadeIn .25s ease; }

/* CTA band */
.cta-band {
  background:
    linear-gradient(120deg, rgba(6, 60, 40, 0.94), rgba(10, 100, 65, 0.88)),
    url('/足球.jpg') center / cover no-repeat;
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.cta-band p {
  opacity: .9;
  margin-bottom: 24px;
  max-width: 560px;
  margin-inline: auto;
}

.cta-band .hero-cta {
  justify-content: center;
}

/* Page hero (inner) */
.page-hero {
  background:
    linear-gradient(135deg, rgba(6, 40, 28, 0.92), rgba(10, 90, 55, 0.85)),
    url('/足球.jpg') center / cover no-repeat;
  color: #fff;
  padding: 56px 0 48px;
}

.page-hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.page-hero p {
  opacity: .9;
  max-width: 640px;
}

.breadcrumb {
  font-size: 0.88rem;
  margin-bottom: 14px;
  opacity: .75;
}

.breadcrumb a { color: #fff; }
.breadcrumb span { margin: 0 6px; opacity: .6; }

/* Content pages */
.content-page {
  padding: 48px 0 72px;
}

.content-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(24px, 4vw, 44px);
  max-width: 860px;
}

.content-box h2 {
  font-size: 1.35rem;
  margin: 28px 0 12px;
  font-weight: 800;
  color: var(--brand-dark);
}

.content-box h2:first-child { margin-top: 0; }

.content-box p,
.content-box li {
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.content-box ul,
.content-box ol {
  margin: 0 0 16px 1.2em;
  list-style: disc;
}

.content-box ol { list-style: decimal; }

.content-box a { font-weight: 600; }

.related-links {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.related-links h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.related-links a {
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Auth pages */
.auth-layout {
  display: grid;
  gap: 32px;
  padding: 48px 0 72px;
}

@media (min-width: 900px) {
  .auth-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 48px;
  }
}

.auth-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px 32px;
  box-shadow: var(--shadow);
}

.auth-card h1 {
  font-size: 1.55rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.auth-card .sub {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  outline: none;
  transition: border-color .2s;
}

.form-group input:focus {
  border-color: var(--brand);
}

.form-hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}

.auth-footer {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.auth-seo h2 {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.auth-seo h3 {
  font-size: 1.08rem;
  margin: 22px 0 10px;
  color: var(--brand-dark);
}

.auth-seo p,
.auth-seo li {
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.auth-seo ul {
  margin: 0 0 12px 1.1em;
  list-style: disc;
}

/* Error pages */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 80px 0;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 8rem);
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}

.error-page h1 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 480px;
  margin-inline: auto;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Footer */
.site-footer {
  background: #0c1a14;
  color: rgba(255,255,255,.75);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.footer-brand .logo { margin-bottom: 14px; }

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,.7);
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-col a:hover { color: var(--brand-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-bottom a { color: rgba(255,255,255,.65); }
.footer-bottom a:hover { color: #fff; }

/* Top ads */
.ads-wrap {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 8px 0 4px;
  position: relative;
  z-index: 50;
}

#ads {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px 4px;
  background: transparent;
  margin: 0;
}

#ads > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70px;
  box-sizing: border-box;
}

#ads figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#ads img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(24, 24, 24, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
  display: block;
  border: none;
  background: linear-gradient(135deg, #fff, #fff);
}

#ads a {
  display: inline-block;
  text-decoration: none;
  border-radius: 15px;
}

#ads img:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 24px rgba(24, 24, 24, 0.18);
}

#ads figcaption,
#ads .caption {
  height: 15px;
  font-size: 11px;
  color: #666;
  text-align: center;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 4px;
}

/* Utils */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
