.domain-search-container{
max-width:1200px;
margin:0 auto;
padding:20px;
}

.domain-search-form{
display:flex;
gap:15px;
margin:30px 0;
}

.domain-search-form input{
flex:1;
height:58px;
padding:0 20px;
border:none;
border-radius:12px;
background:#0f172a;
color:#fff;
font-size:16px;
}

.domain-search-form button{
height:58px;
padding:0 30px;
border:none;
border-radius:12px;
background:#2563eb;
color:#fff;
font-weight:600;
cursor:pointer;
}

.tld-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
gap:15px;
margin-bottom:35px;
}

.tld-card{
background:#08152f;
border:1px solid rgba(255,255,255,.05);
border-radius:14px;
padding:20px;
text-align:center;
}

.tld-card h3{
margin:0;
color:#3b82f6;
}

.tld-card p{
margin-top:10px;
font-size:20px;
font-weight:700;
color:#fff;
}

.domain-results{
margin-top:25px;
}

.domain-card{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 20px;
border-radius:12px;
margin-bottom:12px;
background:#08152f;
border:1px solid rgba(255,255,255,.05);
}

.domain-name{
font-size:18px;
font-weight:600;
}

.domain-status{
color:#22c55e;
margin-top:5px;
}

.domain-price{
font-size:18px;
font-weight:700;
}

.register-button{
display:inline-block;
padding:10px 18px;
background:#2563eb;
color:#fff;
border-radius:10px;
text-decoration:none;
}

.register-button:hover{
opacity:.9;
}

@media(max-width:768px){


.domain-search-form{
    flex-direction:column;
}

.domain-card{
    flex-direction:column;
    gap:15px;
    text-align:center;
}


}
