* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background: #0f1115;
    color: #e5e7eb;
    line-height: 1.7;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: #161a22;
    border-radius: 14px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 36px;
    letter-spacing: 1px;
}

.title {
    color: #38bdf8;
    margin-top: 8px;
    font-size: 18px;
}

.meta {
    margin-top: 12px;
    font-size: 14px;
    opacity: 0.8;
}

.meta span {
    margin: 0 8px;
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    font-size: 22px;
    margin-bottom: 16px;
    border-left: 4px solid #38bdf8;
    padding-left: 12px;
}

.skills,
.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    list-style: none;
}

.skills li,
.projects li {
    background: #0f1115;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
}

.item h3 {
    font-size: 18px;
}

.date {
    font-size: 13px;
    opacity: 0.7;
}

a {
    color: #38bdf8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    font-size: 13px;
    opacity: 0.5;
    margin-top: 40px;
}
