/* styles.css */
.font-poppins {
    font-family: 'Poppins', sans-serif;
  }
  
  .font-900 {
    font-weight: 900;
  }
  
  .font-800 {
    font-weight: 800;
  }
  
  .font-700 {
    font-weight: 700;
  }
  
  .font-600 {
    font-weight: 600;
  }
  

  @keyframes fade-in-up {
    0% {
      opacity: 0;
      transform: translate(-50%, 20px);
    }
    100% {
      opacity: 1;
      transform: translate(-50%, 0);
    }
  }
  .animate-fade-in-up {
    animation: fade-in-up 0.3s ease-out;
  }

  /* Points badge burst */
  
  @keyframes pointBurst {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.8);
      opacity: 0.8;
    }
    100% {
      transform: scale(1);
      opacity: 0;
    }
  }
  
  .point-burst {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: oklch(66.6% 0.179 58.318);
    color: white;
    font-weight: bold;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 0.75rem;
    animation: pointBurst 1s ease-out;
    z-index: 50;
    pointer-events: none;
  }
  
  /* Points badge pulse */

  @keyframes pulseBadge {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.3);
    }
  }
  
  .pulse {
    animation: pulseBadge 1s ease-in-out;
  }

   /* Vote Count badge Animation */
  
  @keyframes popIcon {
    0% { transform: scale(1); }
    30% { transform: scale(1.5); }
    100% { transform: scale(1); }
  }
  
  @keyframes slideUpNumber {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-10px); opacity: 0; }
    51% { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
  }
  
  .pop-icon {
    animation: popIcon 0.4s ease-out;
  }
  
  .slide-number {
    animation: slideUpNumber 0.6s ease-in-out;
  }