/* ============================================
   BH7 Engineering — Videos Page Styles
   Tabbed Projects + Modal Player
   ============================================ */

/* ---------- Project Tabs ---------- */
.video-tabs-wrapper {
  position: relative;
  margin-bottom: 3rem;
}

.video-tabs-wrapper::before,
.video-tabs-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 2;
}

.video-tabs-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
  opacity: 0;
}

.video-tabs-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}

[data-theme="light"] .video-tabs-wrapper::before {
  background: linear-gradient(to right, #fff, transparent);
}

[data-theme="light"] .video-tabs-wrapper::after {
  background: linear-gradient(to left, #fff, transparent);
}

.video-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
  padding: 0.5rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: 14px;
  border: 1px solid var(--card-border);
  max-width: 100%;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.video-tabs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 164, 86, 0.3), transparent);
}

.video-tabs::-webkit-scrollbar {
  height: 4px;
}

.video-tabs::-webkit-scrollbar-track {
  background: transparent;
}

.video-tabs::-webkit-scrollbar-thumb {
  background: rgba(200, 164, 86, 0.2);
  border-radius: 4px;
}

.video-tabs::-webkit-scrollbar-thumb:hover {
  background: rgba(200, 164, 86, 0.4);
}

.video-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.video-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(200, 164, 86, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.video-tab:hover {
  color: var(--text-heading);
  background: rgba(200, 164, 86, 0.05);
  border-color: rgba(200, 164, 86, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.video-tab:hover::before {
  opacity: 1;
}

.video-tab.active {
  color: var(--primary);
  background: linear-gradient(135deg, rgba(200, 164, 86, 0.12), rgba(200, 164, 86, 0.04));
  border-color: rgba(200, 164, 86, 0.25);
  box-shadow:
    0 4px 20px rgba(200, 164, 86, 0.12),
    0 0 0 1px rgba(200, 164, 86, 0.05),
    inset 0 1px 0 rgba(200, 164, 86, 0.1);
  transform: translateY(-1px);
}

.video-tab.active::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(200, 164, 86, 0.1) 0%, transparent 50%);
}

.video-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 60%;
  border-radius: 2px 2px 0 0;
  background: var(--primary);
  box-shadow: 0 0 6px rgba(200, 164, 86, 0.3);
}

.video-tab-icon {
  font-size: 0.8rem;
  opacity: 0.45;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.video-tab:hover .video-tab-icon {
  opacity: 0.8;
}

.video-tab.active .video-tab-icon {
  opacity: 1;
  color: var(--primary);
}

.video-tab-count {
  font-size: 0.58rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: rgba(200, 164, 86, 0.06);
  color: var(--primary);
  line-height: 1;
  border: 1px solid rgba(200, 164, 86, 0.08);
  padding: 0 6px;
  transition: all 0.35s ease;
  flex-shrink: 0;
}

.video-tab.active .video-tab-count {
  background: var(--primary);
  color: #080808;
  border-color: var(--primary);
  box-shadow: 0 2px 10px rgba(200, 164, 86, 0.35);
}

[data-theme="light"] .video-tabs {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
}

[data-theme="light"] .video-tabs::before {
  background: linear-gradient(90deg, transparent, rgba(176, 141, 62, 0.25), transparent);
}

[data-theme="light"] .video-tab {
  background: rgba(0, 0, 0, 0.015);
  border-color: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .video-tab:hover {
  background: rgba(176, 141, 62, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .video-tab.active {
  background: linear-gradient(135deg, rgba(176, 141, 62, 0.1), rgba(176, 141, 62, 0.04));
  border-color: rgba(176, 141, 62, 0.2);
  box-shadow: 0 4px 20px rgba(176, 141, 62, 0.08);
}

[data-theme="light"] .video-tab.active .video-tab-count {
  color: #fff;
}

/* ---------- Project Info Header ---------- */
.project-info-bar {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
  padding: 1.8rem 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.project-info-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.4;
}

.project-info-left {
  flex: 1;
  min-width: 0;
}

.project-info-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.project-info-category {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid rgba(200, 164, 86, 0.2);
  padding: 0.2rem 0.8rem;
  border-radius: 100px;
}

.project-info-location {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.project-info-location i {
  color: var(--primary);
  margin-right: 0.3rem;
  font-size: 0.75rem;
}

.project-info-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 0.3rem;
  line-height: 1.25;
}

.project-info-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
  max-width: 700px;
}

.project-info-stats {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  align-self: center;
}

.project-info-video-count {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  white-space: nowrap;
}

.project-info-video-count i {
  color: var(--primary);
  margin-right: 0.4rem;
}

/* ---------- Video Cards ---------- */
.video-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(200, 164, 86, 0.3) 50%, transparent 60%);
  background-size: 300% 300%;
  background-position: 100% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease, background-position 0.8s ease;
  z-index: 1;
  pointer-events: none;
}

.video-card:hover {
  border-color: rgba(200, 164, 86, 0.12);
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(200, 164, 86, 0.06),
    0 8px 60px rgba(200, 164, 86, 0.06);
}

.video-card:hover::before {
  opacity: 1;
  background-position: 0% 0%;
}

.video-card:hover .video-thumb-overlay {
  opacity: 1;
}

.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.video-card:hover .video-thumb img {
  transform: scale(1.1);
  filter: brightness(0.45);
}

.video-card:hover .video-card-body {
  border-top-color: rgba(200, 164, 86, 0.1);
}

.video-card:hover .video-card-title {
  color: var(--primary);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--dark-3);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.7s ease;
}

