.vuc-void {
	--rotate-speed: 40;
	--count: 3; /* Default count, the DOM element should override this */
	--easeInOutSine: cubic-bezier(0.37, 0, 0.63, 1);
	--easing: cubic-bezier(0.000, 0.37, 1.000, 0.63);
}

.vuc-void {
	width: 100%;
	max-width: 1024px;
	margin: auto;
	position: relative;
	aspect-ratio: 1 / 1;
	background-image: url("../img/onepiece_world_map4.PNG");
	background-size: cover;
	
}
.vuc-card-list:hover * {
	/* animation-play-state: paused; */
}
.vuc-card-list {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	outline: 2px dotted magenta;
	z-index: 1;
	overflow: hidden;
}
.vuc-card-list li {
	position: absolute;
	top: 50%;
	left: -40%;
	transform: translateY(-50%);
/* 	outline: 2px dashed cyan; */
	width: 100%;
	animation: rotateCW calc(var(--rotate-speed) * 1s) var(--easing) infinite;
}
.vuc-card {
	max-width: 226px;
	margin-left: -35%;
	width: 55%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 16px 24px;
	gap: 8px;
	/* background: #FFFFFF; */
	/* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1), 0px 16px 32px rgba(0, 0, 0, 0.1); */
	border-radius: 12px;
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #535062;
	/* animation: rotateCCW calc(var(--rotate-speed) * 1s) var(--easing) infinite; */
	transform: rotate(180deg);
	
}

.vuc-card-link {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 3;
}

.vuc-link-box {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.vuc-link-box div {
	background-image: radial-gradient(circle, rgb(255, 192, 17), rgb(253, 237, 5), rgba(238, 255, 6, 0));
	padding:5px 35px;
	border-radius: 10%;
}

.vuc-card-link img{
	max-width: 100px;
	max-height: 100px;
}

.vuc-card-list li:nth-child(1) .vuc-card::before {
	content: "";
	background-image: url(../img/thousandsun_removebg_sq.png);
	background-size: 100% 100%;
	display: inline-block;
	height: 250px;
	width: 280px;
	position: relative;
	top: 5px;
	z-index: 2;
}

.vuc-card-list li:nth-child(2) .vuc-card::before {
	content: "";
	background-image: url(../img/moby2_removebg_sq.png);
	background-size: 100% 100%;
	display: inline-block;
	height: 250px;
	width: 280px;
	position: relative;
	top: 5px;
	z-index: 2;
}

.vuc-card-list li:nth-child(3) .vuc-card::before {
	content: "";
	background-image: url(../img/goingmerry_removebg_sq.png);
	background-size: 100% 100%;
	display: inline-block;
	height: 250px;
	width: 280px;
	position: relative;
	top: 5px;
	z-index: 2;
}

.vuc-card-list a {
	text-decoration: none;
	color: unset;
}
.vuc-model-name {
	font-weight: 500;
	font-size: 18px;
	line-height: 150%;
	color: #3B2ED0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgb(28, 173, 28);
	margin-top: 5px;
}

.vuc-card-list li:nth-child(1) .vuc-model-name::before{
	content: "";
	background-image: url(../img/gold_trophy.png);
	background-size: 100% 100%;
	display: inline-block;
	height: 50px;
	width: 50px;
	position: relative;
}

.vuc-card-list li:nth-child(2) .vuc-model-name::before {
	content: "";
	background-image: url(../img/silver_trophy.png);
	background-size: 100% 100%;
	display: inline-block;
	height: 40px;
	width: 40px;
	position: relative;
}

.vuc-card-list li:nth-child(3) .vuc-model-name::before {
	content: "";
	background-image: url(../img/bronze_trophy.png);
	background-size: 100% 100%;
	display: inline-block;
	height: 30px;
	width: 30px;
	position: relative;
}

.vuc-void svg {
	position: absolute;
	top: 0;
	left: 10%;
	z-index: 0;
}

.vuc-void li:nth-child(2), .vuc-void li:nth-child(2) .card {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -1s);
}
.vuc-void li:nth-child(3), .vuc-void li:nth-child(3) .card {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -2s);
}
.vuc-void li:nth-child(4),.vuc-void li:nth-child(4) .card {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -3s);
}
.vuc-void li:nth-child(5), .vuc-void li:nth-child(5) .card {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -4s);
}
.vuc-void li:nth-child(6),.vuc-void li:nth-child(6) .card {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -5s);
}
.vuc-void li:nth-child(7),.vuc-void li:nth-child(7) .card {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -6s);
}
.vuc-void li:nth-child(8),.vuc-void li:nth-child(8) .card {
	animation-delay: calc((var(--rotate-speed)/var(--count)) * -7s);
}

