* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Verdana, sans-serif;
  background: linear-gradient(135deg, #fdeff9 0%, #ecf5ff 50%, #fff8ec 100%);
  color: #5b4b6a;
  line-height: 1.6;
}

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 90px 20px 70px;
  background: linear-gradient(120deg, #ffd6ec, #d6f0ff, #fff3c4);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero h1 {
  font-size: 2.6rem;
  color: #7a5c8e;
  text-shadow: 2px 2px 0 #fff8;
  position: relative;
  z-index: 2;
}

.subtitle {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #8a7398;
  position: relative;
  z-index: 2;
}

.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(2px);
}

.blob-1 {
  width: 160px;
  height: 160px;
  background: #ffb3d9;
  top: -40px;
  left: -40px;
}

.blob-2 {
  width: 120px;
  height: 120px;
  background: #b3e0ff;
  bottom: -30px;
  right: 10%;
}

.blob-3 {
  width: 90px;
  height: 90px;
  background: #fff3a3;
  top: 20px;
  right: -20px;
}

main {
  max-width: 720px;
  margin: -40px auto 40px;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}

.card {
  background: #fffdfb;
  border-radius: 22px;
  padding: 30px 34px;
  margin-bottom: 28px;
  box-shadow: 0 10px 30px rgba(180, 150, 200, 0.18);
  border: 2px solid #f3e3f7;
}

.card h2 {
  color: #b585c7;
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.timeline-item {
  padding: 14px 0 14px 18px;
  border-left: 3px solid #ffd1ec;
  margin-bottom: 10px;
}

.timeline-item h3 {
  color: #7a5c8e;
  font-size: 1.1rem;
}

.timeline-item .date {
  display: inline-block;
  margin: 4px 0 8px;
  padding: 3px 12px;
  background: #d6f0ff;
  border-radius: 12px;
  font-size: 0.8rem;
  color: #4b7a94;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.tag {
  background: #fff3c4;
  color: #8a7340;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 0.85rem;
}

footer {
  text-align: center;
  padding: 30px;
  color: #a693b3;
  font-size: 0.9rem;
}
