/* BASE */
*{
    margin:0; padding:0;
    box-sizing:border-box;
    font-family: 'Inter', sans-serif;
}

body{
    background:#0b0b0d;
    color:#fff;
    overflow-x:hidden;
}

/* NAVBAR */
.navbar{
    position:fixed;
    top:0; left:0;
    width:100%;
    padding:16px 32px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    backdrop-filter:blur(12px);
    background:rgba(20,20,25,0.4);
    border-bottom:1px solid rgba(255,255,255,0.05);
    z-index:1000;
}

.logo{
    font-size:24px;
    font-weight:700;
    letter-spacing:1px;
}

.nav-links a{
    margin-left:24px;
    text-decoration:none;
    color:#ccc;
    transition:0.2s;
}

.nav-links a:hover{
    color:#fff;
}

/* MOBILE */
.mobile-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
}

.mobile-menu{
    display:none;
    position:fixed;
    top:70px;
    right:0;
    width:200px;
    background:#111;
    border-left:1px solid #222;
    padding:20px;
    flex-direction:column;
    gap:12px;
}

.mobile-menu.open{
    display:flex;
}

.mobile-menu a{
    color:#ccc;
    text-decoration:none;
    padding:8px 0;
}

/* HERO */
.hero{
    padding:160px 24px 80px;
    text-align:center;
    background:linear-gradient(135deg,#141418,#0d0d0f 60%);
}

.hero h1{
    font-size:48px;
    font-weight:800;
}

.hero p{
    color:#aaa;
    margin-top:10px;
}

.search{
    margin-top:22px;
    padding:14px 20px;
    width:320px;
    background:#1a1a1d;
    border:1px solid #2a2a2e;
    border-radius:10px;
    color:#fff;
    transition:0.2s;
}

.search:focus{
    border-color:#4e4eff;
    outline:none;
}

/* SECTION */
.section{
    padding:40px 24px;
}

.title{
    font-size:28px;
    margin-bottom:16px;
}

/* GRID */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:22px;
}

/* CARD */
.card{
    background:#151517;
    border:1px solid #1e1e21;
    padding:20px;
    border-radius:14px;
    transition:0.25s;
    cursor:pointer;
}

.card:hover{
    border-color:#3b3bff;
    transform:translateY(-4px);
    box-shadow:0 8px 28px rgba(60,60,255,0.15);
}

.card h3{
    margin-bottom:8px;
}

.card p{
    color:#aaa;
}

/* FOOTER */
.footer{
    padding:40px 24px;
    text-align:center;
    color:#666;
}

/* RESPONSIVE */
@media(max-width:800px){
    .nav-links{display:none;}
    .mobile-btn{display:block;}
}
