.page-container{
width:1100px;
max-width:95%;
margin:40px auto;
background:#020617;
border-radius:8px;
padding:30px;
box-shadow:0 20px 50px rgba(0,0,0,0.6);
}

/* Back link */
.back{
display:inline-block;
margin-bottom:20px;
color:#38bdf8;
text-decoration:none;
font-weight:500;
}

/* Header */
.project-header{
display:flex;
justify-content:space-between;
align-items:flex-start;
flex-wrap:wrap;
gap:20px;
margin-bottom:30px;
}

.project-title{
margin:0;
font-size:32px;
}

.project-subtitle{
color:#94a3b8;
margin-top:5px;
}

.project-links a{
margin-left:15px;
color:#38bdf8;
text-decoration:none;
font-weight:600;
}

/* Sections */
.section{
margin-top:35px;
}

.section h2{
margin-bottom:10px;
}

/* Features */
.feature-list{
padding-left:20px;
line-height:1.6;
}

/* Tech */
.tech-list{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:10px;
}

.tech-list span{
background:#0f172a;
padding:6px 12px;
border-radius:6px;
border:1px solid #1e293b;
font-size:14px;
}

/* Images */
.image-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
margin-top:15px;
}

.image-grid img{
width:100%;
border-radius:8px;
}

/* Text readability */
p{
color:#cbd5f5;
line-height:1.7;
}