  .finger-bounce {
    display: inline-block;
    animation: bounce 1.5s infinite;
    color: #0d6efd;
    font-size: 1.5rem;
    margin-right: 0.4rem;
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
  }

  .finger-bounce-right {
    display: inline-block;
    animation: bounce-right 1.2s infinite;
    color: #0d6efd;
    margin-right: 0.5rem;
  }

  @keyframes bounce-right {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
  }

  .cta-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #1c1c1c;
    background: #fff9e6;
    padding: 0.75rem 1rem;
    border-left: 4px solid #0d6efd;
    border-radius: 0.5rem;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
  }

  .cta-highlight {
    font-weight: bold;
    color: #d63384;
  }
