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

body{
    background:linear-gradient(135deg,#0f172a,#1e293b,#1d4ed8);
    min-height:100vh;
    color:#fff;
    padding:40px 20px;
}

.container{
    max-width:1200px;
    margin:auto;
}

.header{
    text-align:center;
    margin-bottom:35px;
}

.header h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.header p{
    color:#cbd5e1;
    font-size:17px;
}

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

.search-box input{
    flex:1;
    height:58px;
    padding:0 20px;
    border:none;
    outline:none;
    border-radius:15px;
    font-size:17px;
    background:#fff;
    color:#111827;
}

.search-box button{
    width:180px;
    border:none;
    border-radius:15px;
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    color:white;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.search-box button:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 30px rgba(37,99,235,.35);
}

.results{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:20px;
}

.card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.12);
    border-radius:18px;
    padding:22px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.30);
}

.card h2{
    font-size:20px;
    margin-bottom:15px;
    color:#60a5fa;
}

.card ul{
    list-style:none;
}

.card li{
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    word-break:break-word;
}

.card li:last-child{
    border-bottom:none;
}

.card p{
    margin:8px 0;
    line-height:1.6;
    color:#e2e8f0;
}

.empty{
    color:#f87171;
    font-weight:600;
}

@media(max-width:768px){

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

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

    .header h1{
        font-size:32px;
    }

}