/* ============================================================
   多宝体育赛事 · 共享样式表 Site Kit
   play-e-duobao.com.cn  /assets/site.css
   01 变量与重置 / 02 排版基础 / 03 布局容器 / 04 媒体框
   05 按钮 / 06 面包屑 / 07 网格与面板 / 08 状态与数据
   09 装饰线 / 10 头部 / 11 页脚 / 12 响应式 / 13 动效与无障碍
   ============================================================ */

/* 01 变量与重置 */
:root {
  --bg-deep: #0B1026;
  --bg-mid: #141A3A;
  --bg-light: #1D2547;
  --electric: #1E88E5;
  --orange: #FF6F00;
  --gold: #FFD54F;
  --text-main: #F5F7FA;
  --text-second: #A0A8B8;
  --text-weak: #6C7A8A;
  --success: #4CAF50;
  --danger: #E53935;
  --line-glass: rgba(160, 168, 184, 0.16);
  --line-electric: rgba(30, 136, 229, 0.35);
  --font-head: "DIN Condensed", "Oswald", "Arial Narrow", "Roboto Condensed", "PingFang SC", sans-serif;
  --font-body: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-data: "Roboto Mono", "SFMono-Regular", "Cascadia Mono", Consolas, monospace;
  --header-top: 16px;
  --capsule-h: 60px;
  --max-w: 1280px;
  --radius: 6px;
  --shadow-deep: 0 16px 48px rgba(0, 0, 0, 0.38);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-top: calc(var(--header-top) + var(--capsule-h) + 14px);
  min-height: 100vh;
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(30, 136, 229, 0.14), transparent 60%),
    radial-gradient(900px 480px at -12% 26%, rgba(255, 111, 0, 0.07), transparent 55%),
    linear-gradient(180deg, var(--bg-deep) 0%, #0D1230 46%, var(--bg-deep) 100%);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: var(--electric);
  text-decoration: none;
  transition: color 0.2s ease;
}

strong,
b {
  font-weight: 700;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

::selection {
  background: rgba(255, 111, 0, 0.85);
  color: var(--bg-deep);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-light);
  border-radius: 8px;
  border: 2px solid var(--bg-deep);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--electric);
}

/* 02 排版基础 */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(40px, 7vw, 76px);
}
h2 {
  font-size: clamp(30px, 5vw, 52px);
}
h3 {
  font-size: clamp(22px, 3.5vw, 32px);
}
h4 {
  font-size: 20px;
}

p {
  margin: 0 0 1em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* 03 布局容器 */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 84px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.kick {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}

.kick::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-second);
  font-size: 16px;
  line-height: 1.8;
}

/* 04 媒体框 */
.media-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(150deg, var(--bg-light), var(--bg-mid));
  border: 1px solid var(--line-glass);
  border-radius: var(--radius);
  overflow: hidden;
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.14), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.media-frame::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  z-index: 2;
  pointer-events: none;
}

.media-frame img,
.media-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.media-frame--wide {
  aspect-ratio: 21 / 9;
}
.media-frame--hero {
  aspect-ratio: 16 / 7;
}
.media-frame--card {
  aspect-ratio: 4 / 3;
}
.media-frame--square {
  aspect-ratio: 1 / 1;
}

.corner-index {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 10px;
  background: rgba(11, 16, 38, 0.72);
  color: var(--text-weak);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
  border: 1px solid rgba(160, 168, 184, 0.14);
  border-radius: 2px;
}

/* 05 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform 0.2s ease, filter 0.25s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--orange);
  color: var(--bg-deep);
  filter: drop-shadow(0 8px 18px rgba(255, 111, 0, 0.28));
}

.btn--primary:hover {
  background: #FF8A2A;
  filter: drop-shadow(0 12px 26px rgba(255, 111, 0, 0.42));
}

.btn--ghost {
  border-color: rgba(30, 136, 229, 0.55);
  color: var(--electric);
  background: rgba(30, 136, 229, 0.08);
}

.btn--ghost:hover {
  border-color: var(--electric);
  background: rgba(30, 136, 229, 0.16);
  color: var(--text-main);
}

.btn--gold {
  background: var(--gold);
  color: var(--bg-deep);
  filter: drop-shadow(0 8px 18px rgba(255, 213, 79, 0.22));
}

.btn--gold:hover {
  background: #FFE082;
  filter: drop-shadow(0 12px 26px rgba(255, 213, 79, 0.36));
}

/* 06 面包屑 */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-block: 12px;
  font-size: 13px;
  color: var(--text-weak);
}

.breadcrumbs a {
  color: var(--text-second);
}

.breadcrumbs a:hover {
  color: var(--orange);
}

.breadcrumbs [aria-current="page"] {
  color: var(--text-main);
}

