* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", Roboto, sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            background-color: #faf8f5; /* Kağıt / Paper Arka Plan */
            color: #1a1a1a;
            display: flex;
            justify-content: center;
            padding: 40px 20px;
            min-height: 100vh;
        }

        a {
            text-decoration: underline;
            text-underline-offset: 3px;
            text-decoration-color: #888888;
            color: #111111;
            transition: all 0.2s ease;
        }

        a:hover {
            color: #000000;
            text-decoration-color: #000000;
        }

        .container {
            width: 100%;
            max-width: 620px; /* Görseldeki gibi dar ve odaklı yapı */
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        /* Header & Profil Alanı */
        .profile-card {
            background: transparent;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .profile-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
        }

        .profile-info {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .profile-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #111111;
            letter-spacing: -0.01em;
        }

        .profile-title {
            font-size: 0.9rem;
            color: #666666;
        }

        /* Navigasyon / Linkler */
        .profile-links {
            display: flex;
            gap: 16px;
            margin-top: -8px;
        }

        .profile-links a {
            font-size: 0.95rem;
            font-weight: 600;
            color: #111111;
            text-decoration: none;
        }

        .profile-links a:hover {
            text-decoration: underline;
        }

        /* Kesikli Ayırıcı Çizgi */
        .divider {
            border-top: 1px dashed #dcd8d0;
            margin: 4px 0;
        }


/* Bölüm Başlıkları */
.section-title,
.sections-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
}

/* İçerik Kartları (Minimalist Liste Stili) */
.project-card, 
.note-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 0 20px 0;
    box-shadow: none;
    transition: none;
}

.project-card:hover,
.note-card:hover {
    transform: none;
    box-shadow: none;
}

.note-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

/* 'note' veya 'blog' gibi etiketler */
.badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    background: #eae7e1;
    color: #555555;
    padding: 2px 8px;
    border-radius: 4px;
}

.note-date {
    font-size: 0.85rem;
    color: #666666;
}

.project-title,
.note-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.4;
}

.project-desc,
.note-content {
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.6;
}

/* Skills Tags */
.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    font-size: 0.8rem;
    font-weight: 500;
    background: #eae7e1;
    color: #333333;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
}

/* Mobil Uyum */
@media (max-width: 600px) {
    body {
        padding: 24px 16px;
    }
}
