/* Arka Plan ve Genel Ayarlar */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container { width: 90%; max-width: 400px; padding: 30px 20px; text-align: center; }

/* Profil Resmi */
.profile-img {
    width: 110px;
    height: 110px;
    object-fit: cover; /* Fotoğrafı sünmeden çerçeveye yayar */
    border-radius: 50%; /* Tam yuvarlak yapar */
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    margin-bottom: 15px;
}

@keyframes popIn { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* Butonlar */
.links { display: flex; flex-direction: column; gap: 12px; }

.link-card {
    background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px);
    padding: 16px; border-radius: 15px; text-decoration: none; color: white;
    font-weight: 600; border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex; align-items: center; justify-content: center; gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* İkon Renkleri ve Hoverlar */
.link-card i { font-size: 1.3rem; transition: 0.3s; }

.instagram i { color: #E1306C; }
.youtube i { color: #FF0000; }
.facebook i { color: #1877F2; }
.linkedin i { color: #0077B5; }
.whatsapp i { color: #25D366; }
.website i { color: #00d2ff; }
.vcard i { color: #f39c12; }
.mail i { color: #f1f1f1; }

.link-card:hover { transform: translateY(-3px) scale(1.02); background: rgba(255, 255, 255, 0.25); border-color: white; }
.link-card:hover i { color: white !important; transform: scale(1.2); }

/* Özel Buton (Highlight) */
.highlight { background: #ffcc00; color: #333; border: none; }
.highlight i { color: #333; }
.highlight:hover { box-shadow: 0 0 20px rgba(255, 204, 0, 0.6); }

footer { margin-top: 30px; font-size: 0.8rem; opacity: 0.7; }