* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #7DE2FC, #B9B6FF);
  color: #122;
  padding: 20px;
}

.container {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.logo-share {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 20px;
}

h1 {
  font-size: 24px;
  margin-bottom: 30px;
  color: white;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-radius: 50px;
  padding: 15px 20px;
  text-decoration: none;
  color: #111;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.link-card:hover {
  transform: scale(1.02);
}

.link-card img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  border-radius: 50%;
}

.link-card span {
  flex-grow: 1;
  text-align: left;
  font-size: 16px;
}

.share-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}
