* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #2d2d2d;
  font-family: 'Montserrat', sans-serif;
  color: #bbb;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 800px;
  width: 100%;
}

.title {
  font-size: 64px;
  color: white;
  margin-bottom: 30px;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.link {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link:hover {
  color: #e12844;
}

.site-link {
  margin-bottom: 30px;
}

.main-link {
  font-size: 28px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-link:hover {
  color: #e12844;
}

.address p {
  margin-bottom: 30px;
  font-size: 18px;
}

.address a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.address a:hover {
  color: #e12844;
}

.social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social a {
  background-color: #444;
  color: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none; /* 👈 çizgiyi kaldırır */
}


.social a:hover {
  background-color: #e12844;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(225, 40, 68, 0.4);
}


/* Mobil uyumluluk */
@media (max-width: 600px) {
  .title {
    font-size: 40px;
  }

  .main-link {
    font-size: 22px;
  }

  .address p {
    font-size: 16px;
  }

  .info a {
    font-size: 14px;
  }
}
