body{
    margin:0;
    background:#0b0f19;
    color:white;
    font-family:Arial;
}

.hero{
    padding:50px;
    text-align:center;
}

.hero h1{
    font-size:60px;
    margin-bottom:30px;
}

input{
    width:700px;
    max-width:90%;
    padding:20px;
    border:none;
    border-radius:20px;
    background:#111827;
    color:white;
    font-size:20px;
}

#results{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
    gap:25px;
    padding:30px;
}

.card{
    background:#111827;
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
    transition:0.3s;
}

.card:hover{
    transform:scale(1.03);
}

.card img{
    width:100%;
    height:360px;
    object-fit:cover;
}

.card-content{
    padding:15px;
}

.modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.8);
    display:flex;
    align-items:center;
    justify-content:center;
}

.hidden{
    display:none;
}

.modal-content{
    width:90%;
    max-width:1000px;
    max-height:90vh;
    overflow:auto;
    background:#111827;
    border-radius:20px;
    padding:30px;
}

.link{
    background:#1f2937;
    padding:15px;
    border-radius:15px;
    margin-top:10px;
}

.link a{
    color:#8b5cf6;
    text-decoration:none;
}

#close{
    float:right;
    font-size:30px;
    cursor:pointer;
}