body {
  background: linear-gradient(160deg, #b76049 0%, #c26f56 37%, #d2886c 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 500px;
  width: 100%;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
}

.subtitle {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.image-wrapper {
  position: relative;
  display: inline-block;
  margin: 20px 0;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 12px;
}

.image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.back-link {
  margin-top: 30px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.back-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .container {
    padding: 30px 20px;
  }

  .title {
    font-size: 20px;
  }

  .subtitle {
    font-size: 13px;
  }

  .image-wrapper {
    padding: 15px;
  }
}
