/* Temel Sıfırlama ve Font */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5;
    /* Hafif bir arka plan rengi */
    overflow: hidden;
    /* Arkaplan şekillerinin dışarı taşmasını engeller */
}

/* Genel Arkaplan Alanı */
.background-canvas {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Görseldeki renkli geçişli arkaplan (örnek bir gradyan) */
    background: linear-gradient(135deg, #a8c0ff, #3f2b96, #f2709c);
}

/* Arkaplan Şekilleri (Görseli Taklit Etmek İçin Basit Şekiller) */
.shape {
    position: absolute;
    opacity: 0.6;
}

.circle {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.top-left {
    width: 150px;
    height: 150px;
    top: 50px;
    left: 100px;
    background: #ffcc66;
}

.bottom-right {
    width: 100px;
    height: 100px;
    bottom: 50px;
    right: 150px;
    background: #5a74d2;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #e74c3c;
    bottom: 150px;
    left: 45%;
    opacity: 0.7;
    transform: rotate(180deg);
}

/* Profil Kartı Ana Stili */
.profile-card {
    background: rgba(255, 255, 255, 0.8);
    /* Yarı şeffaf beyaz arka plan */
    border-radius: 20px;
    padding: 30px;
    width: 400px;
    /* Kart genişliği */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    /* Buzlu cam (Frosted Glass) efekti */
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Hafif beyaz kenarlık */
    z-index: 10;
    /* Arkaplan şekillerinin üzerinde kalmasını sağlar */
    color: #333;
    position: relative;
    overflow: hidden;
}

/* Kart Başlığı (container) */
.card-header {
    margin-bottom: 20px;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

/* Profil Bilgileri */
.name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1e1e1e;
}

.role {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    margin-bottom: 20px;
}

.description {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Sosyal Bağlantılar */
.social-links {
    display: flex;
    flex-wrap: wrap;
    /* Bağlantıların alt satıra geçmesini sağlar */
    gap: 15px;
    /* Bağlantılar arası boşluk */
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    /* Ayırıcı çizgi */
    margin-bottom: 20px;
}

.social-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.social-link i {
    margin-right: 5px;
    color: #0077b5;
    /* İkon rengi (Linkedin mavisi gibi) */
}

.social-link:hover {
    color: #0077b5;
}

.misc-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    /* Yeni satıra geçmesini sağlar */
    margin-top: 10px;
    font-size: 13px;
    color: #777;
}

.misc-text {
    /* Özel metinler için stil */
    font-size: 13px;
    color: #777;
    font-weight: 400;
}

/* En alttaki metin */
.bottom-text {
    font-size: 13px;
    color: #999;
    text-align: center;
}