.hero-v5 {
  flex-direction: column !important;
  justify-content: center !important;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.floating-cards {
  position: relative;
  height: 400px;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 900px;
}

.card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(var(--rotate));
  width: 280px;
  height: 380px;
  background: linear-gradient(135deg, #ff3366, #cc33ff);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  transition: transform 0.4s;
}

.card:hover {
  transform: translate(-50%, -60%) rotate(var(--rotate)) scale(1.1);
}