body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  text-shadow: 0 0 10px rgba(0,0,0,0.3);
  animation: fadeIn 2s ease-in-out;
}

h1 {
  font-size: 5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: pulse 3s infinite;
}

img.poze-image {
  max-width: 80%;
  max-height: 60vh;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

img.poze-image:hover {
  transform: scale(1.02);
}

button.btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

button.btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

p.caption {
  margin-top: 15px;
  font-size: 1.2rem;
  opacity: 0.9;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
