.buy-me-cha-container {
  margin: 2rem auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 76px;
}

.buy-me-cha-btn {
  position: relative;
  width: 340px;
  height: 76px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  background: #111116;
  padding: 0;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.buy-me-cha-btn .blob {
  position: absolute;
  width: 130px;
  height: 90px;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.95;
  top: 50%;
  margin-top: -45px;
  pointer-events: none;
  will-change: left, background;
}

.buy-me-cha-btn .glass-overlay {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(8, 8, 14, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.buy-me-cha-btn .btn-label {
  position: relative;
  z-index: 10;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.025em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
  pointer-events: none;
}


@media (max-width: 768px) {
  .buy-me-cha-btn {
    width: 300px;
    height: 66px;
  }
  
  .buy-me-cha-btn .btn-label {
    font-size: 15px;
  }
  
  .buy-me-cha-btn .blob {
    width: 110px;
    height: 75px;
    margin-top: -37.5px;
  }
}

@media (max-width: 480px) {
  .buy-me-cha-btn {
    width: 260px;
    height: 56px;
  }
  
  .buy-me-cha-btn .btn-label {
    font-size: 14px;
  }
  
  .buy-me-cha-btn .blob {
    width: 90px;
    height: 60px;
    margin-top: -30px;
  }
}
