/* --- Arka Plan Ayarları (Beyaz & Belirgin Bordo Geçişi) --- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #4a0e0e;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    
    /* Renk geçişleri (Beyaz ve Koyu Bordo arasında belirgin dalgalanma) */
    background: linear-gradient(-45deg, #ffffff, #800020, #ffffff, #4a0e0e);
    background-size: 400% 400%;
    animation: gradientAnimation 10s 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;
    background: rgba(255, 255, 255, 0.4); /* Arkadaki rengi yumuşatmak için */
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.profile-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #800020;
    box-shadow: 0 10px 25px rgba(128, 0, 32, 0.2);
    margin-bottom: 15px;
}

h1 {
    font-size: 1.6rem;
    color: #4a0e0e;
    margin-bottom: 5px;
}

header p {
    font-size: 0.9rem;
    color: #800020;
    font-weight: 600;
    margin-bottom: 25px;
}

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

.link-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 15px;
    text-decoration: none;
    color: #4a0e0e;
    font-weight: 600;
    border: 1.5px solid #800020;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 12px;
    transition: all 0.3s ease;
}

.link-card:hover {
    background: #800020;
    color: #ffffff;
    transform: translateY(-3px);
}

.link-card:hover i {
    color: #ffffff !important;
}

/* İkon Renkleri */
.instagram i { color: #E1306C; }
.facebook i { color: #1877F2; }
.linkedin i { color: #0077B5; }
.twitter i { color: #000000; } /* X logosu siyah */
.whatsapp i { color: #25D366; }
.mail i { color: #800020; }
.website i { color: #800020; }
.highlight i { color: #800020; }
.vcard i { color: #800020; }
.star-link i { color: #d4af37; }

footer {
    margin-top: 30px;
    font-size: 0.75rem;
    color: #4a0e0e;
    opacity: 0.7;
}