* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #111827, #1e3a8a);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.container {
  width: 100%;
  max-width: 430px;
  padding: 20px;
}

.profile-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.profile-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  margin-bottom: 18px;
}

h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

.subtitle {
  color: #d1d5db;
  font-size: 15px;
  margin-bottom: 18px;
}

.about {
  font-size: 15px;
  line-height: 1.5;
  color: #f3f4f6;
  margin-bottom: 24px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.25s;
}

.btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.snapchat {
  background: #fffc00;
  color: #111;
}

.mail {
  background: #2563eb;
}

.phone {
  background: #16a34a;
}

.copy-message {
  margin-top: 15px;
  font-size: 14px;
  color: #bbf7d0;
}

/* Telefon ekranları için */
@media (max-width: 480px) {
  .profile-card {
    padding: 25px 18px;
  }

  h1 {
    font-size: 24px;
  }

  .about {
    font-size: 14px;
  }
}
.facebook {
  background: #1877f2;
}