/* Global minimalist bold look */
a{ text-decoration:none }
h1,h2,h3,h4,h5,h6{ letter-spacing:-.2px; }
.container h3{ margin-top:1.25rem }
.btn{ border-radius:999px; padding:.6rem 1rem }
.badge-rounded{border-radius:999px;padding:.35rem .6rem}
.section{margin:36px 0}
.card .btn {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}
/* Sửa hiệu ứng ripple để không che nội dung bên trong */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(0, 0, 0, 0.15); /* màu gợn sóng */
  width: 100px;
  height: 100px;
  opacity: 0;
  pointer-events: none; /* không chặn click */
}

/* Khi active thì hiển thị hiệu ứng */
.ripple:active::after {
  transform: scale(2.5);
  opacity: 1;
  transition: transform 0.6s, opacity 1s;
}