.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 20%,
    rgba(0, 0, 0, 0.75) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Play button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(200, 164, 86, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  pointer-events: none;
  box-shadow:
    0 8px 32px rgba(200, 164, 86, 0.4),
    0 0 0 8px rgba(200, 164, 86, 0.12),
    0 0 0 16px rgba(200, 164, 86, 0.05);
}

.video-play-btn i {
  color: #080808;
  font-size: 1.25rem;
  margin-left: 3px;
}

/* Duration badge */
.video-thumb-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  z-index: 2;
  letter-spacing: 0.02em;
}

/* Video index number on thumbnail */
.video-thumb-index {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Card body */
.video-card-body {
  padding: 1.2rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid transparent;
  transition: border-top-color 0.4s ease;
}

.video-card-category {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
  opacity: 0.8;
}

.video-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.video-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card footer with watch hint */
.video-card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--card-border);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.video-card:hover .video-card-footer {
  color: var(--primary);
}

.video-card-footer i {
  font-size: 0.68rem;
  transition: transform 0.3s ease;
}

.video-card:hover .video-card-footer i {
  transform: translateX(3px);
}

/* Light theme card adjustments */
[data-theme="light"] .video-card:hover {
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(176, 141, 62, 0.12),
    0 8px 60px rgba(176, 141, 62, 0.04);
}

/* ---------- Video Modal (Fullscreen Overlay) ---------- */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(24px);
  padding: 2rem;
}

.video-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-overlay.active .video-modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  transform: scale(0.92) translateY(30px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  display: flex;
  flex-direction: column;
}

/* Modal top bar */
.video-modal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.video-modal-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0;
  transition: color 0.25s ease;
}

.video-modal-back:hover {
  color: var(--primary);
}

.video-modal-back i {
  font-size: 0.75rem;
}

.video-modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.video-modal-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #080808;
}

.video-modal-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(200, 164, 86, 0.08);
  flex-shrink: 0;
}

.video-modal-player iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.video-modal-info {
  text-align: center;
  margin-top: 1.2rem;
  flex-shrink: 0;
}

.video-modal-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.video-modal-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.video-modal-info p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Prev / Next navigation in modal */
.video-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}

.video-modal-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #080808;
  box-shadow: 0 4px 20px rgba(200, 164, 86, 0.3);
}

