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

body{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);
    color:white;
}

/* Container */
.container{
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* Search */
.search-wrapper{
    position:relative;
    display:flex;
    gap:10px;
    margin-bottom:15px;
}

.search-wrapper input{
    padding:12px;
    border-radius:15px;
    border:none;
    width:240px;
    background:rgba(255,255,255,0.15);
    color:white;
    backdrop-filter:blur(10px);
}

.search-wrapper input::placeholder{
    color:#ddd;
}

.search-wrapper button{
    padding:12px;
    border:none;
    border-radius:15px;
    background:rgba(255,255,255,0.15);
    color:white;
    cursor:pointer;
    transition:0.3s;
}

.search-wrapper button:hover{
    background:white;
    color:black;
}

/* Suggestions */
#suggestions{
    position:absolute;
    top:55px;
    width:100%;
    background:rgba(0,0,0,0.9);
    border-radius:12px;
    overflow:hidden;
    z-index:999;
}

#suggestions div{
    padding:10px;
    cursor:pointer;
}

#suggestions div:hover{
    background:rgba(255,255,255,0.2);
}

/* Premium Error */
.error{
    min-height:20px;
    margin-bottom:10px;
    color:#ff6b6b;
    font-size:14px;
    transition:0.3s;
}

/* Glass Card */
.card{
    backdrop-filter: blur(25px);
    background: rgba(255,255,255,0.08);
    padding:35px;
    border-radius:25px;
    width:320px;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,0.6);
    transition:0.4s;
}

.card:hover{
    transform:translateY(-5px) scale(1.02);
}

#temp{
    font-size:55px;
    margin:10px 0;
    text-shadow:0 0 20px rgba(255,255,255,0.4);
}

footer{
    margin-top:20px;
    opacity:0.8;
}