*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:-apple-system,BlinkMacSystemFont,Segoe UI;
background:black;
color:white;
overflow-x:hidden;
}


.background{
position:fixed;
width:100%;
height:100%;
background:url("Backgrnd.png") center/cover no-repeat;
filter:blur(12px) brightness(0.4);
z-index:-1;
}


.navbar{
position:fixed;
top:0;
width:100%;
height:70px;
display:flex;
justify-content:space-between;
align-items:center;
padding:0 40px;
background:rgba(0,0,0,0.4);
backdrop-filter:blur(10px);
z-index:30;
}

.logo{
display:flex;
align-items:center;
height:100%;
}

.logo img{
display:block;
height: 70px;
width:auto;
object-fit:contain;
}


.menu-btn{
display:flex;
flex-direction:column;
gap:6px;
cursor:pointer;
}

.menu-btn span{
height:3px;
width:30px;
background:white;
}


.about-panel{
position:fixed;
top:0;
right:-400px;
width:350px;
height:100%;

background:black;
padding:40px;
padding-top:100px; /* ✅ navbar boşluğu */

transition:0.5s;
z-index:25;

overflow-y:auto;
}

.about-panel.active{
right:0;
}


.socials{
position:absolute;
bottom:40px;
left:40px;
display:flex;
gap:25px;
}

.socials a{
font-size:24px;
color:white;
transition:0.3s;
}

.socials a:hover{
transform:scale(1.3);
color:#ff004c;
}


header{
text-align:center;
padding:120px 20px 40px;
}


.showcase{
display:flex;
gap:60px;
padding:40px 80px;
align-items:center;
}


.carousel{
width:70%;
position:relative;
}

.carousel-track{
position:relative;
height:500px;
}


.video-item{
position:absolute;
top:50%;
left:50%;
width:300px;
height:180px;
transform:translate(-50%,-50%) scale(0.6);
opacity:0;
transition:0.6s;
filter:blur(8px);
border-radius:15px;
overflow:hidden;
background:rgba(0,0,0,0.45);
}

.video-item video{
width:100%;
height:100%;
object-fit:contain;
border-radius:15px;
background:rgba(0,0,0,0.45);
}


.video-item.active{
width:800px;
height:450px;
transform:translate(-50%,-50%) scale(1);
opacity:1;
filter:blur(0);
z-index:5;
}


.video-item.prev{
transform:translate(-180%,-50%) scale(0.5);
opacity:0.2;
}

.video-item.next{
transform:translate(80%,-50%) scale(0.5);
opacity:0.2;
}


.video-item.active:hover{
transform:translate(-50%,-50%) scale(1);
filter:none;
opacity:1;
}


.video-item.prev:hover{
transform:translate(-180%,-50%) scale(0.55);
opacity:0.4;
filter:blur(4px);
}

.video-item.next:hover{
transform:translate(80%,-50%) scale(0.55);
opacity:0.4;
filter:blur(4px);
}

.video-item .video-desc-content{
display:none;
}

.video-info{
--info-padding:25px;
width:300px;
background:rgba(255,255,255,0.05);
padding:var(--info-padding);
border-radius:15px;
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.1);
display:flex;
flex-direction:column;
}

.video-info h2{
margin-bottom:10px;
}

.video-info #videoDesc{
opacity:0.7;
line-height:1.6;
max-height:280px;
overflow-y:auto;
margin-right:calc(-1 * var(--info-padding));
padding-right:calc(var(--info-padding) + 14px);
scrollbar-width:thin;
scrollbar-color:rgba(255,255,255,0.32) transparent;
overscroll-behavior:contain;
}

.video-info #videoDesc p{
opacity:0.7;
line-height:1.6;
margin-bottom:12px;
}

.video-info #videoDesc p:last-child{
margin-bottom:0;
}

.video-info #videoDesc::-webkit-scrollbar{
width:8px;
}

.video-info #videoDesc::-webkit-scrollbar-track{
background:transparent;
}

.video-info #videoDesc::-webkit-scrollbar-thumb{
background:rgba(255,255,255,0.28);
border-radius:999px;
}

.video-info #videoDesc::-webkit-scrollbar-thumb:hover{
background:rgba(255,255,255,0.42);
}

.video-info #videoDesc::-webkit-scrollbar-button{
display:none;
height:0;
}


video::-webkit-media-controls-panel {
background: rgba(0,0,0,0.4);
}


.arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:30px;
background:none;
border:none;
color:white;
cursor:pointer;
z-index:10;
}

.left{left:20px;}
.right{right:20px;}


@media(max-width:768px){

.showcase{
flex-direction:column;
padding:20px;
}

.carousel{
width:100%;
}

.video-item.active{
width:90vw;
height:50vw;
}

.video-info{
width:100%;
text-align:center;
}

.video-info #videoDesc{
max-height:220px;
padding-right:calc(var(--info-padding) + 12px);
}

}



.socials a{
font-size:24px;
color:white;
transition:0.3s;
}

/* INSTAGRAM */
.socials a:nth-child(1):hover{
color:#e130ac;
transform:scale(1.3);
}

/* MAIL */
.socials a:nth-child(2):hover{
color:#4CAF50;
transform:scale(1.3);
}

/* YOUTUBE */
.socials a:nth-child(3):hover{
color:#FF0000;
transform:scale(1.3);
}