.video-modal-prev { left: -58px; }
.video-modal-next { right: -58px; }

/* Counter in modal */
.video-modal-counter {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
}

/* ---------- Channel CTA ---------- */
.video-cta {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 5rem 2rem;
  text-align: center;
}

.video-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200, 164, 86, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(200, 164, 86, 0.07) 0%, transparent 60%),
    linear-gradient(145deg, var(--dark-3), var(--dark-2));
  border: 1px solid var(--card-border);
  border-radius: 20px;
}

.video-cta-content {
  position: relative;
  z-index: 1;
}

.video-cta-icon {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 0 30px rgba(200, 164, 86, 0.3));
}

.video-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.8rem;
}

.video-cta p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.video-cta .btn-premium i {
  margin-right: 0.5rem;
}

/* ---------- Empty State ---------- */
.video-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.video-empty i {
  font-size: 3rem;
  color: var(--dark-4);
  margin-bottom: 1rem;
  display: block;
}

.video-empty p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ---------- Tab Panel Transition ---------- */
.video-tab-panel {
  animation: fadeSlideUp 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .project-info-name {
    font-size: 1.3rem;
  }

  .video-cta {
    padding: 3.5rem 1.5rem;
  }

  .video-cta h2 {
    font-size: 1.6rem;
  }

  .video-modal-prev { left: 12px; }
  .video-modal-next { right: 12px; }

  .video-modal-nav {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
  }
}

@media (max-width: 767px) {
  .video-tabs {
    gap: 0.35rem;
    padding: 0.4rem;
    border-radius: 10px;
  }

  .video-tab {
    font-size: 0.78rem;
    padding: 0.65rem 0.85rem;
    border-radius: 7px;
  }

  .project-info-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.3rem;
  }

  .project-info-name {
    font-size: 1.15rem;
  }

  .project-info-desc {
    font-size: 0.84rem;
  }

  .video-card {
    border-radius: 12px;
  }

  .video-card::before {
    border-radius: 13px;
  }

  .video-card-title {
    font-size: 0.95rem;
  }

  .video-play-btn {
    width: 54px;
    height: 54px;
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 8px 32px rgba(200, 164, 86, 0.4);
  }

  .video-play-btn i {
    font-size: 1.05rem;
  }

  .video-cta {
    padding: 3rem 1rem;
    border-radius: 16px;
  }

  .video-cta-bg {
    border-radius: 16px;
  }

  .video-cta h2 {
    font-size: 1.35rem;
  }

  .video-cta-icon {
    font-size: 2.5rem;
  }

  .video-modal-overlay {
    padding: 1rem;
  }

  .video-modal-prev,
  .video-modal-next {
    display: none;
  }

  .video-modal-info h3 {
    font-size: 1.05rem;
  }

  .video-modal-info p {
    font-size: 0.78rem;
  }
}

@media (max-width: 575px) {
  .video-tab {
    font-size: 0.74rem;
    padding: 0.6rem 0.75rem;
    gap: 0.4rem;
  }

  .video-tab-count {
    font-size: 0.56rem;
    min-width: 18px;
    height: 18px;
  }

  .video-tab-icon {
    font-size: 0.75rem;
  }

  .video-card-body {
    padding: 1rem 1.1rem 1.2rem;
  }

  .video-card-footer {
    margin-top: 0.75rem;
    padding-top: 0.7rem;
  }

  .video-modal-topbar {
    margin-bottom: 0.7rem;
  }

  .video-modal-back {
    font-size: 0.76rem;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .video-card:hover {
    transform: none;
  }

  .video-card:hover .video-thumb img {
    transform: none;
  }

  .video-card::before {
    display: none;
  }

  .video-modal-content {
    transition: opacity 0.2s ease;
    transform: none;
  }

  .video-modal-overlay.active .video-modal-content {
    transform: none;
  }

  .video-tab-panel {
    animation: none;
  }

  .video-tab {
    transition: color 0.15s, background 0.15s;
    transform: none !important;
  }
}
