/* --- 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;
    
    /* Arka planı daha "Premium" göstermek için renkleri korudum */
    background: linear-gradient(-45deg, #050505, #1c252e, #0d1117, #2c3e50);
    background-size: 400% 400%;
    animation: gradientAnimation 12s ease infinite; 
}

/* Animasyon aynı */
@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;
}

/* --- PROFİL RESMİ: Altın Çerçeve --- */
.profile-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    
    /* İŞTE DEĞİŞİKLİK BURADA: Mat Altın Sarısı */
    border: 3px solid #C5A059; 
    
    /* Altın rengini öne çıkarmak için gölgeyi yumuşattım */
    box-shadow: 0 5px 25px rgba(197, 160, 89, 0.3); 
    margin-bottom: 15px;
}

/* --- Butonların Genel Yapısı --- */
.links { 
    display: flex; 
    flex-direction: column;
    gap: 14px;
}

.link-card {
    /* Buton içini biraz daha koyu cam (glass) efekti yaptım */
    background: rgba(10, 10, 10, 0.4); 
    backdrop-filter: blur(12px); 
    padding: 16px;
    border-radius: 15px;
    text-decoration: none;
    color: white; /* Yazılar beyaz kalabilir veya #FDF0D5 (çok açık krem) yapılabilir */
    font-weight: 600;
    
    /* İŞTE BUTON ÇERÇEVESİ: Şeffaf Altın */
    border: 1px solid rgba(197, 160, 89, 0.3);
    
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 12px;
    transition: all 0.3s ease-in-out;
}

/* --- BUTON HOVER: Üzerine Gelince Altın Parlaması --- */
.link-card:hover {
    background: rgba(197, 160, 89, 0.1); /* Hafif altın rengi dolgu */
    transform: translateY(-3px);
    
    /* Çerçeve parlaması */
    border: 1px solid rgba(197, 160, 89, 0.8);
    
    /* Altın rengi dış ışıltı */
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

/* İkon Renkleri (Orijinal kalabilirler, altınla güzel kontrast yaparlar) */
.instagram i { color: #E1306C; }
.youtube i { color: #FF0000; }
.facebook i { color: #1877F2; }
.linkedin i { color: #0077B5; }
.whatsapp i { color: #25D366; }/* --- 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;
    
    /* Arka planı daha "Premium" göstermek için renkleri korudum */
    background: linear-gradient(-45deg, #050505, #1c252e, #0d1117, #2c3e50);
    background-size: 400% 400%;
    animation: gradientAnimation 12s ease infinite; 
}

/* Animasyon aynı */
@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;
}

/* --- PROFİL RESMİ: Altın Çerçeve --- */
.profile-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    
    /* İŞTE DEĞİŞİKLİK BURADA: Mat Altın Sarısı */
    border: 3px solid #C5A059; 
    
    /* Altın rengini öne çıkarmak için gölgeyi yumuşattım */
    box-shadow: 0 5px 25px rgba(197, 160, 89, 0.3); 
    margin-bottom: 15px;
}

/* --- Butonların Genel Yapısı --- */
.links { 
    display: flex; 
    flex-direction: column;
    gap: 14px;
}

.link-card {
    /* Buton içini biraz daha koyu cam (glass) efekti yaptım */
    background: rgba(10, 10, 10, 0.4); 
    backdrop-filter: blur(12px); 
    padding: 16px;
    border-radius: 15px;
    text-decoration: none;
    color: white; /* Yazılar beyaz kalabilir veya #FDF0D5 (çok açık krem) yapılabilir */
    font-weight: 600;
    
    /* İŞTE BUTON ÇERÇEVESİ: Şeffaf Altın */
    border: 1px solid rgba(197, 160, 89, 0.3);
    
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 12px;
    transition: all 0.3s ease-in-out;
}

/* --- BUTON HOVER: Üzerine Gelince Altın Parlaması --- */
.link-card:hover {
    background: rgba(197, 160, 89, 0.1); /* Hafif altın rengi dolgu */
    transform: translateY(-3px);
    
    /* Çerçeve parlaması */
    border: 1px solid rgba(197, 160, 89, 0.8);
    
    /* Altın rengi dış ışıltı */
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

/* İkon Renkleri (Orijinal kalabilirler, altınla güzel kontrast yaparlar) */
.instagram i { color: #E1306C; }
.youtube i { color: #FF0000; }
.facebook i { color: #1877F2; }
.linkedin i { color: #0077B5; }
.whatsapp i { color: #25D366; }