.cta {
  min-height: 100vh;
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(50, 10, 84, 1) 30%,
    rgba(11, 11, 88, 0.1) 100%
  );
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  margin-bottom: 60px;
}

.animate-fade-in {
  animation: fadeInUp 1s ease-out forwards !important;
}

.animate-slide-up {
  animation: cardReveal 0.8s ease-out forwards !important;
}


.cta h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #00d4ff, #ff00ff, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 2s ease-in-out infinite alternate;
  text-align: center;

}

.cta h3 {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 2rem;
}

.zcontainer {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.zheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  /* Remove the animation line and just use transition */
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.zheader h1 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
}

.zexplore-more {
  color: #ff6b9d;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.zexplore-more:hover {
  color: #ff8fb3;
}

.zcards-grid {
  display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
  
}

.zreport-card {
  background: #1a1f2e;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px) rotateX(15deg);
  height: 350px;
  /* Keep transition but allow animation to override */

}

.zreport-card[style*="animation"] {
  transition: none !important;
}

.zreport-card.animate-in {
  animation: cardReveal 0.8s ease-out forwards;
}

/* Remove the nth-child animation delays since we're handling timing in JS */


.zreport-card:hover {
  transform: translateY(-8px) scale(1.03) !important;
  box-shadow: 0 1px 50px rgba(232, 226, 228, 0.2);
  border: #00d4ff solid 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.zcard-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.zcard-background.yellow {
  background: linear-gradient(90deg, #6282ff 0%, #4929ea 100%);
}

.zcard-background.blue {
  background: linear-gradient(90deg, #8763ff 0%, #e811fe 100%);
}

.zcard-background.purple {
  background: linear-gradient(135deg, #ab47bc 0%, #8e24aa 100%);
}

.zchart-overlay {
  position: absolute;
  top: 0.1px;
right: 0.1rem;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.zlogo-image {
  width: 30rem;

  object-fit: contain;

}

.zcard-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.zbadge {
  background: linear-gradient(115deg, #4a4a4a 0%, #000000 100%);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 1rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
    border: #ffffff solid 0.5px;
    box-shadow: #ffffff 0px 0px 13px -5px  ;
}

.zbadge.exclusive {
  background: #6801e7 0.5;
  color: #ffffff;
}

.zmain-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ztoken-list {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.zcard-footer {
  margin-top: auto;
}

.zcard-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.zcard-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.zcard-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.zauthor-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
}

.zmeta-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.zfloating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.zfloating-circle {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.zpulse-effect {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

/* Floating circle custom positions and delays */
.zfc-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.zfc-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}
.zpe-1 {
  top: 10%;
  right: 20%;
  animation-delay: 1s;
}
.zpe-2 {
  bottom: 20%;
  left: 15%;
  animation-delay: 3s;
}

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

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-link:hover {
  transform: translateY(-5px);
  text-decoration: none;
  color: inherit;
}

.card-link:hover .zreport-card {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Ensure the cards maintain their original styling */
.card-link .zreport-card {
  transition: box-shadow 0.3s ease;
}


@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(50px) rotateX(15deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
}

@media (max-width: 768px) {
  .zcards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .zmain-title {
    font-size: 2rem;
  }

  .zreport-card {
    height: 350px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 1rem 0.5rem;
  }

  .zcard-content {
    font-size: 1.8rem;
  }
}

.zshimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

