* {
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

body {
  margin: 0;
  background: #f1f3f6;
}

.container {
  max-width: 360px;
  margin: 40px auto;
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.logo {
  max-width: 180px;
  margin-bottom: 20px;
}

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

.menu-btn {
  display: block;
  padding: 14px;
  background: #f7f9fc;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.25s ease;
}

.menu-btn:hover {
  background: #ed2424;
  color: #fff;
  transform: translateY(-2px);
}

/* SOSYAL MEDYA */
.social-media {
  margin-top: 30px;
}

.social-media h3 {
  margin-bottom: 12px;
  color: #444;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-icons a {
  font-size: 22px;
  color: #555;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ed2424;
  transform: scale(1.2);
}
