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

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #2b1f5c 0%, #0e0b1f 70%);
  font-family: 'KenyanCoffee', cursive;
  font-size: 36px;
  color: #f0e6ff;
  text-align: center;
}

.container {
  text-align: center;
  max-width: 1000px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
}

.subtitle {
  font-size: 20px;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.3s;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.6s;
}

.card {
  width: 150px;
  height: 250px;
  border-radius: 12px;
  background: linear-gradient(145deg, #3a2d7a, #1a133d);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 12px 35px rgba(0,0,0,0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.card:nth-child(1) { transform: rotate(-10deg); }
.card:nth-child(2) { transform: rotate(0deg); }
.card:nth-child(3) { transform: rotate(10deg); }

.card:hover {
  transform: translateY(-12px) scale(1.1);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.cta {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.9s;
  text-decoration: none;
  color: #f5f5f5;
}

.cta:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

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