@keyframes rotateCW {
	from {
		transform: translate3d(0px, -50%, -1px) rotate(-45deg);
	}
	to {
		transform: translate3d(0px, -50%, 0px) rotate(-315deg);
	}
}
@keyframes rotateCCW {
	from {
		transform: rotate(90deg);
	}
	to {
		transform: rotate(270deg);
	}
}
@keyframes pulseGlow {
	from {
		background-size: 60%;
	}
	to {
		background-size: 100%;
	}
}

.vuc-center-circle {
	position: absolute;
	width: 220px;
	aspect-ratio: 1 / 1;
	/* left: 120px; */
	left: 15%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-image: radial-gradient(circle, rgba(24, 97, 255,1), rgba(2, 129, 248, 0.7),rgba(6, 176, 255, 0),rgba(255, 255, 255, 0) );
	border-radius: 50%;
}
.vuc-second-circle {
	display: none;
	position: absolute;
	width: 40%;
	aspect-ratio: 1 / 1;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #F5F4FE;
	opacity: 0.5;
	box-shadow: 0px 18px 36px -18px rgba(12, 5, 46, 0.3), 0px 30px 60px -12px rgba(12, 5, 46, 0.25);
	border-radius: 50%;
}
.vuc-last-circle {
	display: none;
	position: absolute;
	width: 66%;
	aspect-ratio: 1 / 1;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #F5F4FE;
	opacity: 0.25;
	box-shadow: 0px 18px 36px -18px rgba(12, 5, 46, 0.3), 0px 30px 60px -12px rgba(12, 5, 46, 0.25);
	border-radius: 50%;
}
.vuc-crop {
	-webkit-mask-image: linear-gradient(90deg, rgba(0, 0,0,0), rgba(0,0,0, 1) 10%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1));
}
.vuc-mask {
	background-image: url("../img/onepiece_casino.PNG");
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	/* animation: pulseGlow 5s linear infinite alternate;
	background-position: 100% 50%;
	background-repeat: no-repeat;
	background-image: radial-gradient(100% 50% at 100% 50%, rgba(60, 26, 229, 0.25) 0%, rgba(60, 26, 229, 0.247904) 11.79%, rgba(59, 26, 229, 0.241896) 21.38%, rgba(58, 26, 229, 0.2324) 29.12%, rgba(57, 26, 229, 0.219837) 35.34%, rgba(55, 26, 229, 0.20463) 40.37%, rgba(53, 26, 229, 0.1872) 44.56%, rgba(51, 26, 229, 0.16797) 48.24%, rgba(48, 26, 229, 0.147363) 51.76%, rgba(46, 26, 229, 0.1258) 55.44%, rgba(44, 26, 229, 0.103704) 59.63%, rgba(41, 26, 229, 0.0814963) 64.66%, rgba(39, 26, 229, 0.0596) 70.88%, rgba(36, 26, 229, 0.038437) 78.62%, rgba(34, 26, 229, 0.0184296) 88.21%, rgba(32, 26, 229, 0) 100%); */
}
.vuc-mask:after {
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	right: 0;
	display: block;
	background-image: linear-gradient(180deg, rgba(60, 26, 229, 0) 0%, #3C1AE5 50%, rgba(60, 26, 229, 0) 100%);
}
