:root {
  --bg: #fff4f8;
  --text: #4a2e3a;
  --card-bg: #ffe9f1;
  --card-border: #f2bfd1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(180deg, #fff6fa 0%, #ffdce9 100%);
  color: var(--text);
}

.page {
  width: 100%;
  margin: 0 auto;
  padding: 36px 20px 44px;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.photo-frame {
  width: 170px;
  height: 170px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #fff8fb;
  box-shadow: 0 8px 22px rgba(166, 78, 116, 0.22);
  background: #f8cddd;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(430px, 100%);
  margin: 0 auto;
}

.link-card {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  font-size: 1.03rem;
  color: var(--text);
  background-color: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 4px 10px rgba(166, 78, 116, 0.14);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.link-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(166, 78, 116, 0.2);
  background-color: #ffdfea;
}

.link-card:active {
  transform: translateY(0);
}
