@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root { /* Renk değişkenleri tanımlayalım */
  --background-dark: #1a1a1a; /* Biraz daha açık koyu */
  --card-background: #242424;
  --border-color: #444;
  --text-primary: #f0f0f0;
  --text-secondary: #bbb;
  --accent-color: #0d6efd; /* Mavi vurgu rengi */
  --accent-hover: #0b5ed7;
  --shadow-color: rgba(0, 0, 0, 0.6);
}

body {
  background-color: var(--background-dark);
  color: var(--text-primary);
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  line-height: 1.6; /* Genel satır yüksekliği */
}

.main{
  width: 100%;
  max-width: 550px; /* Kartı biraz genişletelim */
  padding: 25px;
}
.profile-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: var(--card-background);
  border-radius: 10px; /* Daha keskin köşe */
  padding: 35px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px var(--shadow-color); /* Daha belirgin ama yumuşak gölge */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px); /* Hafif hover efekti */
    box-shadow: 0 15px 35px var(--shadow-color);
}

.image{
  position: relative;
  height: 160px; /* Biraz büyütelim */
  width: 160px;
  margin-bottom: 20px;
}
.image .profile-pic{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--border-color); /* Kenarlığı biraz kalınlaştıralım */
  box-shadow: 0 6px 25px rgba(0,0,0,0.8); /* Daha güçlü gölge */
  transition: border-color 0.3s ease;
}

.image .profile-pic:hover {
    border-color: var(--accent-color); /* Hover'da vurgu rengi */
}

.data{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5px; /* Üstteki boşluğu azalttık */
}
.data h2{
  font-size: 30px; /* Boyutu ayarlayalım */
  font-weight: 600; /* Daha belirgin */
  color: var(--text-primary);
  margin-bottom: 8px;
  text-align: center;
}
span{
  font-size: 17px;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 300; /* Daha ince */
}
.row, .row2, .row3 { /* Tüm row sınıfları için ortak stil */
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 18px; /* Satırlar arası boşluğu azalttım */
}

/* .row .info kaldırıldı - HTML'de kullanılmıyor */

.buttons{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px; /* Dikey ve yatay boşluğu eşitledim ve biraz artırdım */
}
.buttons .btn{
  display: inline-flex; /* İkon ve metni hizalamak için */
  align-items: center;
  justify-content: center; /* İçeriği ortala */
  width: 160px; /* Sabit genişlik */
  text-align: center;
  color: var(--text-primary);
  background-color: #333;
  text-decoration: none;
  padding: 12px 15px; /* Padding ayarlandı (genişlik sabit olduğu için sol/sağ padding daha az önemli) */
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

/* İkon stili */
.buttons .btn i {
  margin-right: 8px; /* İkon ve metin arasına boşluk */
  font-size: 1.1em; /* İkonu biraz büyütelim */
  line-height: 0; /* Dikey hizalamaya yardımcı olabilir */
}

.buttons .btn:hover{
  background-color: var(--accent-hover);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

/* .buttons2 kuralları tamamen kaldırıldı */
/* Kaldırılan .row2 ve .row3 spesifik kuralları (zaten boşlardı veya row ile birleştirildi) */