@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(135deg,#0f172a,#1e293b,#0f172a);
    color:white;
    min-height:100vh;
}

.container{
    width:90%;
    max-width:1100px;
    margin:auto;
    padding:50px 0;
}

.hero{
    text-align:center;
    padding:80px 20px;
}

.hero h1{
    font-size:4rem;
    color:#38bdf8;
    margin-bottom:15px;
}

.subtitle{
    color:#cbd5e1;
    font-size:1.2rem;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    padding:14px 30px;
    background:#38bdf8;
    color:#0f172a;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:white;
    transform:translateY(-3px);
}

.secondary{
    margin-top:25px;
}

.card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.1);
    border-radius:18px;
    padding:40px;
    margin:40px 0;
}

.card h2{
    color:#38bdf8;
    margin-bottom:20px;
    font-size:2rem;
}

.card p{
    color:#d1d5db;
    margin-bottom:18px;
    line-height:1.8;
}

.projects{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    margin-top:30px;
}

.project-card{
    text-decoration:none;
    background:#1e293b;
    border:1px solid rgba(255,255,255,.08);
    border-radius:15px;
    padding:30px;
    transition:.3s;
}

.project-card h3{
    color:#38bdf8;
    margin-bottom:15px;
}

.project-card p{
    color:#cbd5e1;
}

.project-card:hover{
    background:#38bdf8;
    transform:translateY(-8px);
}

.project-card:hover h3,
.project-card:hover p{
    color:#0f172a;
}

footer{
    text-align:center;
    padding:40px 0;
    color:#94a3b8;
    font-size:1rem;
}

@media(max-width:768px){

    .hero{
        padding:60px 10px;
    }

    .hero h1{
        font-size:2.6rem;
    }

    .subtitle{
        font-size:1rem;
    }

    .card{
        padding:25px;
    }

}

.styled-list{
    margin-top:20px;
    padding-left:25px;
}

.styled-list li{
    color:#d1d5db;
    margin-bottom:16px;
    line-height:1.8;
}

.styled-list strong{
    color:#ffffff;
}

code{
    background:rgba(255,255,255,.08);
    color:#38bdf8;
    padding:2px 6px;
    border-radius:6px;
    font-family:Consolas, monospace;
}

table{
    width:100%;
    border-collapse:collapse;
    margin:30px 0;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.1);
    border-radius:15px;
    overflow:hidden;
}

th{
    background:#38bdf8;
    color:#0f172a;
    padding:15px;
    text-align:left;
    font-weight:600;
}

td{
    padding:15px;
    color:#d1d5db;
    border-bottom:1px solid rgba(255,255,255,.08);
}

tr:last-child td{
    border-bottom:none;
}

tr:nth-child(even){
    background:rgba(255,255,255,.03);
}

tr:hover{
    background:rgba(56,189,248,.15);
    transition:.3s;
}

caption{
    color:#38bdf8;
    font-size:1.4rem;
    font-weight:600;
    margin-bottom:15px;
}