*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;

    background:
    radial-gradient(circle at top left,#3b82f6,transparent 25%),
    radial-gradient(circle at bottom right,#8b5cf6,transparent 25%),
    #081120;
}

.container{
    width:100%;
    max-width:850px;
}

.card{
    background:rgba(255,255,255,.07);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.1);
    border-radius:30px;
    padding:30px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.hero h1{
    color:white;
    margin-bottom:10px;
    font-size:2.2rem;
}

.hero p{
    color:#94a3b8;
    margin-bottom:25px;
}

.search-box{
    display:flex;
    gap:12px;
    margin-bottom:15px;
}

.input-wrapper{
    flex:1;
    display:flex;
    align-items:center;
    gap:12px;

    height:60px;
    padding:0 18px;

    border-radius:18px;

    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
}

.input-wrapper input{
    flex:1;
    border:none;
    outline:none;
    background:none;
    color:white;
    font-size:16px;
}

.input-wrapper input::placeholder{
    color:#94a3b8;
}

.search-box button{
    border:none;
    padding:0 30px;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    #3b82f6,
    #8b5cf6
    );

    color:white;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
}

.search-box button:hover{
    transform:translateY(-2px);
}

.quick-servers{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.quick-servers button{
    border:none;
    padding:10px 15px;
    border-radius:12px;

    background:rgba(255,255,255,.08);
    color:white;
    cursor:pointer;
}

#loading{
    color:#a78bfa;
    font-weight:600;
    margin-bottom:20px;
}

#serverIcon{
    width:90px;
    height:90px;
    border-radius:18px;
    margin-bottom:15px;
}

.status{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
}

#statusDot{
    width:14px;
    height:14px;
    border-radius:50%;
}

#statusText{
    color:white;
    font-weight:600;
}

.info{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:15px;
}

.item{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.05);
    padding:15px;
    border-radius:15px;
}

.item h3{
    color:#a78bfa;
    margin-bottom:8px;
}

.item p{
    color:white;
    word-break:break-word;
}

.copy-btn{
    border:none;
    padding:10px 15px;
    border-radius:12px;
    cursor:pointer;

    background:
    linear-gradient(
    135deg,
    #3b82f6,
    #8b5cf6
    );

    color:white;
}

.credit{
    text-align:center;
    margin-top:15px;
    color:#94a3b8;
}

.hidden{
    display:none;
}

@media(max-width:700px){

    .search-box{
        flex-direction:column;
    }

    .search-box button{
        height:55px;
    }

    .hero h1{
        font-size:1.8rem;
    }

}
