* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(to bottom, #020707, #1a4030);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 400px;
  background: #ffffff10;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
  border: 1px solid #ffffff30;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  object-fit: cover;
  margin-bottom: 10px;
}

h1 {
  color: white;
  font-size: 24px;
}

.tagline {
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 25px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.link {
  background-color: white;
  color: #0f172a;
  font-weight: bold;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.2s ease;
}

.link img {
  width: 40px;
  height: 40px;
}

.link:hover {
  transform: scale(1.02);
  background-color: #f1f5f9;
}

footer {
  margin-top: 30px;
  font-size: 12px;
  color: #94a3b8;
}


.card {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blur-button {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 30px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.btn img {
  width: 24px;
  height: 24px;
}