/* 07 网格与面板 */
.grid {
  display: grid;
  gap: 24px;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.sheet {
  position: relative;
  padding: 24px;
  background: linear-gradient(160deg, rgba(29, 37, 71, 0.72), rgba(20, 26, 58, 0.88));
  border: 1px solid var(--line-glass);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.sheet:hover {
  border-color: var(--line-electric);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.sheet--accent {
  border-top: 3px solid var(--orange);
}
.sheet--cool {
  border-top: 3px solid var(--electric);
}
.sheet--gold {
  border-top: 3px solid var(--gold);
}

/* 08 状态与数据 */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.chip--live {
  color: var(--success);
  border-color: rgba(76, 175, 80, 0.3);
  background: rgba(76, 175, 80, 0.1);
}

.chip--live::before {
  animation: live-pulse 1.6s ease-out infinite;
}

.chip--score {
  color: var(--orange);
  border-color: rgba(255, 111, 0, 0.3);
  background: rgba(255, 111, 0, 0.1);
}

.chip--calm {
  color: var(--text-second);
  border-color: rgba(160, 168, 184, 0.2);
  background: rgba(160, 168, 184, 0.06);
}

.chip--gold {
  color: var(--gold);
  border-color: rgba(255, 213, 79, 0.3);
  background: rgba(255, 213, 79, 0.08);
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-value {
  font-family: var(--font-data);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.metric-value--orange {
  color: var(--orange);
}
.metric-value--gold {
  color: var(--gold);
}

.metric-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-weak);
}

/* 09 装饰线 */
.divider {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, transparent, rgba(30, 136, 229, 0.55), rgba(255, 111, 0, 0.55), transparent);
}

.speed-line {
  height: 1px;
  border: 0;
  margin: 24px 0;
  background: linear-gradient(90deg, transparent, var(--electric) 25%, var(--orange) 65%, transparent);
}

.slant-panel {
  position: relative;
  padding: 28px;
  background: linear-gradient(160deg, rgba(29, 37, 71, 0.72), rgba(20, 26, 58, 0.9));
  border: 1px solid var(--line-glass);
  border-radius: var(--radius);
}

.slant-panel::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  opacity: 0.6;
  pointer-events: none;
}

/* 10 头部 */
.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 300;
  padding: 10px 18px;
  transform: translateY(-220%);
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: var(--header-top);
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding-inline: 16px;
}

.header-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: calc(var(--max-w) - 32px);
  min-height: var(--capsule-h);
  padding: 8px 8px 8px 18px;
  background: rgba(20, 26, 58, 0.84);
  border: 1px solid rgba(30, 136, 229, 0.22);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-badge {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--electric), var(--bg-deep));
  color: #fff;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-main);
}

.brand-copy small {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-weak);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-inline: auto;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-second);
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover {
  color: var(--text-main);
  background: rgba(30, 136, 229, 0.12);
}

.nav-link[aria-current="page"] {
  color: #fff;
  background: linear-gradient(120deg, rgba(30, 136, 229, 0.25), rgba(255, 111, 0, 0.2));
  box-shadow: inset 0 0 0 1px rgba(30, 136, 229, 0.3);
}

.nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--orange);
  transform: translateX(-50%) rotate(45deg);
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  padding: 6px 14px;
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 999px;
  background: rgba(76, 175, 80, 0.1);
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: live-pulse 1.8s ease-out infinite;
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(160, 168, 184, 0.22);
  background: rgba(29, 37, 71, 0.55);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  border-color: rgba(30, 136, 229, 0.5);
  background: rgba(29, 37, 71, 0.8);
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: var(--text-main);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 150;
  pointer-events: none;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--electric), var(--orange), var(--gold));
  will-change: width;
}

/* 11 页脚 */
.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  padding-block: 72px 30px;
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 70%);
  border-top: 1px solid rgba(30, 136, 229, 0.18);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(30, 136, 229, 0.6) 22%, rgba(255, 111, 0, 0.55) 68%, transparent 100%);
  pointer-events: none;
}

.footer-glow {
  position: absolute;
  top: -160px;
  right: 6%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.16), rgba(255, 111, 0, 0.04) 55%, transparent 70%);
  pointer-events: none;
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 42px;
}

.footer-col {
  min-width: 0;
}

.footer-col--brand {
  padding-right: 28px;
}

.footer-col h3 {
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-weak);
}

.footer-col a {
  display: block;
  padding-block: 6px;
  font-size: 14px;
  color: var(--text-second);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-trust {
  margin-top: 18px;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-second);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 6px;
  font-size: 14px;
  color: var(--text-second);
  word-break: break-all;
}

.contact-item::before {
  content: "◆";
  flex-shrink: 0;
  font-size: 7px;
  color: var(--electric);
}

.contact-note {
  display: block;
  margin-top: 12px;
  padding-left: 12px;
  border-left: 2px solid rgba(255, 213, 79, 0.5);
  font-size: 12px;
  line-height: 1.75;
  color: var(--text-weak);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(160, 168, 184, 0.1);
  font-size: 13px;
  color: var(--text-weak);
}

.footer-motto {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text-weak);
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(30, 136, 229, 0.4);
  border-radius: 50%;
  background: rgba(20, 26, 58, 0.88);
  color: var(--electric);
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, color 0.2s ease, border-color 0.2s ease;
}

.back-top[data-visible="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* 12 响应式 */
@media (max-width: 1100px) {
  .nav-link {
    padding: 0 12px;
  }

  .live-status {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-top: 10px;
    --capsule-h: 56px;
  }

  body {
    padding-top: calc(var(--header-top) + var(--capsule-h) + 12px);
  }

  .site-header {
    padding-inline: 10px;
  }

  .header-shell {
    gap: 8px;
    max-width: calc(100vw - 20px);
    padding: 6px 6px 6px 14px;
  }

  .brand-badge {
    width: 34px;
    height: 34px;
    font-size: 19px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    padding: 12px;
    background: rgba(13, 18, 48, 0.97);
    border: 1px solid rgba(30, 136, 229, 0.3);
    border-radius: 16px;
    box-shadow: var(--shadow-deep);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 15px;
  }

  .nav-link[aria-current="page"]::after {
    display: none;
  }

  .section {
    padding-block: 60px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 560px) {
  .container {
    padding-inline: 18px;
  }

  .section {
    padding-block: 48px;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .back-top {
    right: 16px;
    bottom: 16px;
  }
}

/* 13 动效与无障碍 */
[data-reveal] {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal="pending"] {
  opacity: 0;
  transform: translateY(24px);
}

[data-reveal="in"] {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

@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;
  }

  [data-reveal] {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .back-top,
  .skip-link,
  .site-nav,
  .nav-toggle-bar,
  .btn {
    transition: none;
  }
}
