/* ================================================
   DEMO VIDEO
   ================================================ */

.demo-sec {
  padding-top: 90px;
}

.demo-video-shell {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.10), rgba(13, 74, 47, 0.18)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.demo-video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
  cursor: auto;
}

.demo-video-player[hidden] {
  display: none;
}

.demo-video-player:fullscreen {
  cursor: auto;
}

.demo-video-player:-webkit-full-screen {
  cursor: auto;
}

body.video-fullscreen-cursor {
  cursor: auto;
}

body.video-fullscreen-cursor #cur,
body.video-fullscreen-cursor #cur-glow {
  display: none;
}

.demo-video-placeholder {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 24px;
  text-align: center;
}

.demo-video-placeholder[hidden] {
  display: none;
}

.demo-video-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent);
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.demo-video-placeholder h3 {
  font-size: 22px;
  font-weight: 800;
}

.demo-video-placeholder p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 720px) {
  .demo-video-placeholder {
    min-height: 280px;
  }
}
