body {
  background-color: #000000;
  height: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
  overflow-y: hidden;
  overflow-x: hidden;
}

.pt {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: white;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
}

a {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: red;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  transition: color 0.3s, text-decoration 0.3s;
}

a:visited {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #FFF;
  font-style: normal;
  font-weight: normal;
}

a:hover {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #D0DEF6;
  text-decoration: underline;
  font-style: normal;
  font-weight: normal;
  transition: color 0.3s, text-decoration 0.3s;
}

/* Styl dla odwiedzonych linków */
a:visited:hover {
  color: #D0DEF6;
  text-decoration: underline;
}

video {
	display: none;
	height: 100%;
	width: 100%;
	object-fit: fill;
	position: absolute;
}

 	
.content-wrapper {
  position: fixed;
  top: 10px;
  left: 10px;
  right: 0;
  z-index: 1000;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

 .content-wrapper:hover {
  opacity: 1; /* pełna przezroczystość po najechaniu myszą */
  transition: opacity 0.5s ease; /* zmniejszenie szybkości animacji */
}

.content {
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 5px;
}

.content-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background-color 0.3s;
}

.content-overlay:hover {
	background: rgba(0, 0, 0, 0.7);
	opacity: 0.3;
	transition: opacity 0.3s ease;
}

.content td {
  border: 1px solid #000;
  padding: 2px;
  
} 

.content a {
  text-decoration: none;
  color: #000;
}

.content-player {
  margin-right: 10px !important;
  position: fixed;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.0);
  color: #f1f1f1;
  width: calc(100% - 10px);
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.content-player:hover {
  opacity: 1;
}

.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0; 
  z-index: 0;
}
 

.loader1 {
  border: 4px solid rgba(0, 0, 0, 0.3);
  border-top: 4px solid #a01edb;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  position: relative;
}

progress {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #a01edb;
}

//* preloader *//

section {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh; 
	animation: animateBg 10s linear infinite;
}

section .loader2 {
	position: relative;
	width: 120px;
	height: 120px;
}
section .loader2 span {
	position: absolute;
	top: 0;
	Left: 0;
	width: 100%;
	height: 100%;
	transform: rotate(calc(18deg * var(--i)));
}
 
section .loader2 span::before {
	content: '';
	position: absolute;
	top: 0;
	Left: 0;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #a01edb;
	box-shadow: 0 0 10px #a01edb;
			 
	animation: animate 2s linear infinite;
	animation-delay: calc(0.1s * var(--i));
}

@keyframes animate
{
	0% 
	{
		transform: scale(1);
	}
	90%,100%
	{
		transform: scale(0);
	}
}