body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin: 0;
    padding: 2rem;
    background: #0f172a;
    color: #e5e7eb;
}

h1 {
    margin-bottom: 0.5rem;
}

p.subtitle {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.project {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 1.25rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.project:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.project h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.project p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.project a {
    display: inline-block;
    text-decoration: none;
    color: #38bdf8;
    font-weight: 600;
}

footer {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
}