*{
    margin:0;
    padding: 0;
    box-sizing: border-box;

}
body{
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background: #101018;
    color:white;
}

.topbar{
    height:70px;
    padding:0 7%;
    display:flex;
    align-items: center;
    justify-content: space-between;

    border-bottom:1px solid #333344;
}

.logo{
    color:white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;

}
.logo span{
    color: #ffd886;
}

.time{
    color:#a8a8b8;
    font-size:14px;
}

main{
    max-width: 1100px;
    margin: auto;
    padding: 55px 7%;

}
.hero{
    margin-bottom:40px;

}
.hero h1{
    font-size: 42px;
    margin-bottom: 12px;
}
.hero p{
    max-width:620px;
    color: #a8a8b8;
    line-height: 1.6;
    font-size: 17px;

}
.search-box{
    margin-bottom: 35px;

}
input,textarea{
    width:100%;
    padding: 15px;
    background:#1a1a26;
    color: white;
    border: 1px solid #333344;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    outline:none;

}
input:focus,textarea:focus{
    border-color: #ffd886;

}
textarea{
    min-height: 130px;
    resize: vertical;
}
.section-title{
    font-size: 21px;
    margin-bottom: 20px;

}
.apps{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(220px, 1fr));
    gap: 18px;
}
.app-card{
    display:block;
    position: relative;
    padding: 22px;
    background: #1a1a26;
    color: white;
    border: 1px solid #333344;
    border-radius: 16px;
    text-decoration: none;
    transition: 0.2s;
}
.app-card:hover{
    transform: translateY(-5px);
    border-color: #ffd886;
    background: #242435;
}
.app-icon{
    width:52px;
    height:52px;
    display:flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: #242435;
    border-radius:14px;
    font-size: 25px;
}
.app-icon h3{
    margin-top: 8px;
    font-size: 18px;

}
.app-icon p{
    color: #242435;
    font-size: 14px;

    line-height: 1.5;
}
footer{
    padding: 30px 20px;
    text-align: center;

    color:#777788;
    font-size: 13px;
    border-top: 1px solid #333344;

}
@media(max-width: 700px){
    .topbar{
        height:62px;
        padding: 0 20px;
    }
    .logo{
        font-size: 21px;
    }
    main{
        padding: 35px 20px;
    }
    .hero h1{
        font-size: 32px;
    }
    .hero p{
        font-size: 15px;
    }
    .apps{
        grid-template-columns: repeat(2,1fr);
        gap:12px;
    }
    .app-card{
        padding: 16px;
    }
    .app-icon{
        width:45px;
        height:45px;
        
        font-size: 21px;
        margin-bottom: 12px;
    }
    .app-card h3{
        font-size: 15px;
    }.app-card p{
        font-size: 12px;
    }
}
