.banner-border-black{
	width: 1000px;
	height: 591px;
	background: linear-gradient(125.78deg, #FFFFFF 0%, #DEA8F1 50.01%, #FFFFFF 100.02%);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
}

.welcome-banner-black {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  border-radius: 20px;
  width: 100% !important;
  height: 100% !important;
}

#welcome-banner-black {
  position: absolute;
  left: 0;
  width: 100%;
  display: none; /* или opacity: 0 */
  transition: opacity .3s ease;
}

#welcome-banner-black.show {
  display: flex;
  justify-content: center !important;
 align-items: center !important;
}


.welcome-banner-black.show{
  visibility: visible;
  opacity: 1;
}

.banner-content-black {
  background: #000;
  border-radius: 20px;
  width: 996px;
  height: 587px;
  color: #fff; 
  background-image: url("../img/banner-background.png");
  flex-direction: column;
  box-shadow: 0px 12px 21px rgba(155, 48, 220, 0.7);
  border: 2px;
  
}

.h1-banner-black{
	font-family: 'Inter';
	font-style: normal;
	font-weight: 900;
	font-size: 60px;
	line-height: 95%;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	background: linear-gradient(93.47deg, #FFFFFF 28.06%, #DEA8F1 100%), #FFFFFF;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	
}
.text-banner-black{
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 23px;
color: #FFFFFF;
margin-left: 30px;
margin-top:40px;
}

.banner-button-black{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 300px;
	height: 65px;
	background: #9D19D8;
	box-shadow: 0px 0px 30px #9200E6;
	border-radius: 10px;
	font-style: normal;
	font-weight: 900;
	font-size: 20px;
	line-height: 24px;
	margin-left: 30px;
	margin-top: 40px;
	text-decoration: none;
	color: #fff;

}
.banner-button-black:hover {
	filter: brightness(1.15); /* делаем светлее на 15% */
}

body.no-scroll {
  overflow: hidden !important;
}
.text-clock-banner-black{
	display: flex;
	margin-top: 30px;
	margin-left: 30px;
	margin-right: 30px;
	justify-content: space-between;
}

#flip_timer{
	width: 500px !important;
	height: 100px !important;
	display: flex;
	justify-content: center;
	align-items: center;
}

.flip-clock {
  display: flex; /* используем flexbox для выравнивания всех элементов в одну строку */
	justify-content: center; /* выравнивание по центру */
	align-items: center; /* вертикальное выравнивание по центру */
	text-align: center;
	perspective: 500px;
	margin: 20px auto;
	transform: scale(0.35); /* уменьшаем размер всего таймера в 2 раза */
	transform-origin: center; /* сохраняем центрирование при масштабировании */
 
}
.flip-clock *,
.flip-clock *:before,
.flip-clock *:after {
  box-sizing: border-box;
}
.flip-clock__piece {
  display: inline-block;
  margin: 0px 20px;
  display: flex;
  gap: 15px;
  flex-direction: column;
}
.flip-clock__slot {
 
  font-size: 40px !important;
}
.card-black {
  display: block;
  position: relative;
  padding-bottom: 0.72em;
  font-size: 10vw;
  line-height: 0.95;
  background-image: none !important;
}

.card-black__top,
.card-black__bottom,
.card-black__back::before,
.card-black__back::after {
  display: block;
  height: 0.72em;
  color: #ccc;
  background: #222;
  padding: 0.25em 0.25em;
  border-radius: 0.15em 0.15em 0 0;
  backface-visiblity: hidden;
  transform-style: preserve-3d;
  width: 1.8em;
}

.card-black__bottom {
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 0;
  border-top: solid 1px #000;
  background: #393939;
  border-radius: 0 0 0.15em 0.15em;
  pointer-events: none;
  overflow: hidden;
}

.card-black__bottom::after {
  display: block;
  margin-top: -0.72em;
}

.card-black__back::before,
.card-black__bottom::after {
  content: attr(data-value);
}

.card-black__back {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0%;
  pointer-events: none;
}

.card-black__back::before {
  position: relative;
  z-index: -1;
  overflow: hidden;
}

.flip .card-black__back::before {
  animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35);
  animation-fill-mode: both;
  transform-origin: center bottom;
}

.flip .card-black__back .card-black__bottom {
  transform-origin: center top;
  animation-fill-mode: both;
  animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
}

@keyframes flipTop {
  0% {
	transform: rotateX(0deg);
	z-index: 2;
  }
  0%,
  99% {
	opacity: 1;
  }
  100% {
	transform: rotateX(-90deg);
	opacity: 0;
  }
}

@keyframes flipBottom {
  0%,
  50% {
	z-index: -1;
	transform: rotateX(90deg);
	opacity: 0;
  }
  51% {
	opacity: 1;
  }
  100% {
	opacity: 1;
	transform: rotateX(0deg);
	z-index: 5;
  }
}
