* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.card {
  background: #ffffff;
  max-width: 520px;
  width: 100%;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* 🔥 Блок под картинку */
.image-wrapper {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  background-image: url(nk.jpg);
  background-size: 100% 100%;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  color: #ff4d6d;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 16px;
  margin-bottom: 20px;
}

.info {
  text-align: left;
  margin-bottom: 20px;
}

.info p {
  margin-bottom: 8px;
  font-size: 15px;
}

.message {
  font-size: 15px;
  margin-bottom: 25px;
  line-height: 1.4;
}

.footer {
  font-size: 15px;
}

.name {
  margin-top: 5px;
  font-weight: bold;
  color: #ff4d6d;
}