/* Your custom CSS here */

.ad-card-boost {
    background: linear-gradient(135deg,#ffce00,#ff8800);
    color:#111;
    text-align:center;
    border-radius:.5rem;
    box-shadow: 0 8px 20px rgba(255,136,0,.35);
    animation: ad-pop .6s ease-out;
  }
  .ad-card-boost .btn {
    font-weight:700;
  }
  @keyframes ad-pop { from { transform:scale(.92); opacity:0 } to { transform:scale(1); opacity:1 } }
