body{
margin:0;
font-family:Arial, sans-serif;
background:#f4f4f4;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
height:100vh;
}

.slider-container{
width:320px;
height:320px;
}

.slide{display:none}
.slide.active{display:block}

.image-wrapper{
position:relative;
width:100%;
height:100%;
border-radius:50%;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.image-wrapper img{
width:100%;
height:600px;
object-fit:cover;
}

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.55);
color:#fff;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}

.overlay a{
margin-top:10px;
padding:8px 14px;
background:#fff;
color:#000;
text-decoration:none;
border-radius:20px;
font-weight:bold;
}

.controls{margin-top:320px}
button{
padding:10px 16px;
margin:0 10px;
border:none;
border-radius:6px;
cursor:pointer;
background:#222;
color:#fff;
}
