.popular-song{
	height: calc(100vh - 80px);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;

}
.popular-song-text a{
	text-decoration: none;
	color: #333;
}
.popular-song-text h2{
	color: white;
	text-transform: uppercase;
	font-size: 28px;
	margin-bottom: 6px;
}
.popular-song-text h3{
	background: linear-gradient(90deg,rgba(174, 134, 37, 1) 0%, rgba(247, 239, 138, 1) 34%, rgba(210, 172, 71, 1) 78%, rgba(237, 201, 103, 1) 100%);
	border-radius: 5px;
	padding:8px 10px;
	display: flex;
	gap:10px;
}



.container {
	width: 80%;
	margin: 20px auto;
	max-width: 1200px;
}

.bio-section,
.achievements {
	padding: 40px 0;
}

.bio-section h2,
.achievements h2 {
	font-size: 2rem;
	margin-bottom: 20px;
}

.bio-section p {
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.achievements ul {
	list-style-type: square;
}


.slider {
	width: 80%;
	max-width: 800px;
	position: relative;
}

.slides {
	display: flex;
	width: 300%;
	transition: transform 0.5s ease;
}

.slide {
	width: 33.3333%;
	flex-shrink: 0;
	overflow: hidden;
}

.slide video {
	width: 100%;
	display: block;
}

.splide iframe{
	height: calc(100vh - 100px);
}

input[type="radio"] {
	display: none;
}

#slide1:checked~.slides {
	transform: translateX(0);
}

#slide2:checked~.slides {
	transform: translateX(-34.3333%);
}

#slide3:checked~.slides {
	transform: translateX(-66.6666%);
}

.controls {
	text-align: center;
	margin-top: 15px;
}

.controls label {
	cursor: pointer;
	width: 15px;
	height: 15px;
	display: inline-block;
	margin: 5px;
	background-color: #ddd;
	border-radius: 50%;
}

#slide1:checked~.controls label[for="slide1"],
#slide2:checked~.controls label[for="slide2"],
#slide3:checked~.controls label[for="slide3"] {
	background-color: white;
}
.splide__arrow{
	background-color: transparent!important;
	svg{
		fill: white!important;
	}
}
.popular-song .card-container{
	perspective: 1000px;
	position: relative;
	width: max-content;
	margin-right: 300px;

}

.popular-song .card {
	width: max-content;
	height: max-content;
	transform: rotateY(-70deg);
	transform-style: preserve-3d;
	position: relative;
	overflow: hidden; 
	animation: rotateCard 2s ease-in-out forwards;
}

.popular-song .card:hover{
	transform: rotateY(0deg)
}

.popular-song .card::before{
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(120deg, rgba(255, 255, 255, 0)0%, rgba(255, 255, 255, 0.300)30%, rgba(255, 255, 255, 0)100%);
filter: blur(40px);
animation: shine 2s ease-in-out forwards;
}
.popular-song:hover .card::before{
left: 100%;
}

.vinyl {
	position: absolute;
	top: 10%;
	left: 20%;
	width: 80%;
	animation: vinylTranslate 2s linear forwards, spin 2s linear infinite;
	animation-delay: 0s, 2s;
	/* visibility: hidden; */
	/* opacity: 0; */
}

.white-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background-color: #11171a;
}

.news{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: start;
	min-height: calc(100vh - 80px);
	margin-bottom: 100px;
}

.title{
	color: #ffffff;
	font-size: 4rem;
	margin: 100px 0;
	text-align: center;
}

.news-content{
	display: flex;
	width: 80%;
	margin: auto;
	flex-wrap: wrap;
    gap: 40px 20px;
	justify-content: center;
}

.news-content .text-content{
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.news-item{
	color: #ffffff;
	width:40%;
	margin: 0 20px;
	display: flex;
	gap: 20px;
	flex-direction: column;
	align-items: center;	
}

.news-item h3{
	color: #ffffff;
	font-size: 2rem;
}

.news-item p{
	font-size: 1.2rem;
}
.news-item .new-image{

	aspect-ratio: 3 / 4;
	border-radius: 20px;
	overflow: hidden;
}

.news-item .new-image img{
	width: 100%;
	height: auto;
	object-fit: cover;
}




@keyframes rotateCard{
	from {
		transform: rotateY(-70deg);
	}
	to {
		transform: rotateY(0deg);
	}
}

@keyframes shine {
	from {
		left: -100%;
	}
	to {
		left: 100%;
	}
}

@keyframes spin {
	from {
		transform: translateX(230px) rotate(0deg) ;
		
	}
	to {
		transform: translateX(230px) rotate(360deg) ;
	}
}

@keyframes vinylTranslate {
	0% {
		transform: translateX(0px) rotate(0deg);
	}

	100% {
		transform: translateX(230px) rotate(360deg);
	}

}

@media screen and (max-width: 1024px) {
	html{
		font-size: 14px;
	}
	.popular-song 
	{
		display: flex;
		flex-direction: column;
	}

	.popular-song .card-container{
		margin-right: 30px;
	}

	.card-content{
		width: 150px;
		height:150px;
	}
	.card-content img{
		width: 100%;
		height: 100%;
	}
	.vinyl {
		position: absolute;
		top: 10%;
		left: 50%;
		animation: spin2 2s linear infinite;
	}

@keyframes spin2 {
	from {
		transform:  rotate(0deg) ;
		
	}
	to {
		transform:  rotate(360deg) ;
	}
}
}

@media (max-width:600px){
	.news-item{
		width: 100%;
	}
}