/* Preloader background */
#preloader {
  	position: fixed;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	background: #ffffff;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	z-index: 9999;
  	transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Centered content */
.preloader-content {
  	text-align: center;
}

.preloader-logo {
  	width: 100px;
  	margin-bottom: 20px;
}

.preloader-video {
  	width: 150px;
  	margin-bottom: 20px;
	border-radius: 50%;   /* Udělá video kulaté */
    object-fit: cover;    /* Ořízne video do kruhu bez deformace */
	background: #ffffff;
}

/* Progress bar */
.progress-bar {
  	width: 300px;
  	height: 2px;
  	background: #ddd;
  	border-radius: 1px;
  	overflow: hidden;
  	margin: 0 auto 10px;
}

.progress-fill {
  	width: 0%;
  	height: 100%;
  	background: #222;
  	transition: width 0.3s ease;
}

.progress-text {
  	font-family: 'Poppins', sans-serif;
  	font-size: 16px;
  	color: #222;
}