/* Profil Fotoğrafı Ayrı Stil Dosyası */

.profile-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.profile-placeholder i {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.7);
}

.profile-placeholder img.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Mobil uyum boyutları */
@media (max-width: 768px) {
    .profile-placeholder { width: 200px; height: 200px; }
    .profile-placeholder i { font-size: 60px; }
}

@media (max-width: 480px) {
    .profile-placeholder { width: 150px; height: 150px; }
    .profile-placeholder i { font-size: 40px; }
}
