*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family: Gotham, system-ui, sans-serif;;
}

body{
    background: linear-gradient(to bottom,#eef3f9,#dfe8f4);
    font-family: system-ui, -apple-system, sans-serif;
}

/* Navbar */
.navbar{
    background:#ffffffcc;
    backdrop-filter: blur(6px);
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* Heading */
.main-title{
    text-align:center;
    font-weight:700;
    letter-spacing:1px;
    color:#1e4fa3;
    margin:40px 0;
}

/* Market Cards */
.market-card{
    background:white;
    border-radius:18px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.25s;
}
.market-card:hover{
    transform:translateY(-5px);
}

/* Content Cards */
.content-card{
    background:white;
    border-radius:18px;
    padding:22px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.25s;
}
.content-card:hover{
    transform:translateY(-6px);
}

.icon-box{
    width:46px;
    height:46px;
    border-radius:12px;
    background:#e9f1ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

/* Footer */
.footer{
    background:#0f1c2e;
    color:#cfd6e4;
    margin-top:60px;
    padding:50px 0;
}
.footer a{
    color:#cfd6e4;
    text-decoration:none;
}
.footer a:hover{
    color:white;
}

.btn-soft{
    background:#2b63d9;
    color:white;
    border-radius:10px;
    padding:6px 16px;
    font-size:14px;
}
