body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #74ebd5, #acb6e5);
  margin: 0;
  padding: 20px;
}

/* Karta */
.wrap {
  max-width: 850px;
  margin: 0 auto;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  animation: fadeIn 1s ease-in-out;
}

/* Nadpis */
h1 {
  text-align: center;
  color: #ff6f61;
  letter-spacing: 2px;
  animation: slideDown 0.8s ease;
}

/* Řádek s obrázkem */
.row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 20px;
}

/* Obrázek */
img {
  width: 260px;
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

img:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Tabulka */
table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 10px;
}

th {
  text-align: left;
  background: linear-gradient(45deg, #ff6f61, #ff9a8b);
  color: white;
  padding: 10px;
}

td {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

tr {
  transition: background 0.3s;
}

tr:hover {
  background: #f9f9f9;
}

/* Sekce */
section {
  margin-top: 25px;
  animation: fadeIn 1.2s ease;
}

h2 {
  color: #444;
}

/* Text */
p {
  line-height: 1.7;
  color: #555;
}

/* Animace */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}