.server-info-section{
position:relative;
padding:120px 80px 80px;
background:#050814;
}

.server-info-content{
max-width:1200px;
margin:auto;
display:flex;
align-items:flex-start;
justify-content:space-between;
gap:80px;
}

.server-text{
max-width:550px;
padding-top:10px;
}

.server-subtitle{
font-family:"Orbitron",sans-serif;
font-size:15px;
font-weight:700;
letter-spacing:4px;
color:#64dcff;
}

.server-text h2{
margin-top:20px;
font-family:"Orbitron",sans-serif;
font-size:60px;
font-weight:800;
letter-spacing:-3px;
background:linear-gradient(
90deg,
#52ffe0,
#64dcff,
#9b7bff
);
-webkit-background-clip:text;
color:transparent;
}

.server-text p{
margin-top:25px;
font-size:20px;
line-height:1.8;
font-weight:300;
color:#e4ebff;
}

.server-gallery-container{
display:flex;
flex-direction:column;
align-items:center;
}

.server-gallery{
position:relative;
width:600px;
height:600px;
overflow:hidden;
border-radius:35px;
border:1px solid rgba(255,255,255,.16);
background:rgba(255,255,255,.05);
box-shadow:
0 30px 70px rgba(0,0,0,.5),
inset 0 5px 20px rgba(255,255,255,.12);
}

.gallery-overlay{
position:absolute;
left:0;
bottom:0;
width:100%;
padding:90px 35px 35px;
z-index:3;
background:linear-gradient(
transparent,
rgba(5,8,20,.95)
);
}

.gallery-overlay h3{
font-family:"Orbitron",sans-serif;
font-size:28px;
font-weight:900;
letter-spacing:-1px;
color:white;
transition:.3s ease;
}

.gallery-overlay p{
margin-top:10px;
max-width:380px;
font-size:15px;
line-height:1.6;
font-weight:500;
color:#dbe6ff;
transition:.3s ease;
}

.server-image{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transform:scale(1.08);
transition:1s ease;
}

.server-image.active{
opacity:1;
transform:scale(1);
}

.gallery-dots{
display:flex;
align-items:center;
justify-content:center;
gap:14px;
margin-top:25px;
}

.gallery-dot{
width:12px;
height:12px;
padding:0;
border:none;
border-radius:50%;
cursor:pointer;
background:rgba(255,255,255,.25);
transition:.4s ease;
}

.gallery-dot:hover{
background:#64dcff;
transform:scale(1.15);
}

.gallery-dot.active{
width:34px;
border-radius:20px;
background:linear-gradient(
90deg,
#52ffe0,
#64dcff
);
box-shadow:
0 0 15px rgba(100,220,255,.8),
0 0 30px rgba(82,255,224,.5);
}

.server-divider{
width:100vw;
height:1px;
margin:110px 0 0;
position:relative;
left:50%;
transform:translateX(-50%);
background:linear-gradient(
90deg,
#64dcff,
#9b7bff
);
}

@media(max-width:1000px){

.server-info-section{
padding:90px 40px 60px;
}

.server-info-content{
flex-direction:column;
gap:50px;
align-items:center;
}

.server-text{
max-width:700px;
text-align:center;
padding-top:0;
}

.server-text h2{
font-size:50px;
}

.server-text p{
font-size:18px;
}

.server-gallery-container{
width:100%;
}

.server-gallery{
width:400px;
height:400px;
}

}

@media(max-width:600px){

.gallery-overlay{
padding:70px 20px 25px;
}

.gallery-overlay h3{
font-size:22px;
}

.gallery-overlay p{
font-size:13px;
}

.server-info-section{
padding:70px 20px 50px;
}

.server-text h2{
font-size:38px;
}

.server-subtitle{
font-size:12px;
letter-spacing:3px;
}

.server-text p{
font-size:16px;
line-height:1.6;
}

.server-gallery{
width:100%;
height:auto;
aspect-ratio:1/1;
border-radius:25px;
}

.gallery-dots{
gap:10px;
margin-top:20px;
}

.gallery-dot{
width:10px;
height:10px;
}

.gallery-dot.active{
width:28px;
}

}

.team-button-container{
margin-top:50px;
display:block;
position:relative;
z-index:10;
}

.server-team-button{

display:flex;
align-items:center;
justify-content:center;

min-width:220px;
height:60px;
padding:0 35px;

font-family:"Orbitron",sans-serif;
font-size:15px;
font-weight:900;
letter-spacing:2px;
text-transform:uppercase;

text-decoration:none;
color:white;

background:linear-gradient(
145deg,
#7ee8ff,
#9b7bff
);

border:1px solid rgba(255,255,255,.35);
border-radius:16px;

box-shadow:
inset 0 3px 8px rgba(255,255,255,.35),
inset 0 -6px 12px rgba(60,90,180,.35),
0 8px 0 #4c5fc4,
0 14px 25px rgba(0,0,0,.35);

transition:.25s ease;

}


.server-team-button:hover{

transform:translateY(-4px);

box-shadow:

inset 0 3px 8px rgba(255,255,255,.45),
inset 0 -6px 12px rgba(60,90,180,.35),
0 12px 0 #4c5fc4,
0 20px 30px rgba(0,0,0,.4);

}


.server-team-button:active{

transform:translateY(5px);

box-shadow:

inset 0 3px 8px rgba(255,255,255,.3),
inset 0 -4px 8px rgba(60,90,180,.3),
0 3px 0 #4c5fc4,
0 8px 15px rgba(0,0,0,.3);

}